Esempio n. 1
0
 public void IncrementRaidStats(int pokemonId)
 {
     if (RaidStats.ContainsKey(pokemonId))
     {
         RaidStats[pokemonId]++;
     }
     else
     {
         RaidStats.Add(pokemonId, 1);
     }
 }
Esempio n. 2
0
 public void Reset()
 {
     PokemonStats.Clear();
     RaidStats.Clear();
     PokemonSent               = 0;
     RaidsSent                 = 0;
     QuestsSent                = 0;
     SubscriptionPokemonSent   = 0;
     SubscriptionRaidsSent     = 0;
     SubscriptionQuestsSent    = 0;
     SubscriptionInvasionsSent = 0;
 }