using System.Collections;
using System.Collections.Generic;
using UnityEngine;

namespace anogame_strategy
{
	public class GameStateTurnChanging : GameState
	{
		public GameStateTurnChanging(StrategyBase _manager) : base(_manager) { }
	}
}

