Exemplo n.º 1
0
 public bool isCalculRecord(int score)
 {
     if (profile.calculBestScore < score)
     {
         ProfileManagement.UpdateProfile(profile.name, score, profile.tableBestScore);
         newRecordText.text = "Bravo " + profile.name + " ! Nouveau record !";
         return(true);
     }
     return(false);
 }