public void UpdateAndDisplayBestScore(int bestScoreThisRound)
 {
     topScores = TopScoresPrefsManager.GetTopPlayerScores(bestScoreThisRound);
     UpdateScoresDisplayedWithList(topScores);
 }
 public void DisplayBestScore()
 {
     topScores = TopScoresPrefsManager.GetTopPlayerScores();
     UpdateScoresDisplayedWithList(topScores);
 }
 public void DeletePlayerPrefs()
 {
     TopScoresPrefsManager.ClearTopScorePlayerPrefs();
 }