Example #1
0
        public void PlayRound()
        {
            this.currentRound = new Round();

            foreach (Player player in this.shuffledPlayerList)
                TakeTurn(player);

            this.rounds.Add(this.currentRound);
        }