예제 #1
0
 public void Start()
 {
     _phrase    = Phrase.Placing;
     _turn      = GameTurn.FirstPlayerTurn;
     _magicLeft = new Dictionary <MyPlayer, int>()
     {
         { MyPlayer.Player1, 2 },
         { MyPlayer.Player2, 2 }
     };
 }
예제 #2
0
 public void NextTurn()
 {
     _turn = _turn.NextPlayerTurn;
 }