Exemple #1
0
 public void newRound() // initiates a new round
 {
     if (rounds.Count < 13)
     {
         currentRound = new round(); rounds.Add(currentRound);
     }
     else
     {
         gameOver = true;
     }
 }
Exemple #2
0
 public game() // initiates a round when starting up...
 {
     this.currentRound = new round();
     rounds.Add(currentRound);
 }