Exemplo n.º 1
0
 private void PlayingGames()
 {
     while (!IsGameOver())
     {
         var HangmanGameInterface = new HangmanGameInterface(this);
         HangmanGameInterface.DisplayInterface();
         UserSelectsOptions();
     }
 }
        private void DisplayGameInterfaceWithoutOptions()
        {
            var GameInterface = new HangmanGameInterface(Game);

            GameInterface.DisplayInterfaceWithoutOptions();
        }