예제 #1
0
        public void PlayGameHuman()
        {
            ExplainRules();
            GetPlayers();

            while (playerOne.score < 2 && playerTwo.score > 2)
            {
                playerOne.GetHand();
                playerTwo.GetHand();
                DetermineScore(playerOne, playerTwo);
            }
            Console.WriteLine("Game over, please play again!");
        }