Example #1
0
 public void IncrementCountFor(int gameModeId)
 {
     PlayedMap_.Increment(gameModeId);
     SaveDataPoints();
 }
Example #2
0
 public int GetCountFor(int gameModeId)
 {
     return(PlayedMap_.GetValue(gameModeId));
 }
Example #3
0
 public void Reset()
 {
     PlayedMap_.Clear();
     SaveDataPoints();
 }