private void DisplayStartingLevel() { string heading = String.Format("Level: {0}", startingLevel); string subheading = "Set Level with A and D\nPress Enter to Start"; modeText.Print(heading, subheading); }
public void CheckForHighScore(int score) { leaderboard.GetInitialsFor(score); if (leaderboard.WaitingForSubmission()) { modeText.Print("High Score!", "Press Enter to Submit"); } }
public void Pause(GameRunner gameRunner) { modeText.Print("Game Paused", "Press Enter to Resume"); audio.PauseMusic(); pausedRunner = gameRunner; }
public void Show() { leaderboard.Show(); modeText.Print("", "Press Enter to Start"); }
public void End(int score) { this.score = score; modeText.Print("Game Over", "Press Enter to Continue"); }