Esempio n. 1
0
 public void SetScore(DEFINE_GAMES.GAME_ID id, int val)
 {
     this.SetScore(((int)id).ToString(), val);
 }
Esempio n. 2
0
 public int GetScore(DEFINE_GAMES.GAME_ID id)
 {
     return(this.GetScore(((int)id).ToString()));
 }
Esempio n. 3
0
    public static void SetBestRecordLabel(UILabel lbl, DEFINE_GAMES.GAME_ID gameId)
    {
        int record = ScoreSaveData.instance.GetScore(gameId);

        SetBestRecordLabel(lbl, record);
    }