コード例 #1
0
 private void PlayingGames()
 {
     while (!IsGameOver())
     {
         var HangmanGameInterface = new HangmanGameInterface(this);
         HangmanGameInterface.DisplayInterface();
         UserSelectsOptions();
     }
 }
コード例 #2
0
        private void DisplayGameInterfaceWithoutOptions()
        {
            var GameInterface = new HangmanGameInterface(Game);

            GameInterface.DisplayInterfaceWithoutOptions();
        }