コード例 #1
0
 public static void SetupGame()
 {
     Console.Clear();
     ConsolePresenter.PrintBanner();
     player.PlayerName    = ConsolePresenter.GetPlayerName();
     highscore.PlayerName = player.PlayerName;
     player.ResetPlayerScore();
 }
コード例 #2
0
 public static void GameStartUp()
 {
     Console.Clear();
     ConsolePresenter.PrintBanner();
     ConsolePresenter.PrintWelcome();
     ConsolePresenter.PrintRules();
     ConsolePresenter.PrintAlternative(highscore);
 }