Esempio n. 1
0
 public void EndRound()
 {
     if (round < 2)
     {
         state = "BETWEEN_ROUNDS";
         hudScript.RoundSummary();
         round++;
     }
     else
     {
         state = "GAME_OVER";
         hudScript.GameSummary(scores);
     }
 }