Exemplo n.º 1
0
 public static long CheckAndRefreshBestScore() // refresh best score only in case it smaller current total score
 {
     if (currentScore > bestScore)
     {
         LocalDataStorage.SetBestScore(currentScore);
         return(bestScore = currentScore);
     }
     return(bestScore);
 }