Beispiel #1
0
 public void BeginGame()
 {
     turnSystem = new TurnSystem(players, this);
     GenerateTargets();
     playerPoints = new int[players + 1];
     ServerSend.BeginGame();
     StartCoroutine(GameStartDelay());
 }