private void PlayingGames() { while (!IsGameOver()) { var HangmanGameInterface = new HangmanGameInterface(this); HangmanGameInterface.DisplayInterface(); UserSelectsOptions(); } }
private void DisplayGameInterfaceWithoutOptions() { var GameInterface = new HangmanGameInterface(Game); GameInterface.DisplayInterfaceWithoutOptions(); }