private string GetStarsToUnlockTextForButton()
 {
     if (levelNumber - progressService.GetLastUnlockedLevel() == 1)
     {
         int count = progressService.GetStarsNeededForLevel(levelNumber) - progressService.StarsCountTotal;
         return(count.ToString());
     }
     return("");
 }