Ejemplo n.º 1
0
        public void NextRound()
        {
            var nextRoundNumber = CurrentRound.RoundNumber + 1;

            if (nextRoundNumber > MaxRound)
            {
                End = true;
            }
            else
            {
                CurrentRound.StartRound(nextRoundNumber);
            }
        }