Beispiel #1
0
    private void CheckHighScore()
    {
        if (CurrentScore > HighScore)
        {
            HighScore = CurrentScore;
            scoreSaveLoad.SaveNewHighScore(HighScore);

            UpdateHighScore?.Invoke(HighScore);
        }
    }