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