Exemplo n.º 1
0
        public PokemonHandler(PogoInstance pogoInstance)
        {
            this.pogoInstance = pogoInstance;

            spawnedEncounters = new HashSet <string>();
            nearbyEncounters  = new HashSet <string>();
        }
Exemplo n.º 2
0
        public GymHandler(PogoInstance pogoInstance)
        {
            this.pogoInstance = pogoInstance;
            this.log          = LogManager.GetLogger($"GymHandler ({pogoInstance.Configuration.Name})");

            this.gymStatus = pogoInstance.Database.GetLatestGymDetails();
        }
Exemplo n.º 3
0
        public PokemonHandler(PogoInstance pogoInstance)
        {
            this.pogoInstance = pogoInstance;
            this.log          = LogManager.GetLogger($"PokemonHandler ({pogoInstance.Configuration.Name})");

            spawnedEncounters = this.pogoInstance.Database.GetLatestSpawnData();
            nearbyEncounters  = this.pogoInstance.Database.GetLatestNearbyData();
        }
Exemplo n.º 4
0
 public GymHandler(PogoInstance pogoInstance)
 {
     this.pogoInstance = pogoInstance;
     this.cachedGyms   = new Dictionary <string, CachedGymData>();
 }