コード例 #1
0
        /// <summary>
        ///     Records the current score as the new high score if it is greater than the previous score.
        /// </summary>
        public void SaveHighScore()
        {
            Score score        = GetCurrentScore();
            int   highestScore = GetCurrentHighScore();

            if (score.TotalScore > highestScore)
            {
                governmentService.SetHighScore(score.TotalScore);
            }
        }