コード例 #1
0
        private void PostIteration()
        {
            consoleStream.Output(dealerService.GetRateList(players));
            consoleStream.Output("Try again?\n1 - Yes\n2 - No\n");

            int response = consoleStream.Input();

            if (response == 1)
            {
                PrepareForNewGame();
                StartGame();
            }
            if (response == 2)
            {
                EndGame();
            }
        }