Esempio n. 1
0
 //call from button
 public void EndRound()
 {
     for (int i = 0; i < gameSystem.PlayerCount(); i++)
     {
         //should rotate through all players
         gameSystem.EndTurn(gameSystem.Players()[0]);
     }
     Debug.Log("FORCED ROUND ENDED");
 }