├── .gitignore ├── Assembly-CSharp.csproj.DotSettings ├── Assets ├── Libs.meta ├── Libs │ ├── Google.Protobuf.dll │ ├── Google.Protobuf.dll.meta │ ├── Newtonsoft.Json.dll │ ├── Newtonsoft.Json.dll.meta │ ├── RestSharp.Unity.dll │ └── RestSharp.Unity.dll.meta ├── Main.unity ├── Main.unity.meta ├── PGODesktop.meta ├── PGODesktop │ ├── GameManager.cs │ ├── GameManager.cs.meta │ ├── Network.meta │ ├── Network │ │ ├── DesktopNetworkInterface.cs │ │ ├── DesktopNetworkInterface.cs.meta │ │ ├── FakeNetworkInterface.cs │ │ ├── FakeNetworkInterface.cs.meta │ │ ├── INetworkInterface.cs │ │ ├── INetworkInterface.cs.meta │ │ ├── PtcLoginResult.cs │ │ └── PtcLoginResult.cs.meta │ ├── UI.meta │ ├── UI │ │ ├── AutoDestroy.cs │ │ ├── AutoDestroy.cs.meta │ │ ├── Map.cs │ │ └── Map.cs.meta │ ├── Utils.cs │ └── Utils.cs.meta ├── POGOProtos.meta ├── POGOProtos │ ├── Data.meta │ ├── Data │ │ ├── AssetDigestEntry.cs │ │ ├── AssetDigestEntry.cs.meta │ │ ├── Battle.meta │ │ ├── Battle │ │ │ ├── BattleAction.cs │ │ │ ├── BattleAction.cs.meta │ │ │ ├── BattleActionType.cs │ │ │ ├── BattleActionType.cs.meta │ │ │ ├── BattleLog.cs │ │ │ ├── BattleLog.cs.meta │ │ │ ├── BattleParticipant.cs │ │ │ ├── BattleParticipant.cs.meta │ │ │ ├── BattlePokemonInfo.cs │ │ │ ├── BattlePokemonInfo.cs.meta │ │ │ ├── BattleResults.cs │ │ │ ├── BattleResults.cs.meta │ │ │ ├── BattleState.cs │ │ │ ├── BattleState.cs.meta │ │ │ ├── BattleType.cs │ │ │ └── BattleType.cs.meta │ │ ├── Capture.meta │ │ ├── Capture │ │ │ ├── CaptureAward.cs │ │ │ ├── CaptureAward.cs.meta │ │ │ ├── CaptureProbability.cs │ │ │ └── CaptureProbability.cs.meta │ │ ├── DownloadUrlEntry.cs │ │ ├── DownloadUrlEntry.cs.meta │ │ ├── Gym.meta │ │ ├── Gym │ │ │ ├── GymMembership.cs │ │ │ ├── GymMembership.cs.meta │ │ │ ├── GymState.cs │ │ │ └── GymState.cs.meta │ │ ├── Logs.meta │ │ ├── Logs │ │ │ ├── ActionLogEntry.cs │ │ │ ├── ActionLogEntry.cs.meta │ │ │ ├── CatchPokemonLogEntry.cs │ │ │ ├── CatchPokemonLogEntry.cs.meta │ │ │ ├── FortSearchLogEntry.cs │ │ │ └── FortSearchLogEntry.cs.meta │ │ ├── Player.meta │ │ ├── Player │ │ │ ├── ContactSettings.cs │ │ │ ├── ContactSettings.cs.meta │ │ │ ├── Currency.cs │ │ │ ├── Currency.cs.meta │ │ │ ├── DailyBonus.cs │ │ │ ├── DailyBonus.cs.meta │ │ │ ├── EquippedBadge.cs │ │ │ ├── EquippedBadge.cs.meta │ │ │ ├── PlayerAvatar.cs │ │ │ ├── PlayerAvatar.cs.meta │ │ │ ├── PlayerCamera.cs │ │ │ ├── PlayerCamera.cs.meta │ │ │ ├── PlayerCurrency.cs │ │ │ ├── PlayerCurrency.cs.meta │ │ │ ├── PlayerPublicProfile.cs │ │ │ ├── PlayerPublicProfile.cs.meta │ │ │ ├── PlayerStats.cs │ │ │ └── PlayerStats.cs.meta │ │ ├── PlayerBadge.cs │ │ ├── PlayerBadge.cs.meta │ │ ├── PlayerData.cs │ │ ├── PlayerData.cs.meta │ │ ├── PokedexEntry.cs │ │ ├── PokedexEntry.cs.meta │ │ ├── PokemonData.cs │ │ └── PokemonData.cs.meta │ ├── Enums.meta │ ├── Enums │ │ ├── ActivityType.cs │ │ ├── ActivityType.cs.meta │ │ ├── BadgeType.cs │ │ ├── BadgeType.cs.meta │ │ ├── CameraInterpolation.cs │ │ ├── CameraInterpolation.cs.meta │ │ ├── CameraTarget.cs │ │ ├── CameraTarget.cs.meta │ │ ├── Gender.cs │ │ ├── Gender.cs.meta │ │ ├── IapItemCategory.cs │ │ ├── IapItemCategory.cs.meta │ │ ├── ItemCategory.cs │ │ ├── ItemCategory.cs.meta │ │ ├── ItemEffect.cs │ │ ├── ItemEffect.cs.meta │ │ ├── Platform.cs │ │ ├── Platform.cs.meta │ │ ├── PokemonFamilyId.cs │ │ ├── PokemonFamilyId.cs.meta │ │ ├── PokemonId.cs │ │ ├── PokemonId.cs.meta │ │ ├── PokemonMove.cs │ │ ├── PokemonMove.cs.meta │ │ ├── PokemonMovementType.cs │ │ ├── PokemonMovementType.cs.meta │ │ ├── PokemonRarity.cs │ │ ├── PokemonRarity.cs.meta │ │ ├── PokemonType.cs │ │ ├── PokemonType.cs.meta │ │ ├── TeamColor.cs │ │ ├── TeamColor.cs.meta │ │ ├── TutorialState.cs │ │ └── TutorialState.cs.meta │ ├── Inventory.meta │ ├── Inventory │ │ ├── AppliedItem.cs │ │ ├── AppliedItem.cs.meta │ │ ├── AppliedItems.cs │ │ ├── AppliedItems.cs.meta │ │ ├── Candy.cs │ │ ├── Candy.cs.meta │ │ ├── EggIncubator.cs │ │ ├── EggIncubator.cs.meta │ │ ├── EggIncubatorType.cs │ │ ├── EggIncubatorType.cs.meta │ │ ├── EggIncubators.cs │ │ ├── EggIncubators.cs.meta │ │ ├── InventoryDelta.cs │ │ ├── InventoryDelta.cs.meta │ │ ├── InventoryItem.cs │ │ ├── InventoryItem.cs.meta │ │ ├── InventoryItemData.cs │ │ ├── InventoryItemData.cs.meta │ │ ├── InventoryUpgrade.cs │ │ ├── InventoryUpgrade.cs.meta │ │ ├── InventoryUpgradeType.cs │ │ ├── InventoryUpgradeType.cs.meta │ │ ├── InventoryUpgrades.cs │ │ ├── InventoryUpgrades.cs.meta │ │ ├── Item.meta │ │ └── Item │ │ │ ├── ItemAward.cs │ │ │ ├── ItemAward.cs.meta │ │ │ ├── ItemData.cs │ │ │ ├── ItemData.cs.meta │ │ │ ├── ItemId.cs │ │ │ ├── ItemId.cs.meta │ │ │ ├── ItemType.cs │ │ │ └── ItemType.cs.meta │ ├── Map.meta │ ├── Map │ │ ├── Fort.meta │ │ ├── Fort │ │ │ ├── FortData.cs │ │ │ ├── FortData.cs.meta │ │ │ ├── FortLureInfo.cs │ │ │ ├── FortLureInfo.cs.meta │ │ │ ├── FortModifier.cs │ │ │ ├── FortModifier.cs.meta │ │ │ ├── FortRenderingType.cs │ │ │ ├── FortRenderingType.cs.meta │ │ │ ├── FortSponsor.cs │ │ │ ├── FortSponsor.cs.meta │ │ │ ├── FortSummary.cs │ │ │ ├── FortSummary.cs.meta │ │ │ ├── FortType.cs │ │ │ └── FortType.cs.meta │ │ ├── MapCell.cs │ │ ├── MapCell.cs.meta │ │ ├── MapObjectsStatus.cs │ │ ├── MapObjectsStatus.cs.meta │ │ ├── Pokemon.meta │ │ ├── Pokemon │ │ │ ├── MapPokemon.cs │ │ │ ├── MapPokemon.cs.meta │ │ │ ├── NearbyPokemon.cs │ │ │ ├── NearbyPokemon.cs.meta │ │ │ ├── WildPokemon.cs │ │ │ └── WildPokemon.cs.meta │ │ ├── SpawnPoint.cs │ │ └── SpawnPoint.cs.meta │ ├── Networking.meta │ ├── Networking │ │ ├── Envelopes.meta │ │ ├── Envelopes │ │ │ ├── AuthTicket.cs │ │ │ ├── AuthTicket.cs.meta │ │ │ ├── RequestEnvelope.cs │ │ │ ├── RequestEnvelope.cs.meta │ │ │ ├── ResponseEnvelope.cs │ │ │ ├── ResponseEnvelope.cs.meta │ │ │ ├── Unknown6.cs │ │ │ ├── Unknown6.cs.meta │ │ │ ├── Unknown6Response.cs │ │ │ └── Unknown6Response.cs.meta │ │ ├── Requests.meta │ │ ├── Requests │ │ │ ├── Messages.meta │ │ │ ├── Messages │ │ │ │ ├── AddFortModifierMessage.cs │ │ │ │ ├── AddFortModifierMessage.cs.meta │ │ │ │ ├── AttackGymMessage.cs │ │ │ │ ├── AttackGymMessage.cs.meta │ │ │ │ ├── CatchPokemonMessage.cs │ │ │ │ ├── CatchPokemonMessage.cs.meta │ │ │ │ ├── CheckAwardedBadgesMessage.cs │ │ │ │ ├── CheckAwardedBadgesMessage.cs.meta │ │ │ │ ├── CheckCodenameAvailableMessage.cs │ │ │ │ ├── CheckCodenameAvailableMessage.cs.meta │ │ │ │ ├── ClaimCodenameMessage.cs │ │ │ │ ├── ClaimCodenameMessage.cs.meta │ │ │ │ ├── CollectDailyBonusMessage.cs │ │ │ │ ├── CollectDailyBonusMessage.cs.meta │ │ │ │ ├── CollectDailyDefenderBonusMessage.cs │ │ │ │ ├── CollectDailyDefenderBonusMessage.cs.meta │ │ │ │ ├── DiskEncounterMessage.cs │ │ │ │ ├── DiskEncounterMessage.cs.meta │ │ │ │ ├── DownloadItemTemplatesMessage.cs │ │ │ │ ├── DownloadItemTemplatesMessage.cs.meta │ │ │ │ ├── DownloadRemoteConfigVersionMessage.cs │ │ │ │ ├── DownloadRemoteConfigVersionMessage.cs.meta │ │ │ │ ├── DownloadSettingsMessage.cs │ │ │ │ ├── DownloadSettingsMessage.cs.meta │ │ │ │ ├── EchoMessage.cs │ │ │ │ ├── EchoMessage.cs.meta │ │ │ │ ├── EncounterMessage.cs │ │ │ │ ├── EncounterMessage.cs.meta │ │ │ │ ├── EncounterTutorialCompleteMessage.cs │ │ │ │ ├── EncounterTutorialCompleteMessage.cs.meta │ │ │ │ ├── EquipBadgeMessage.cs │ │ │ │ ├── EquipBadgeMessage.cs.meta │ │ │ │ ├── EvolvePokemonMessage.cs │ │ │ │ ├── EvolvePokemonMessage.cs.meta │ │ │ │ ├── FortDeployPokemonMessage.cs │ │ │ │ ├── FortDeployPokemonMessage.cs.meta │ │ │ │ ├── FortDetailsMessage.cs │ │ │ │ ├── FortDetailsMessage.cs.meta │ │ │ │ ├── FortRecallPokemonMessage.cs │ │ │ │ ├── FortRecallPokemonMessage.cs.meta │ │ │ │ ├── FortSearchMessage.cs │ │ │ │ ├── FortSearchMessage.cs.meta │ │ │ │ ├── GetAssetDigestMessage.cs │ │ │ │ ├── GetAssetDigestMessage.cs.meta │ │ │ │ ├── GetDownloadUrlsMessage.cs │ │ │ │ ├── GetDownloadUrlsMessage.cs.meta │ │ │ │ ├── GetGymDetailsMessage.cs │ │ │ │ ├── GetGymDetailsMessage.cs.meta │ │ │ │ ├── GetHatchedEggsMessage.cs │ │ │ │ ├── GetHatchedEggsMessage.cs.meta │ │ │ │ ├── GetIncensePokemonMessage.cs │ │ │ │ ├── GetIncensePokemonMessage.cs.meta │ │ │ │ ├── GetInventoryMessage.cs │ │ │ │ ├── GetInventoryMessage.cs.meta │ │ │ │ ├── GetMapObjectsMessage.cs │ │ │ │ ├── GetMapObjectsMessage.cs.meta │ │ │ │ ├── GetPlayerMessage.cs │ │ │ │ ├── GetPlayerMessage.cs.meta │ │ │ │ ├── GetPlayerProfileMessage.cs │ │ │ │ ├── GetPlayerProfileMessage.cs.meta │ │ │ │ ├── GetSuggestedCodenamesMessage.cs │ │ │ │ ├── GetSuggestedCodenamesMessage.cs.meta │ │ │ │ ├── IncenseEncounterMessage.cs │ │ │ │ ├── IncenseEncounterMessage.cs.meta │ │ │ │ ├── LevelUpRewardsMessage.cs │ │ │ │ ├── LevelUpRewardsMessage.cs.meta │ │ │ │ ├── MarkTutorialCompleteMessage.cs │ │ │ │ ├── MarkTutorialCompleteMessage.cs.meta │ │ │ │ ├── NicknamePokemonMessage.cs │ │ │ │ ├── NicknamePokemonMessage.cs.meta │ │ │ │ ├── PlayerUpdateMessage.cs │ │ │ │ ├── PlayerUpdateMessage.cs.meta │ │ │ │ ├── RecycleInventoryItemMessage.cs │ │ │ │ ├── RecycleInventoryItemMessage.cs.meta │ │ │ │ ├── ReleasePokemonMessage.cs │ │ │ │ ├── ReleasePokemonMessage.cs.meta │ │ │ │ ├── SetAvatarMessage.cs │ │ │ │ ├── SetAvatarMessage.cs.meta │ │ │ │ ├── SetContactSettingsMessage.cs │ │ │ │ ├── SetContactSettingsMessage.cs.meta │ │ │ │ ├── SetFavoritePokemonMessage.cs │ │ │ │ ├── SetFavoritePokemonMessage.cs.meta │ │ │ │ ├── SetPlayerTeamMessage.cs │ │ │ │ ├── SetPlayerTeamMessage.cs.meta │ │ │ │ ├── SfidaActionLogMessage.cs │ │ │ │ ├── SfidaActionLogMessage.cs.meta │ │ │ │ ├── StartGymBattleMessage.cs │ │ │ │ ├── StartGymBattleMessage.cs.meta │ │ │ │ ├── UpgradePokemonMessage.cs │ │ │ │ ├── UpgradePokemonMessage.cs.meta │ │ │ │ ├── UseIncenseMessage.cs │ │ │ │ ├── UseIncenseMessage.cs.meta │ │ │ │ ├── UseItemCaptureMessage.cs │ │ │ │ ├── UseItemCaptureMessage.cs.meta │ │ │ │ ├── UseItemEggIncubatorMessage.cs │ │ │ │ ├── UseItemEggIncubatorMessage.cs.meta │ │ │ │ ├── UseItemGymMessage.cs │ │ │ │ ├── UseItemGymMessage.cs.meta │ │ │ │ ├── UseItemPotionMessage.cs │ │ │ │ ├── UseItemPotionMessage.cs.meta │ │ │ │ ├── UseItemReviveMessage.cs │ │ │ │ ├── UseItemReviveMessage.cs.meta │ │ │ │ ├── UseItemXpBoostMessage.cs │ │ │ │ └── UseItemXpBoostMessage.cs.meta │ │ │ ├── Request.cs │ │ │ ├── Request.cs.meta │ │ │ ├── RequestType.cs │ │ │ └── RequestType.cs.meta │ │ ├── Responses.meta │ │ └── Responses │ │ │ ├── AddFortModifierResponse.cs │ │ │ ├── AddFortModifierResponse.cs.meta │ │ │ ├── AttackGymResponse.cs │ │ │ ├── AttackGymResponse.cs.meta │ │ │ ├── CatchPokemonResponse.cs │ │ │ ├── CatchPokemonResponse.cs.meta │ │ │ ├── CheckAwardedBadgesResponse.cs │ │ │ ├── CheckAwardedBadgesResponse.cs.meta │ │ │ ├── CheckCodenameAvailableResponse.cs │ │ │ ├── CheckCodenameAvailableResponse.cs.meta │ │ │ ├── ClaimCodenameResponse.cs │ │ │ ├── ClaimCodenameResponse.cs.meta │ │ │ ├── CollectDailyBonusResponse.cs │ │ │ ├── CollectDailyBonusResponse.cs.meta │ │ │ ├── CollectDailyDefenderBonusResponse.cs │ │ │ ├── CollectDailyDefenderBonusResponse.cs.meta │ │ │ ├── DiskEncounterResponse.cs │ │ │ ├── DiskEncounterResponse.cs.meta │ │ │ ├── DownloadItemTemplatesResponse.cs │ │ │ ├── DownloadItemTemplatesResponse.cs.meta │ │ │ ├── DownloadRemoteConfigVersionResponse.cs │ │ │ ├── DownloadRemoteConfigVersionResponse.cs.meta │ │ │ ├── DownloadSettingsResponse.cs │ │ │ ├── DownloadSettingsResponse.cs.meta │ │ │ ├── EchoResponse.cs │ │ │ ├── EchoResponse.cs.meta │ │ │ ├── EncounterResponse.cs │ │ │ ├── EncounterResponse.cs.meta │ │ │ ├── EncounterTutorialCompleteResponse.cs │ │ │ ├── EncounterTutorialCompleteResponse.cs.meta │ │ │ ├── EquipBadgeResponse.cs │ │ │ ├── EquipBadgeResponse.cs.meta │ │ │ ├── EvolvePokemonResponse.cs │ │ │ ├── EvolvePokemonResponse.cs.meta │ │ │ ├── FortDeployPokemonResponse.cs │ │ │ ├── FortDeployPokemonResponse.cs.meta │ │ │ ├── FortDetailsResponse.cs │ │ │ ├── FortDetailsResponse.cs.meta │ │ │ ├── FortRecallPokemonResponse.cs │ │ │ ├── FortRecallPokemonResponse.cs.meta │ │ │ ├── FortSearchResponse.cs │ │ │ ├── FortSearchResponse.cs.meta │ │ │ ├── GetAssetDigestResponse.cs │ │ │ ├── GetAssetDigestResponse.cs.meta │ │ │ ├── GetDownloadUrlsResponse.cs │ │ │ ├── GetDownloadUrlsResponse.cs.meta │ │ │ ├── GetGymDetailsResponse.cs │ │ │ ├── GetGymDetailsResponse.cs.meta │ │ │ ├── GetHatchedEggsResponse.cs │ │ │ ├── GetHatchedEggsResponse.cs.meta │ │ │ ├── GetIncensePokemonResponse.cs │ │ │ ├── GetIncensePokemonResponse.cs.meta │ │ │ ├── GetInventoryResponse.cs │ │ │ ├── GetInventoryResponse.cs.meta │ │ │ ├── GetMapObjectsResponse.cs │ │ │ ├── GetMapObjectsResponse.cs.meta │ │ │ ├── GetPlayerProfileResponse.cs │ │ │ ├── GetPlayerProfileResponse.cs.meta │ │ │ ├── GetPlayerResponse.cs │ │ │ ├── GetPlayerResponse.cs.meta │ │ │ ├── GetSuggestedCodenamesResponse.cs │ │ │ ├── GetSuggestedCodenamesResponse.cs.meta │ │ │ ├── IncenseEncounterResponse.cs │ │ │ ├── IncenseEncounterResponse.cs.meta │ │ │ ├── LevelUpRewardsResponse.cs │ │ │ ├── LevelUpRewardsResponse.cs.meta │ │ │ ├── MarkTutorialCompleteResponse.cs │ │ │ ├── MarkTutorialCompleteResponse.cs.meta │ │ │ ├── NicknamePokemonResponse.cs │ │ │ ├── NicknamePokemonResponse.cs.meta │ │ │ ├── PlayerUpdateResponse.cs │ │ │ ├── PlayerUpdateResponse.cs.meta │ │ │ ├── RecycleInventoryItemResponse.cs │ │ │ ├── RecycleInventoryItemResponse.cs.meta │ │ │ ├── ReleasePokemonResponse.cs │ │ │ ├── ReleasePokemonResponse.cs.meta │ │ │ ├── SetAvatarResponse.cs │ │ │ ├── SetAvatarResponse.cs.meta │ │ │ ├── SetContactSettingsResponse.cs │ │ │ ├── SetContactSettingsResponse.cs.meta │ │ │ ├── SetFavoritePokemonResponse.cs │ │ │ ├── SetFavoritePokemonResponse.cs.meta │ │ │ ├── SetPlayerTeamResponse.cs │ │ │ ├── SetPlayerTeamResponse.cs.meta │ │ │ ├── SfidaActionLogResponse.cs │ │ │ ├── SfidaActionLogResponse.cs.meta │ │ │ ├── StartGymBattleResponse.cs │ │ │ ├── StartGymBattleResponse.cs.meta │ │ │ ├── UpgradePokemonResponse.cs │ │ │ ├── UpgradePokemonResponse.cs.meta │ │ │ ├── UseIncenseResponse.cs │ │ │ ├── UseIncenseResponse.cs.meta │ │ │ ├── UseItemCaptureResponse.cs │ │ │ ├── UseItemCaptureResponse.cs.meta │ │ │ ├── UseItemEggIncubatorResponse.cs │ │ │ ├── UseItemEggIncubatorResponse.cs.meta │ │ │ ├── UseItemGymResponse.cs │ │ │ ├── UseItemGymResponse.cs.meta │ │ │ ├── UseItemPotionResponse.cs │ │ │ ├── UseItemPotionResponse.cs.meta │ │ │ ├── UseItemReviveResponse.cs │ │ │ ├── UseItemReviveResponse.cs.meta │ │ │ ├── UseItemXpBoostResponse.cs │ │ │ └── UseItemXpBoostResponse.cs.meta │ ├── POGOProtos.meta │ ├── POGOProtos │ │ ├── Data.meta │ │ ├── Data │ │ │ ├── Battle.meta │ │ │ ├── Capture.meta │ │ │ ├── Gym.meta │ │ │ ├── Logs.meta │ │ │ └── Player.meta │ │ ├── Enums.meta │ │ ├── Inventory.meta │ │ ├── Inventory │ │ │ └── Item.meta │ │ ├── Map.meta │ │ ├── Map │ │ │ ├── Fort.meta │ │ │ └── Pokemon.meta │ │ ├── Networking.meta │ │ ├── Networking │ │ │ ├── Envelopes.meta │ │ │ ├── Requests.meta │ │ │ ├── Requests │ │ │ │ └── Messages.meta │ │ │ └── Responses.meta │ │ ├── Settings.meta │ │ └── Settings │ │ │ ├── Master.meta │ │ │ └── Master │ │ │ ├── Item.meta │ │ │ └── Pokemon.meta │ ├── Settings.meta │ └── Settings │ │ ├── DownloadSettingsAction.cs │ │ ├── DownloadSettingsAction.cs.meta │ │ ├── FortSettings.cs │ │ ├── FortSettings.cs.meta │ │ ├── GlobalSettings.cs │ │ ├── GlobalSettings.cs.meta │ │ ├── InventorySettings.cs │ │ ├── InventorySettings.cs.meta │ │ ├── LevelSettings.cs │ │ ├── LevelSettings.cs.meta │ │ ├── MapSettings.cs │ │ ├── MapSettings.cs.meta │ │ ├── Master.meta │ │ └── Master │ │ ├── BadgeSettings.cs │ │ ├── BadgeSettings.cs.meta │ │ ├── CameraSettings.cs │ │ ├── CameraSettings.cs.meta │ │ ├── EncounterSettings.cs │ │ ├── EncounterSettings.cs.meta │ │ ├── EquippedBadgeSettings.cs │ │ ├── EquippedBadgeSettings.cs.meta │ │ ├── GymBattleSettings.cs │ │ ├── GymBattleSettings.cs.meta │ │ ├── GymLevelSettings.cs │ │ ├── GymLevelSettings.cs.meta │ │ ├── IapItemDisplay.cs │ │ ├── IapItemDisplay.cs.meta │ │ ├── IapSettings.cs │ │ ├── IapSettings.cs.meta │ │ ├── Item.meta │ │ ├── Item │ │ ├── BattleAttributes.cs │ │ ├── BattleAttributes.cs.meta │ │ ├── EggIncubatorAttributes.cs │ │ ├── EggIncubatorAttributes.cs.meta │ │ ├── ExperienceBoostAttributes.cs │ │ ├── ExperienceBoostAttributes.cs.meta │ │ ├── FoodAttributes.cs │ │ ├── FoodAttributes.cs.meta │ │ ├── FortModifierAttributes.cs │ │ ├── FortModifierAttributes.cs.meta │ │ ├── IncenseAttributes.cs │ │ ├── IncenseAttributes.cs.meta │ │ ├── InventoryUpgradeAttributes.cs │ │ ├── InventoryUpgradeAttributes.cs.meta │ │ ├── PokeballAttributes.cs │ │ ├── PokeballAttributes.cs.meta │ │ ├── PotionAttributes.cs │ │ ├── PotionAttributes.cs.meta │ │ ├── ReviveAttributes.cs │ │ └── ReviveAttributes.cs.meta │ │ ├── ItemSettings.cs │ │ ├── ItemSettings.cs.meta │ │ ├── MoveSequenceSettings.cs │ │ ├── MoveSequenceSettings.cs.meta │ │ ├── MoveSettings.cs │ │ ├── MoveSettings.cs.meta │ │ ├── PlayerLevelSettings.cs │ │ ├── PlayerLevelSettings.cs.meta │ │ ├── Pokemon.meta │ │ ├── Pokemon │ │ ├── CameraAttributes.cs │ │ ├── CameraAttributes.cs.meta │ │ ├── EncounterAttributes.cs │ │ ├── EncounterAttributes.cs.meta │ │ ├── StatsAttributes.cs │ │ └── StatsAttributes.cs.meta │ │ ├── PokemonSettings.cs │ │ ├── PokemonSettings.cs.meta │ │ ├── PokemonUpgradeSettings.cs │ │ ├── PokemonUpgradeSettings.cs.meta │ │ ├── TypeEffectiveSettings.cs │ │ └── TypeEffectiveSettings.cs.meta ├── SimpleCoroutines.meta ├── SimpleCoroutines │ ├── Cancel.cs │ ├── Cancel.cs.meta │ ├── Coroutine.cs │ ├── Coroutine.cs.meta │ ├── CoroutineManager.cs │ ├── CoroutineManager.cs.meta │ ├── EnterBackground.cs │ ├── EnterBackground.cs.meta │ ├── EnterForeground.cs │ └── EnterForeground.cs.meta ├── Textures.meta └── Textures │ ├── atlas_logos.png │ ├── atlas_logos.png.meta │ ├── team_blue.png │ ├── team_blue.png.meta │ ├── team_none.png │ ├── team_none.png.meta │ ├── team_red.png │ ├── team_red.png.meta │ ├── team_yellow.png │ ├── team_yellow.png.meta │ ├── tile_loading.png │ ├── tile_loading.png.meta │ ├── ui_background.png │ ├── ui_background.png.meta │ ├── ui_bg_green_bars.png │ ├── ui_bg_green_bars.png.meta │ ├── ui_bg_green_fade.png │ ├── ui_bg_green_fade.png.meta │ ├── ui_button.png │ ├── ui_button.png.meta │ ├── ui_coin.png │ ├── ui_coin.png.meta │ ├── ui_player_arrow.png │ ├── ui_player_arrow.png.meta │ ├── ui_stardust.png │ └── ui_stardust.png.meta ├── LICENSE ├── ProjectSettings ├── AudioManager.asset ├── ClusterInputManager.asset ├── DynamicsManager.asset ├── EditorBuildSettings.asset ├── EditorSettings.asset ├── GraphicsSettings.asset ├── InputManager.asset ├── NavMeshAreas.asset ├── NetworkManager.asset ├── Physics2DSettings.asset ├── ProjectSettings.asset ├── ProjectVersion.txt ├── QualitySettings.asset ├── TagManager.asset ├── TimeManager.asset ├── UnityAdsSettings.asset └── UnityConnectSettings.asset ├── README.md └── buildProtos.bat /.gitignore: -------------------------------------------------------------------------------- 1 | /[Ll]ibrary/ 2 | /[Tt]emp/ 3 | /[Oo]bj/ 4 | /[Bb]uild/ 5 | /[Bb]uilds/ 6 | /Assets/AssetStoreTools* 7 | 8 | # Autogenerated VS/MD solution and project files 9 | ExportedObj/ 10 | *.csproj 11 | *.unityproj 12 | *.sln 13 | *.suo 14 | *.tmp 15 | *.user 16 | *.userprefs 17 | *.pidb 18 | *.booproj 19 | *.svd 20 | 21 | 22 | # Unity3D generated meta files 23 | *.pidb.meta 24 | 25 | # Unity3D Generated File On Crash Reports 26 | sysinfo.txt 27 | 28 | # Builds 29 | *.apk 30 | *.unitypackage 31 | -------------------------------------------------------------------------------- /Assembly-CSharp.csproj.DotSettings: -------------------------------------------------------------------------------- 1 |  2 | True -------------------------------------------------------------------------------- /Assets/Libs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bd3d80b11f36ffd47895dd6764e14012 3 | folderAsset: yes 4 | timeCreated: 1469256027 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Libs/Google.Protobuf.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csnewman/PokemonGo-Desktop/7f3ad251809850f50697a8906154133996cc2947/Assets/Libs/Google.Protobuf.dll -------------------------------------------------------------------------------- /Assets/Libs/Google.Protobuf.dll.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0a8f967dfc6b92a42bceb559669ab24e 3 | timeCreated: 1469376409 4 | licenseType: Pro 5 | PluginImporter: 6 | serializedVersion: 1 7 | iconMap: {} 8 | executionOrder: {} 9 | isPreloaded: 0 10 | platformData: 11 | Any: 12 | enabled: 1 13 | settings: {} 14 | Editor: 15 | enabled: 0 16 | settings: 17 | DefaultValueInitialized: true 18 | WindowsStoreApps: 19 | enabled: 0 20 | settings: 21 | CPU: AnyCPU 22 | userData: 23 | assetBundleName: 24 | assetBundleVariant: 25 | -------------------------------------------------------------------------------- /Assets/Libs/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csnewman/PokemonGo-Desktop/7f3ad251809850f50697a8906154133996cc2947/Assets/Libs/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /Assets/Libs/Newtonsoft.Json.dll.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 878a269ee50954f5843ce9e2d98a44a6 3 | PluginImporter: 4 | serializedVersion: 1 5 | iconMap: {} 6 | executionOrder: {} 7 | isPreloaded: 0 8 | platformData: 9 | Any: 10 | enabled: 1 11 | settings: {} 12 | Editor: 13 | enabled: 0 14 | settings: 15 | DefaultValueInitialized: true 16 | WindowsStoreApps: 17 | enabled: 0 18 | settings: 19 | CPU: AnyCPU 20 | userData: 21 | assetBundleName: 22 | assetBundleVariant: 23 | -------------------------------------------------------------------------------- /Assets/Libs/RestSharp.Unity.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csnewman/PokemonGo-Desktop/7f3ad251809850f50697a8906154133996cc2947/Assets/Libs/RestSharp.Unity.dll -------------------------------------------------------------------------------- /Assets/Libs/RestSharp.Unity.dll.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 81ad8c60192792e4c8db19154f932c12 3 | timeCreated: 1469280400 4 | licenseType: Pro 5 | PluginImporter: 6 | serializedVersion: 1 7 | iconMap: {} 8 | executionOrder: {} 9 | isPreloaded: 0 10 | platformData: 11 | Any: 12 | enabled: 1 13 | settings: {} 14 | Editor: 15 | enabled: 0 16 | settings: 17 | DefaultValueInitialized: true 18 | WindowsStoreApps: 19 | enabled: 0 20 | settings: 21 | CPU: AnyCPU 22 | userData: 23 | assetBundleName: 24 | assetBundleVariant: 25 | -------------------------------------------------------------------------------- /Assets/Main.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7e7fdcf001300bc449914324c14eb11f 3 | timeCreated: 1469106952 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/PGODesktop.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 62b0dbdc44f551e42a7fe77ab91c832f 3 | folderAsset: yes 4 | timeCreated: 1469564890 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/PGODesktop/GameManager.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | using UnityEngine.UI; 3 | using System; 4 | using System.Collections; 5 | using PGODesktop.Network; 6 | using PGODesktop.UI; 7 | using POGOProtos.Networking.Requests; 8 | using POGOProtos.Networking.Requests.Messages; 9 | using POGOProtos.Networking.Responses; 10 | using SimpleCoroutines; 11 | 12 | namespace PGODesktop 13 | { 14 | public class GameManager : MonoBehaviour 15 | { 16 | public GameObject LoginPanel; 17 | public InputField UsernameField; 18 | public InputField PasswordField; 19 | public Button LoginButton; 20 | public GameObject LoginMessagePanel; 21 | public Text LoginMessage; 22 | public GameObject LoggingInPanel; 23 | private INetworkInterface _network; 24 | private bool _loggedIn; 25 | 26 | private void Start() 27 | { 28 | //To use the real live pokemmon go servers, swop to DesktopNetworkInterface 29 | //network = new FakeNetworkInterface (); 30 | _network = new DesktopNetworkInterface(); 31 | 32 | LoginPanel.SetActive(true); 33 | LoginMessagePanel.SetActive(false); 34 | LoginButton.onClick.AddListener(delegate { CoroutineManager.Start("login", BeginLogin()); }); 35 | } 36 | 37 | private IEnumerator BeginLogin() 38 | { 39 | if (_loggedIn) 40 | { 41 | throw new Exception("Already logged in?"); 42 | } 43 | 44 | yield return new EnterForeground(); 45 | LoginPanel.SetActive(false); 46 | LoginMessagePanel.SetActive(false); 47 | LoggingInPanel.SetActive(true); 48 | 49 | //TODO: Show logging in dialog 50 | 51 | yield return new EnterBackground(); 52 | PtcLoginResult result = _network.LoginPtc(UsernameField.text, PasswordField.text); 53 | 54 | if (result == PtcLoginResult.Success) 55 | { 56 | _loggedIn = true; 57 | Debug.Log("Logged in!"); 58 | yield return new EnterForeground(); 59 | LoggingInPanel.SetActive(false); 60 | //TODO: Start gameplay 61 | GetPlayerResponse response = _network.PerformApiRequest(RequestType.GetPlayer, 62 | new GetPlayerMessage()); 63 | Debug.Log("Player Data: " + response.PlayerData); 64 | } 65 | else 66 | { 67 | Debug.Log("Login failed!"); 68 | yield return new EnterForeground(); 69 | LoggingInPanel.SetActive(false); 70 | LoginPanel.SetActive(true); 71 | LoginMessagePanel.SetActive(true); 72 | LoginMessage.text = result.ToString(); 73 | LoginMessagePanel.GetComponent().ResetTime(); 74 | } 75 | } 76 | 77 | private void Update() 78 | { 79 | } 80 | } 81 | } -------------------------------------------------------------------------------- /Assets/PGODesktop/GameManager.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3ad153d2fa8c9414798c7ef801a895e3 3 | timeCreated: 1469564890 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/PGODesktop/Network.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 88a91cf970c703d4e8bddbf9225313dc 3 | folderAsset: yes 4 | timeCreated: 1469564890 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/PGODesktop/Network/DesktopNetworkInterface.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f910ac38ee445694c9c126d81adaea02 3 | timeCreated: 1469283974 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/PGODesktop/Network/FakeNetworkInterface.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Threading; 3 | using Google.Protobuf; 4 | using POGOProtos.Networking.Envelopes; 5 | using POGOProtos.Networking.Requests; 6 | 7 | namespace PGODesktop.Network 8 | { 9 | public class FakeNetworkInterface : INetworkInterface 10 | { 11 | public PtcLoginResult LoginPtc(string username, string password) 12 | { 13 | Thread.Sleep(2000); 14 | 15 | if (username.Equals("testuser") && password.Equals("123")) 16 | { 17 | //Any data needed?? 18 | return PtcLoginResult.Success; 19 | } 20 | return PtcLoginResult.InvalidCredentials; 21 | } 22 | 23 | public bool LoginGoogle(string email, string password) 24 | { 25 | Thread.Sleep(2000); 26 | 27 | if (email.Equals("test@gmail.com") && password.Equals("123")) 28 | { 29 | //Any data needed?? 30 | return true; 31 | } 32 | return false; 33 | } 34 | 35 | public TResponse PerformApiRequest(RequestType type, IMessage message) 36 | where TResponse : IMessage, new() 37 | { 38 | throw new NotImplementedException(); 39 | } 40 | 41 | public ResponseEnvelope PerformApiRequest(params Request[] requests) 42 | { 43 | throw new NotImplementedException(); 44 | } 45 | } 46 | } -------------------------------------------------------------------------------- /Assets/PGODesktop/Network/FakeNetworkInterface.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ad57344b24333f4488ea545322160c96 3 | timeCreated: 1469371700 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/PGODesktop/Network/INetworkInterface.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using Google.Protobuf; 3 | using POGOProtos.Networking.Envelopes; 4 | using POGOProtos.Networking.Requests; 5 | 6 | namespace PGODesktop.Network 7 | { 8 | public interface INetworkInterface 9 | { 10 | PtcLoginResult LoginPtc(string username, string password); 11 | 12 | bool LoginGoogle(string email, string password); 13 | 14 | TResponse PerformApiRequest(RequestType type, IMessage message) where TResponse : IMessage, new(); 15 | 16 | ResponseEnvelope PerformApiRequest(params Request[] requests); 17 | } 18 | } -------------------------------------------------------------------------------- /Assets/PGODesktop/Network/INetworkInterface.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f43e12c6c53acf74d927054131bc42bb 3 | timeCreated: 1469283973 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/PGODesktop/Network/PtcLoginResult.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | 6 | namespace PGODesktop.Network 7 | { 8 | public enum PtcLoginResult 9 | { 10 | Success, 11 | VerificationNeeded, 12 | InvalidCredentials, 13 | Error 14 | } 15 | } -------------------------------------------------------------------------------- /Assets/PGODesktop/Network/PtcLoginResult.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 260be2e03e9b7524f8efbbae8ac71ac0 3 | timeCreated: 1469568869 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/PGODesktop/UI.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7cb309235173fe34fa7f3991879db71d 3 | folderAsset: yes 4 | timeCreated: 1469564890 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/PGODesktop/UI/AutoDestroy.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | 3 | namespace PGODesktop.UI 4 | { 5 | public class AutoDestroy : MonoBehaviour 6 | { 7 | public float Life; 8 | private float _created; 9 | 10 | void OnEnable() 11 | { 12 | _created = Time.time; 13 | } 14 | 15 | public void ResetTime() 16 | { 17 | _created = Time.time; 18 | } 19 | 20 | void Update() 21 | { 22 | if (Time.time - _created > Life) 23 | { 24 | gameObject.SetActive(false); 25 | } 26 | } 27 | } 28 | } -------------------------------------------------------------------------------- /Assets/PGODesktop/UI/AutoDestroy.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ac0914300be279d409dd60e4f5a9ed17 3 | timeCreated: 1469460130 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/PGODesktop/UI/Map.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f005269f679f60c428a9362f367a5d08 3 | timeCreated: 1469787945 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/PGODesktop/Utils.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9e75f50651052fc44af15c4f429dcbff 3 | timeCreated: 1469564890 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 19f1a895c0f1463478122c03e1b679a9 3 | folderAsset: yes 4 | timeCreated: 1469376424 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Data.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1f8ac1b6a9c118642a072e15335d6e8f 3 | folderAsset: yes 4 | timeCreated: 1469376424 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Data/AssetDigestEntry.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9df62b57f7729404e813dee2a0366fa0 3 | timeCreated: 1469376427 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Data/Battle.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a9d846659038e8c4ca26b72c80139074 3 | folderAsset: yes 4 | timeCreated: 1469376424 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Data/Battle/BattleAction.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3902cae0c8082ad468fe88b96de1eaec 3 | timeCreated: 1469376425 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Data/Battle/BattleActionType.cs: -------------------------------------------------------------------------------- 1 | // Generated by the protocol buffer compiler. DO NOT EDIT! 2 | // source: POGOProtos/Data/Battle/BattleActionType.proto 3 | #pragma warning disable 1591, 0612, 3021 4 | #region Designer generated code 5 | 6 | using pb = global::Google.Protobuf; 7 | using pbc = global::Google.Protobuf.Collections; 8 | using pbr = global::Google.Protobuf.Reflection; 9 | using scg = global::System.Collections.Generic; 10 | namespace POGOProtos.Data.Battle { 11 | 12 | /// Holder for reflection information generated from POGOProtos/Data/Battle/BattleActionType.proto 13 | public static partial class BattleActionTypeReflection { 14 | 15 | #region Descriptor 16 | /// File descriptor for POGOProtos/Data/Battle/BattleActionType.proto 17 | public static pbr::FileDescriptor Descriptor { 18 | get { return descriptor; } 19 | } 20 | private static pbr::FileDescriptor descriptor; 21 | 22 | static BattleActionTypeReflection() { 23 | byte[] descriptorData = global::System.Convert.FromBase64String( 24 | string.Concat( 25 | "Ci1QT0dPUHJvdG9zL0RhdGEvQmF0dGxlL0JhdHRsZUFjdGlvblR5cGUucHJv", 26 | "dG8SFlBPR09Qcm90b3MuRGF0YS5CYXR0bGUq/AEKEEJhdHRsZUFjdGlvblR5", 27 | "cGUSEAoMQUNUSU9OX1VOU0VUEAASEQoNQUNUSU9OX0FUVEFDSxABEhAKDEFD", 28 | "VElPTl9ET0RHRRACEhkKFUFDVElPTl9TUEVDSUFMX0FUVEFDSxADEhcKE0FD", 29 | "VElPTl9TV0FQX1BPS0VNT04QBBIQCgxBQ1RJT05fRkFJTlQQBRIWChJBQ1RJ", 30 | "T05fUExBWUVSX0pPSU4QBhIWChJBQ1RJT05fUExBWUVSX1FVSVQQBxISCg5B", 31 | "Q1RJT05fVklDVE9SWRAIEhEKDUFDVElPTl9ERUZFQVQQCRIUChBBQ1RJT05f", 32 | "VElNRURfT1VUEApiBnByb3RvMw==")); 33 | descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, 34 | new pbr::FileDescriptor[] { }, 35 | new pbr::GeneratedClrTypeInfo(new[] {typeof(global::POGOProtos.Data.Battle.BattleActionType), }, null)); 36 | } 37 | #endregion 38 | 39 | } 40 | #region Enums 41 | public enum BattleActionType { 42 | [pbr::OriginalName("ACTION_UNSET")] ActionUnset = 0, 43 | [pbr::OriginalName("ACTION_ATTACK")] ActionAttack = 1, 44 | [pbr::OriginalName("ACTION_DODGE")] ActionDodge = 2, 45 | [pbr::OriginalName("ACTION_SPECIAL_ATTACK")] ActionSpecialAttack = 3, 46 | [pbr::OriginalName("ACTION_SWAP_POKEMON")] ActionSwapPokemon = 4, 47 | [pbr::OriginalName("ACTION_FAINT")] ActionFaint = 5, 48 | [pbr::OriginalName("ACTION_PLAYER_JOIN")] ActionPlayerJoin = 6, 49 | [pbr::OriginalName("ACTION_PLAYER_QUIT")] ActionPlayerQuit = 7, 50 | [pbr::OriginalName("ACTION_VICTORY")] ActionVictory = 8, 51 | [pbr::OriginalName("ACTION_DEFEAT")] ActionDefeat = 9, 52 | [pbr::OriginalName("ACTION_TIMED_OUT")] ActionTimedOut = 10, 53 | } 54 | 55 | #endregion 56 | 57 | } 58 | 59 | #endregion Designer generated code 60 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Data/Battle/BattleActionType.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0c2429561daf64a4ea12064b9f3e19c3 3 | timeCreated: 1469376425 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Data/Battle/BattleLog.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 33f69f55e53b614428d4b70c0fce54b0 3 | timeCreated: 1469376425 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Data/Battle/BattleParticipant.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c37e39a3e76a2af4086cc67a569ae062 3 | timeCreated: 1469376428 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Data/Battle/BattlePokemonInfo.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f1d8cac7b9572de42978c95c2b4c11cf 3 | timeCreated: 1469376429 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Data/Battle/BattleResults.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 334f239df05ac1c49a3f9b662ef25839 3 | timeCreated: 1469376425 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Data/Battle/BattleState.cs: -------------------------------------------------------------------------------- 1 | // Generated by the protocol buffer compiler. DO NOT EDIT! 2 | // source: POGOProtos/Data/Battle/BattleState.proto 3 | #pragma warning disable 1591, 0612, 3021 4 | #region Designer generated code 5 | 6 | using pb = global::Google.Protobuf; 7 | using pbc = global::Google.Protobuf.Collections; 8 | using pbr = global::Google.Protobuf.Reflection; 9 | using scg = global::System.Collections.Generic; 10 | namespace POGOProtos.Data.Battle { 11 | 12 | /// Holder for reflection information generated from POGOProtos/Data/Battle/BattleState.proto 13 | public static partial class BattleStateReflection { 14 | 15 | #region Descriptor 16 | /// File descriptor for POGOProtos/Data/Battle/BattleState.proto 17 | public static pbr::FileDescriptor Descriptor { 18 | get { return descriptor; } 19 | } 20 | private static pbr::FileDescriptor descriptor; 21 | 22 | static BattleStateReflection() { 23 | byte[] descriptorData = global::System.Convert.FromBase64String( 24 | string.Concat( 25 | "CihQT0dPUHJvdG9zL0RhdGEvQmF0dGxlL0JhdHRsZVN0YXRlLnByb3RvEhZQ", 26 | "T0dPUHJvdG9zLkRhdGEuQmF0dGxlKlQKC0JhdHRsZVN0YXRlEg8KC1NUQVRF", 27 | "X1VOU0VUEAASCgoGQUNUSVZFEAESCwoHVklDVE9SWRACEgwKCERFRkVBVEVE", 28 | "EAMSDQoJVElNRURfT1VUEARiBnByb3RvMw==")); 29 | descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, 30 | new pbr::FileDescriptor[] { }, 31 | new pbr::GeneratedClrTypeInfo(new[] {typeof(global::POGOProtos.Data.Battle.BattleState), }, null)); 32 | } 33 | #endregion 34 | 35 | } 36 | #region Enums 37 | public enum BattleState { 38 | [pbr::OriginalName("STATE_UNSET")] StateUnset = 0, 39 | [pbr::OriginalName("ACTIVE")] Active = 1, 40 | [pbr::OriginalName("VICTORY")] Victory = 2, 41 | [pbr::OriginalName("DEFEATED")] Defeated = 3, 42 | [pbr::OriginalName("TIMED_OUT")] TimedOut = 4, 43 | } 44 | 45 | #endregion 46 | 47 | } 48 | 49 | #endregion Designer generated code 50 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Data/Battle/BattleState.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b0e717f4b5336b84f86f0585781d21c9 3 | timeCreated: 1469376427 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Data/Battle/BattleType.cs: -------------------------------------------------------------------------------- 1 | // Generated by the protocol buffer compiler. DO NOT EDIT! 2 | // source: POGOProtos/Data/Battle/BattleType.proto 3 | #pragma warning disable 1591, 0612, 3021 4 | #region Designer generated code 5 | 6 | using pb = global::Google.Protobuf; 7 | using pbc = global::Google.Protobuf.Collections; 8 | using pbr = global::Google.Protobuf.Reflection; 9 | using scg = global::System.Collections.Generic; 10 | namespace POGOProtos.Data.Battle { 11 | 12 | /// Holder for reflection information generated from POGOProtos/Data/Battle/BattleType.proto 13 | public static partial class BattleTypeReflection { 14 | 15 | #region Descriptor 16 | /// File descriptor for POGOProtos/Data/Battle/BattleType.proto 17 | public static pbr::FileDescriptor Descriptor { 18 | get { return descriptor; } 19 | } 20 | private static pbr::FileDescriptor descriptor; 21 | 22 | static BattleTypeReflection() { 23 | byte[] descriptorData = global::System.Convert.FromBase64String( 24 | string.Concat( 25 | "CidQT0dPUHJvdG9zL0RhdGEvQmF0dGxlL0JhdHRsZVR5cGUucHJvdG8SFlBP", 26 | "R09Qcm90b3MuRGF0YS5CYXR0bGUqPQoKQmF0dGxlVHlwZRIVChFCQVRUTEVf", 27 | "VFlQRV9VTlNFVBAAEgoKBk5PUk1BTBABEgwKCFRSQUlOSU5HEAJiBnByb3Rv", 28 | "Mw==")); 29 | descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, 30 | new pbr::FileDescriptor[] { }, 31 | new pbr::GeneratedClrTypeInfo(new[] {typeof(global::POGOProtos.Data.Battle.BattleType), }, null)); 32 | } 33 | #endregion 34 | 35 | } 36 | #region Enums 37 | public enum BattleType { 38 | [pbr::OriginalName("BATTLE_TYPE_UNSET")] Unset = 0, 39 | [pbr::OriginalName("NORMAL")] Normal = 1, 40 | [pbr::OriginalName("TRAINING")] Training = 2, 41 | } 42 | 43 | #endregion 44 | 45 | } 46 | 47 | #endregion Designer generated code 48 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Data/Battle/BattleType.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1b54a48c0319a9644b67860a91de3af0 3 | timeCreated: 1469376425 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Data/Capture.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 54262913707d0114daafeedf42e4827a 3 | folderAsset: yes 4 | timeCreated: 1469376424 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Data/Capture/CaptureAward.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6b0ad7b96b1916643b77fa4d4baf6373 3 | timeCreated: 1469376426 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Data/Capture/CaptureProbability.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 913d5eb10b1a7b3418e080368e44cc58 3 | timeCreated: 1469376427 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Data/DownloadUrlEntry.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 895ff33b39402394cbcbdc13cb3c5c90 3 | timeCreated: 1469376427 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Data/Gym.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7be126531a73ffe409263225f0ad5798 3 | folderAsset: yes 4 | timeCreated: 1469376424 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Data/Gym/GymMembership.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4a8ba698ebc04a14786666ce3167e671 3 | timeCreated: 1469376425 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Data/Gym/GymState.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1e4bb6a76d422034ab94174491b886bf 3 | timeCreated: 1469376425 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Data/Logs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 48f9f83b85a901046828f66da805f0c0 3 | folderAsset: yes 4 | timeCreated: 1469376424 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Data/Logs/ActionLogEntry.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fc3c24921f0129445b813a7768a1e97d 3 | timeCreated: 1469376429 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Data/Logs/CatchPokemonLogEntry.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dccb4fd8762e770498f05b2d6ecc54c4 3 | timeCreated: 1469376429 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Data/Logs/FortSearchLogEntry.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a27f6497822e2b248818170fc4e0c403 3 | timeCreated: 1469376427 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Data/Player.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c302145af15794c4c8ae56a6b122123a 3 | folderAsset: yes 4 | timeCreated: 1469376424 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Data/Player/ContactSettings.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c06b20fab2b5a7640b25a340a1b15187 3 | timeCreated: 1469376428 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Data/Player/Currency.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1c7042eb6cdf4b644bcd7a4bc66b6cdb 3 | timeCreated: 1469376425 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Data/Player/DailyBonus.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: aca9a7bb3891ba342949901adf00a2ec 3 | timeCreated: 1469376427 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Data/Player/EquippedBadge.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 11f5c75952aa6964f8bb20cbe31eef2b 3 | timeCreated: 1469376425 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Data/Player/PlayerAvatar.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b2650b10987d7984c8dc424926531cbd 3 | timeCreated: 1469376427 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Data/Player/PlayerCamera.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 21ffcdad4d8847740b3007d62c36a257 3 | timeCreated: 1469376425 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Data/Player/PlayerCurrency.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e7b3626fbd397874eb399e9d6466d461 3 | timeCreated: 1469376429 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Data/Player/PlayerPublicProfile.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a1c7ae5add7df714d8aef2146ba273b7 3 | timeCreated: 1469376427 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Data/Player/PlayerStats.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a13f88163568ec84fb2c0a9815a7add5 3 | timeCreated: 1469376427 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Data/PlayerBadge.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a3f094fb7254ff04280376d64b4fdcc0 3 | timeCreated: 1469376427 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Data/PlayerData.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b4eb26963f971eb4a83d56fbbe92f905 3 | timeCreated: 1469376427 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Data/PokedexEntry.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f6579a6c4a196b74283dc12430bfec6c 3 | timeCreated: 1469376429 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Data/PokemonData.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d0874a94575be73418415039b5e785a8 3 | timeCreated: 1469376428 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Enums.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 76a8c4b4e1d1c77489c55d3c30a78501 3 | folderAsset: yes 4 | timeCreated: 1469376424 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Enums/ActivityType.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1ca425649e1eb6b439db6cc2fa36f72e 3 | timeCreated: 1469376425 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Enums/BadgeType.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 95eed6df373455e4aa58636a23ec5cb0 3 | timeCreated: 1469376427 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Enums/CameraInterpolation.cs: -------------------------------------------------------------------------------- 1 | // Generated by the protocol buffer compiler. DO NOT EDIT! 2 | // source: POGOProtos/Enums/CameraInterpolation.proto 3 | #pragma warning disable 1591, 0612, 3021 4 | #region Designer generated code 5 | 6 | using pb = global::Google.Protobuf; 7 | using pbc = global::Google.Protobuf.Collections; 8 | using pbr = global::Google.Protobuf.Reflection; 9 | using scg = global::System.Collections.Generic; 10 | namespace POGOProtos.Enums { 11 | 12 | /// Holder for reflection information generated from POGOProtos/Enums/CameraInterpolation.proto 13 | public static partial class CameraInterpolationReflection { 14 | 15 | #region Descriptor 16 | /// File descriptor for POGOProtos/Enums/CameraInterpolation.proto 17 | public static pbr::FileDescriptor Descriptor { 18 | get { return descriptor; } 19 | } 20 | private static pbr::FileDescriptor descriptor; 21 | 22 | static CameraInterpolationReflection() { 23 | byte[] descriptorData = global::System.Convert.FromBase64String( 24 | string.Concat( 25 | "CipQT0dPUHJvdG9zL0VudW1zL0NhbWVyYUludGVycG9sYXRpb24ucHJvdG8S", 26 | "EFBPR09Qcm90b3MuRW51bXMqlgEKE0NhbWVyYUludGVycG9sYXRpb24SEgoO", 27 | "Q0FNX0lOVEVSUF9DVVQQABIVChFDQU1fSU5URVJQX0xJTkVBUhABEhUKEUNB", 28 | "TV9JTlRFUlBfU01PT1RIEAISJQohQ0FNX0lOVEVSUF9TTU9PVEhfUk9UX0xJ", 29 | "TkVBUl9NT1ZFEAMSFgoSQ0FNX0lOVEVSUF9ERVBFTkRTEARiBnByb3RvMw==")); 30 | descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, 31 | new pbr::FileDescriptor[] { }, 32 | new pbr::GeneratedClrTypeInfo(new[] {typeof(global::POGOProtos.Enums.CameraInterpolation), }, null)); 33 | } 34 | #endregion 35 | 36 | } 37 | #region Enums 38 | public enum CameraInterpolation { 39 | [pbr::OriginalName("CAM_INTERP_CUT")] CamInterpCut = 0, 40 | [pbr::OriginalName("CAM_INTERP_LINEAR")] CamInterpLinear = 1, 41 | [pbr::OriginalName("CAM_INTERP_SMOOTH")] CamInterpSmooth = 2, 42 | [pbr::OriginalName("CAM_INTERP_SMOOTH_ROT_LINEAR_MOVE")] CamInterpSmoothRotLinearMove = 3, 43 | [pbr::OriginalName("CAM_INTERP_DEPENDS")] CamInterpDepends = 4, 44 | } 45 | 46 | #endregion 47 | 48 | } 49 | 50 | #endregion Designer generated code 51 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Enums/CameraInterpolation.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c96c99e4c8a170c4191738c1a1899a4b 3 | timeCreated: 1469376428 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Enums/CameraTarget.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b1495ed098b469d4da690b45ece13624 3 | timeCreated: 1469376427 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Enums/Gender.cs: -------------------------------------------------------------------------------- 1 | // Generated by the protocol buffer compiler. DO NOT EDIT! 2 | // source: POGOProtos/Enums/Gender.proto 3 | #pragma warning disable 1591, 0612, 3021 4 | #region Designer generated code 5 | 6 | using pb = global::Google.Protobuf; 7 | using pbc = global::Google.Protobuf.Collections; 8 | using pbr = global::Google.Protobuf.Reflection; 9 | using scg = global::System.Collections.Generic; 10 | namespace POGOProtos.Enums { 11 | 12 | /// Holder for reflection information generated from POGOProtos/Enums/Gender.proto 13 | public static partial class GenderReflection { 14 | 15 | #region Descriptor 16 | /// File descriptor for POGOProtos/Enums/Gender.proto 17 | public static pbr::FileDescriptor Descriptor { 18 | get { return descriptor; } 19 | } 20 | private static pbr::FileDescriptor descriptor; 21 | 22 | static GenderReflection() { 23 | byte[] descriptorData = global::System.Convert.FromBase64String( 24 | string.Concat( 25 | "Ch1QT0dPUHJvdG9zL0VudW1zL0dlbmRlci5wcm90bxIQUE9HT1Byb3Rvcy5F", 26 | "bnVtcyoeCgZHZW5kZXISCAoETUFMRRAAEgoKBkZFTUFMRRABYgZwcm90bzM=")); 27 | descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, 28 | new pbr::FileDescriptor[] { }, 29 | new pbr::GeneratedClrTypeInfo(new[] {typeof(global::POGOProtos.Enums.Gender), }, null)); 30 | } 31 | #endregion 32 | 33 | } 34 | #region Enums 35 | public enum Gender { 36 | [pbr::OriginalName("MALE")] Male = 0, 37 | [pbr::OriginalName("FEMALE")] Female = 1, 38 | } 39 | 40 | #endregion 41 | 42 | } 43 | 44 | #endregion Designer generated code 45 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Enums/Gender.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 968d3a9ccee328143ae2f66bee4fc70d 3 | timeCreated: 1469376427 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Enums/IapItemCategory.cs: -------------------------------------------------------------------------------- 1 | // Generated by the protocol buffer compiler. DO NOT EDIT! 2 | // source: POGOProtos/Enums/IapItemCategory.proto 3 | #pragma warning disable 1591, 0612, 3021 4 | #region Designer generated code 5 | 6 | using pb = global::Google.Protobuf; 7 | using pbc = global::Google.Protobuf.Collections; 8 | using pbr = global::Google.Protobuf.Reflection; 9 | using scg = global::System.Collections.Generic; 10 | namespace POGOProtos.Enums { 11 | 12 | /// Holder for reflection information generated from POGOProtos/Enums/IapItemCategory.proto 13 | public static partial class IapItemCategoryReflection { 14 | 15 | #region Descriptor 16 | /// File descriptor for POGOProtos/Enums/IapItemCategory.proto 17 | public static pbr::FileDescriptor Descriptor { 18 | get { return descriptor; } 19 | } 20 | private static pbr::FileDescriptor descriptor; 21 | 22 | static IapItemCategoryReflection() { 23 | byte[] descriptorData = global::System.Convert.FromBase64String( 24 | string.Concat( 25 | "CiZQT0dPUHJvdG9zL0VudW1zL0lhcEl0ZW1DYXRlZ29yeS5wcm90bxIQUE9H", 26 | "T1Byb3Rvcy5FbnVtcyqUAQoTSG9sb0lhcEl0ZW1DYXRlZ29yeRIVChFJQVBf", 27 | "Q0FURUdPUllfTk9ORRAAEhcKE0lBUF9DQVRFR09SWV9CVU5ETEUQARIWChJJ", 28 | "QVBfQ0FURUdPUllfSVRFTVMQAhIZChVJQVBfQ0FURUdPUllfVVBHUkFERVMQ", 29 | "AxIaChZJQVBfQ0FURUdPUllfUE9LRUNPSU5TEARiBnByb3RvMw==")); 30 | descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, 31 | new pbr::FileDescriptor[] { }, 32 | new pbr::GeneratedClrTypeInfo(new[] {typeof(global::POGOProtos.Enums.HoloIapItemCategory), }, null)); 33 | } 34 | #endregion 35 | 36 | } 37 | #region Enums 38 | public enum HoloIapItemCategory { 39 | [pbr::OriginalName("IAP_CATEGORY_NONE")] IapCategoryNone = 0, 40 | [pbr::OriginalName("IAP_CATEGORY_BUNDLE")] IapCategoryBundle = 1, 41 | [pbr::OriginalName("IAP_CATEGORY_ITEMS")] IapCategoryItems = 2, 42 | [pbr::OriginalName("IAP_CATEGORY_UPGRADES")] IapCategoryUpgrades = 3, 43 | [pbr::OriginalName("IAP_CATEGORY_POKECOINS")] IapCategoryPokecoins = 4, 44 | } 45 | 46 | #endregion 47 | 48 | } 49 | 50 | #endregion Designer generated code 51 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Enums/IapItemCategory.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 06e75adf24c51014ca2880cb1c86ab92 3 | timeCreated: 1469376424 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Enums/ItemCategory.cs: -------------------------------------------------------------------------------- 1 | // Generated by the protocol buffer compiler. DO NOT EDIT! 2 | // source: POGOProtos/Enums/ItemCategory.proto 3 | #pragma warning disable 1591, 0612, 3021 4 | #region Designer generated code 5 | 6 | using pb = global::Google.Protobuf; 7 | using pbc = global::Google.Protobuf.Collections; 8 | using pbr = global::Google.Protobuf.Reflection; 9 | using scg = global::System.Collections.Generic; 10 | namespace POGOProtos.Enums { 11 | 12 | /// Holder for reflection information generated from POGOProtos/Enums/ItemCategory.proto 13 | public static partial class ItemCategoryReflection { 14 | 15 | #region Descriptor 16 | /// File descriptor for POGOProtos/Enums/ItemCategory.proto 17 | public static pbr::FileDescriptor Descriptor { 18 | get { return descriptor; } 19 | } 20 | private static pbr::FileDescriptor descriptor; 21 | 22 | static ItemCategoryReflection() { 23 | byte[] descriptorData = global::System.Convert.FromBase64String( 24 | string.Concat( 25 | "CiNQT0dPUHJvdG9zL0VudW1zL0l0ZW1DYXRlZ29yeS5wcm90bxIQUE9HT1By", 26 | "b3Rvcy5FbnVtcyrWAgoMSXRlbUNhdGVnb3J5EhYKEklURU1fQ0FURUdPUllf", 27 | "Tk9ORRAAEhoKFklURU1fQ0FURUdPUllfUE9LRUJBTEwQARIWChJJVEVNX0NB", 28 | "VEVHT1JZX0ZPT0QQAhIaChZJVEVNX0NBVEVHT1JZX01FRElDSU5FEAMSFwoT", 29 | "SVRFTV9DQVRFR09SWV9CT09TVBAEEhoKFklURU1fQ0FURUdPUllfVVRJTElU", 30 | "RVMQBRIYChRJVEVNX0NBVEVHT1JZX0NBTUVSQRAGEhYKEklURU1fQ0FURUdP", 31 | "UllfRElTSxAHEhsKF0lURU1fQ0FURUdPUllfSU5DVUJBVE9SEAgSGQoVSVRF", 32 | "TV9DQVRFR09SWV9JTkNFTlNFEAkSGgoWSVRFTV9DQVRFR09SWV9YUF9CT09T", 33 | "VBAKEiMKH0lURU1fQ0FURUdPUllfSU5WRU5UT1JZX1VQR1JBREUQC2IGcHJv", 34 | "dG8z")); 35 | descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, 36 | new pbr::FileDescriptor[] { }, 37 | new pbr::GeneratedClrTypeInfo(new[] {typeof(global::POGOProtos.Enums.ItemCategory), }, null)); 38 | } 39 | #endregion 40 | 41 | } 42 | #region Enums 43 | public enum ItemCategory { 44 | [pbr::OriginalName("ITEM_CATEGORY_NONE")] None = 0, 45 | [pbr::OriginalName("ITEM_CATEGORY_POKEBALL")] Pokeball = 1, 46 | [pbr::OriginalName("ITEM_CATEGORY_FOOD")] Food = 2, 47 | [pbr::OriginalName("ITEM_CATEGORY_MEDICINE")] Medicine = 3, 48 | [pbr::OriginalName("ITEM_CATEGORY_BOOST")] Boost = 4, 49 | [pbr::OriginalName("ITEM_CATEGORY_UTILITES")] Utilites = 5, 50 | [pbr::OriginalName("ITEM_CATEGORY_CAMERA")] Camera = 6, 51 | [pbr::OriginalName("ITEM_CATEGORY_DISK")] Disk = 7, 52 | [pbr::OriginalName("ITEM_CATEGORY_INCUBATOR")] Incubator = 8, 53 | [pbr::OriginalName("ITEM_CATEGORY_INCENSE")] Incense = 9, 54 | [pbr::OriginalName("ITEM_CATEGORY_XP_BOOST")] XpBoost = 10, 55 | [pbr::OriginalName("ITEM_CATEGORY_INVENTORY_UPGRADE")] InventoryUpgrade = 11, 56 | } 57 | 58 | #endregion 59 | 60 | } 61 | 62 | #endregion Designer generated code 63 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Enums/ItemCategory.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 732700164e1dd9f4d94e881f04f79927 3 | timeCreated: 1469376426 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Enums/ItemEffect.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7f9daf6495e735e4cb2c03d0c5ac18e4 3 | timeCreated: 1469376426 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Enums/Platform.cs: -------------------------------------------------------------------------------- 1 | // Generated by the protocol buffer compiler. DO NOT EDIT! 2 | // source: POGOProtos/Enums/Platform.proto 3 | #pragma warning disable 1591, 0612, 3021 4 | #region Designer generated code 5 | 6 | using pb = global::Google.Protobuf; 7 | using pbc = global::Google.Protobuf.Collections; 8 | using pbr = global::Google.Protobuf.Reflection; 9 | using scg = global::System.Collections.Generic; 10 | namespace POGOProtos.Enums { 11 | 12 | /// Holder for reflection information generated from POGOProtos/Enums/Platform.proto 13 | public static partial class PlatformReflection { 14 | 15 | #region Descriptor 16 | /// File descriptor for POGOProtos/Enums/Platform.proto 17 | public static pbr::FileDescriptor Descriptor { 18 | get { return descriptor; } 19 | } 20 | private static pbr::FileDescriptor descriptor; 21 | 22 | static PlatformReflection() { 23 | byte[] descriptorData = global::System.Convert.FromBase64String( 24 | string.Concat( 25 | "Ch9QT0dPUHJvdG9zL0VudW1zL1BsYXRmb3JtLnByb3RvEhBQT0dPUHJvdG9z", 26 | "LkVudW1zKkEKCFBsYXRmb3JtEgkKBVVOU0VUEAASBwoDSU9TEAESCwoHQU5E", 27 | "Uk9JRBACEgcKA09TWBADEgsKB1dJTkRPV1MQBGIGcHJvdG8z")); 28 | descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, 29 | new pbr::FileDescriptor[] { }, 30 | new pbr::GeneratedClrTypeInfo(new[] {typeof(global::POGOProtos.Enums.Platform), }, null)); 31 | } 32 | #endregion 33 | 34 | } 35 | #region Enums 36 | public enum Platform { 37 | [pbr::OriginalName("UNSET")] Unset = 0, 38 | [pbr::OriginalName("IOS")] Ios = 1, 39 | [pbr::OriginalName("ANDROID")] Android = 2, 40 | [pbr::OriginalName("OSX")] Osx = 3, 41 | [pbr::OriginalName("WINDOWS")] Windows = 4, 42 | } 43 | 44 | #endregion 45 | 46 | } 47 | 48 | #endregion Designer generated code 49 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Enums/Platform.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 03890dc9a2554cc45a02b0a5f4f6af01 3 | timeCreated: 1469376424 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Enums/PokemonFamilyId.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 86bf40cb1362f944e82951a351002324 3 | timeCreated: 1469376427 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Enums/PokemonId.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1b0bdc1b862d0b64ebc70372289dbdb3 3 | timeCreated: 1469376425 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Enums/PokemonMove.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dccaaa9e630f87c4badaeaebc4735c41 3 | timeCreated: 1469376429 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Enums/PokemonMovementType.cs: -------------------------------------------------------------------------------- 1 | // Generated by the protocol buffer compiler. DO NOT EDIT! 2 | // source: POGOProtos/Enums/PokemonMovementType.proto 3 | #pragma warning disable 1591, 0612, 3021 4 | #region Designer generated code 5 | 6 | using pb = global::Google.Protobuf; 7 | using pbc = global::Google.Protobuf.Collections; 8 | using pbr = global::Google.Protobuf.Reflection; 9 | using scg = global::System.Collections.Generic; 10 | namespace POGOProtos.Enums { 11 | 12 | /// Holder for reflection information generated from POGOProtos/Enums/PokemonMovementType.proto 13 | public static partial class PokemonMovementTypeReflection { 14 | 15 | #region Descriptor 16 | /// File descriptor for POGOProtos/Enums/PokemonMovementType.proto 17 | public static pbr::FileDescriptor Descriptor { 18 | get { return descriptor; } 19 | } 20 | private static pbr::FileDescriptor descriptor; 21 | 22 | static PokemonMovementTypeReflection() { 23 | byte[] descriptorData = global::System.Convert.FromBase64String( 24 | string.Concat( 25 | "CipQT0dPUHJvdG9zL0VudW1zL1Bva2Vtb25Nb3ZlbWVudFR5cGUucHJvdG8S", 26 | "EFBPR09Qcm90b3MuRW51bXMqrQEKE1Bva2Vtb25Nb3ZlbWVudFR5cGUSEwoP", 27 | "TU9WRU1FTlRfU1RBVElDEAASEQoNTU9WRU1FTlRfSlVNUBABEhUKEU1PVkVN", 28 | "RU5UX1ZFUlRJQ0FMEAISFAoQTU9WRU1FTlRfUFNZQ0hJQxADEhUKEU1PVkVN", 29 | "RU5UX0VMRUNUUklDEAQSEwoPTU9WRU1FTlRfRkxZSU5HEAUSFQoRTU9WRU1F", 30 | "TlRfSE9WRVJJTkcQBmIGcHJvdG8z")); 31 | descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, 32 | new pbr::FileDescriptor[] { }, 33 | new pbr::GeneratedClrTypeInfo(new[] {typeof(global::POGOProtos.Enums.PokemonMovementType), }, null)); 34 | } 35 | #endregion 36 | 37 | } 38 | #region Enums 39 | public enum PokemonMovementType { 40 | [pbr::OriginalName("MOVEMENT_STATIC")] MovementStatic = 0, 41 | [pbr::OriginalName("MOVEMENT_JUMP")] MovementJump = 1, 42 | [pbr::OriginalName("MOVEMENT_VERTICAL")] MovementVertical = 2, 43 | [pbr::OriginalName("MOVEMENT_PSYCHIC")] MovementPsychic = 3, 44 | [pbr::OriginalName("MOVEMENT_ELECTRIC")] MovementElectric = 4, 45 | [pbr::OriginalName("MOVEMENT_FLYING")] MovementFlying = 5, 46 | [pbr::OriginalName("MOVEMENT_HOVERING")] MovementHovering = 6, 47 | } 48 | 49 | #endregion 50 | 51 | } 52 | 53 | #endregion Designer generated code 54 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Enums/PokemonMovementType.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 56236ee2cb1c3d34f8f003e48e8521fe 3 | timeCreated: 1469376426 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Enums/PokemonRarity.cs: -------------------------------------------------------------------------------- 1 | // Generated by the protocol buffer compiler. DO NOT EDIT! 2 | // source: POGOProtos/Enums/PokemonRarity.proto 3 | #pragma warning disable 1591, 0612, 3021 4 | #region Designer generated code 5 | 6 | using pb = global::Google.Protobuf; 7 | using pbc = global::Google.Protobuf.Collections; 8 | using pbr = global::Google.Protobuf.Reflection; 9 | using scg = global::System.Collections.Generic; 10 | namespace POGOProtos.Enums { 11 | 12 | /// Holder for reflection information generated from POGOProtos/Enums/PokemonRarity.proto 13 | public static partial class PokemonRarityReflection { 14 | 15 | #region Descriptor 16 | /// File descriptor for POGOProtos/Enums/PokemonRarity.proto 17 | public static pbr::FileDescriptor Descriptor { 18 | get { return descriptor; } 19 | } 20 | private static pbr::FileDescriptor descriptor; 21 | 22 | static PokemonRarityReflection() { 23 | byte[] descriptorData = global::System.Convert.FromBase64String( 24 | string.Concat( 25 | "CiRQT0dPUHJvdG9zL0VudW1zL1Bva2Vtb25SYXJpdHkucHJvdG8SEFBPR09Q", 26 | "cm90b3MuRW51bXMqNgoNUG9rZW1vblJhcml0eRIKCgZOT1JNQUwQABINCglM", 27 | "RUdFTkRBUlkQARIKCgZNWVRISUMQAmIGcHJvdG8z")); 28 | descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, 29 | new pbr::FileDescriptor[] { }, 30 | new pbr::GeneratedClrTypeInfo(new[] {typeof(global::POGOProtos.Enums.PokemonRarity), }, null)); 31 | } 32 | #endregion 33 | 34 | } 35 | #region Enums 36 | public enum PokemonRarity { 37 | [pbr::OriginalName("NORMAL")] Normal = 0, 38 | [pbr::OriginalName("LEGENDARY")] Legendary = 1, 39 | [pbr::OriginalName("MYTHIC")] Mythic = 2, 40 | } 41 | 42 | #endregion 43 | 44 | } 45 | 46 | #endregion Designer generated code 47 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Enums/PokemonRarity.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1825214efee802b45b1c134b37e02479 3 | timeCreated: 1469376425 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Enums/PokemonType.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 28eef0de1e3b21f4894bbc10667c3cc6 3 | timeCreated: 1469376425 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Enums/TeamColor.cs: -------------------------------------------------------------------------------- 1 | // Generated by the protocol buffer compiler. DO NOT EDIT! 2 | // source: POGOProtos/Enums/TeamColor.proto 3 | #pragma warning disable 1591, 0612, 3021 4 | #region Designer generated code 5 | 6 | using pb = global::Google.Protobuf; 7 | using pbc = global::Google.Protobuf.Collections; 8 | using pbr = global::Google.Protobuf.Reflection; 9 | using scg = global::System.Collections.Generic; 10 | namespace POGOProtos.Enums { 11 | 12 | /// Holder for reflection information generated from POGOProtos/Enums/TeamColor.proto 13 | public static partial class TeamColorReflection { 14 | 15 | #region Descriptor 16 | /// File descriptor for POGOProtos/Enums/TeamColor.proto 17 | public static pbr::FileDescriptor Descriptor { 18 | get { return descriptor; } 19 | } 20 | private static pbr::FileDescriptor descriptor; 21 | 22 | static TeamColorReflection() { 23 | byte[] descriptorData = global::System.Convert.FromBase64String( 24 | string.Concat( 25 | "CiBQT0dPUHJvdG9zL0VudW1zL1RlYW1Db2xvci5wcm90bxIQUE9HT1Byb3Rv", 26 | "cy5FbnVtcyo3CglUZWFtQ29sb3ISCwoHTkVVVFJBTBAAEggKBEJMVUUQARIH", 27 | "CgNSRUQQAhIKCgZZRUxMT1cQA2IGcHJvdG8z")); 28 | descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, 29 | new pbr::FileDescriptor[] { }, 30 | new pbr::GeneratedClrTypeInfo(new[] {typeof(global::POGOProtos.Enums.TeamColor), }, null)); 31 | } 32 | #endregion 33 | 34 | } 35 | #region Enums 36 | public enum TeamColor { 37 | [pbr::OriginalName("NEUTRAL")] Neutral = 0, 38 | [pbr::OriginalName("BLUE")] Blue = 1, 39 | [pbr::OriginalName("RED")] Red = 2, 40 | [pbr::OriginalName("YELLOW")] Yellow = 3, 41 | } 42 | 43 | #endregion 44 | 45 | } 46 | 47 | #endregion Designer generated code 48 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Enums/TeamColor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ce0a3f17877dbbc4daf6006dd5153ac5 3 | timeCreated: 1469376428 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Enums/TutorialState.cs: -------------------------------------------------------------------------------- 1 | // Generated by the protocol buffer compiler. DO NOT EDIT! 2 | // source: POGOProtos/Enums/TutorialState.proto 3 | #pragma warning disable 1591, 0612, 3021 4 | #region Designer generated code 5 | 6 | using pb = global::Google.Protobuf; 7 | using pbc = global::Google.Protobuf.Collections; 8 | using pbr = global::Google.Protobuf.Reflection; 9 | using scg = global::System.Collections.Generic; 10 | namespace POGOProtos.Enums { 11 | 12 | /// Holder for reflection information generated from POGOProtos/Enums/TutorialState.proto 13 | public static partial class TutorialStateReflection { 14 | 15 | #region Descriptor 16 | /// File descriptor for POGOProtos/Enums/TutorialState.proto 17 | public static pbr::FileDescriptor Descriptor { 18 | get { return descriptor; } 19 | } 20 | private static pbr::FileDescriptor descriptor; 21 | 22 | static TutorialStateReflection() { 23 | byte[] descriptorData = global::System.Convert.FromBase64String( 24 | string.Concat( 25 | "CiRQT0dPUHJvdG9zL0VudW1zL1R1dG9yaWFsU3RhdGUucHJvdG8SEFBPR09Q", 26 | "cm90b3MuRW51bXMq5AEKDVR1dG9yaWFsU3RhdGUSEAoMTEVHQUxfU0NSRUVO", 27 | "EAASFAoQQVZBVEFSX1NFTEVDVElPThABEhQKEEFDQ09VTlRfQ1JFQVRJT04Q", 28 | "AhITCg9QT0tFTU9OX0NBUFRVUkUQAxISCg5OQU1FX1NFTEVDVElPThAEEhEK", 29 | "DVBPS0VNT05fQkVSUlkQBRIMCghVU0VfSVRFTRAGEiIKHkZJUlNUX1RJTUVf", 30 | "RVhQRVJJRU5DRV9DT01QTEVURRAHEhUKEVBPS0VTVE9QX1RVVE9SSUFMEAgS", 31 | "EAoMR1lNX1RVVE9SSUFMEAliBnByb3RvMw==")); 32 | descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, 33 | new pbr::FileDescriptor[] { }, 34 | new pbr::GeneratedClrTypeInfo(new[] {typeof(global::POGOProtos.Enums.TutorialState), }, null)); 35 | } 36 | #endregion 37 | 38 | } 39 | #region Enums 40 | public enum TutorialState { 41 | [pbr::OriginalName("LEGAL_SCREEN")] LegalScreen = 0, 42 | [pbr::OriginalName("AVATAR_SELECTION")] AvatarSelection = 1, 43 | [pbr::OriginalName("ACCOUNT_CREATION")] AccountCreation = 2, 44 | [pbr::OriginalName("POKEMON_CAPTURE")] PokemonCapture = 3, 45 | [pbr::OriginalName("NAME_SELECTION")] NameSelection = 4, 46 | [pbr::OriginalName("POKEMON_BERRY")] PokemonBerry = 5, 47 | [pbr::OriginalName("USE_ITEM")] UseItem = 6, 48 | [pbr::OriginalName("FIRST_TIME_EXPERIENCE_COMPLETE")] FirstTimeExperienceComplete = 7, 49 | [pbr::OriginalName("POKESTOP_TUTORIAL")] PokestopTutorial = 8, 50 | [pbr::OriginalName("GYM_TUTORIAL")] GymTutorial = 9, 51 | } 52 | 53 | #endregion 54 | 55 | } 56 | 57 | #endregion Designer generated code 58 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Enums/TutorialState.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d3191bd748500fb439cfb6d7e29fa3c1 3 | timeCreated: 1469376428 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Inventory.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7942ad98994e4ff43ac8d6080e8f0153 3 | folderAsset: yes 4 | timeCreated: 1469376424 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Inventory/AppliedItem.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e64e091b19ee01649beb8b58167a13ec 3 | timeCreated: 1469376429 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Inventory/AppliedItems.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b9721c8c3076aa44abbe604903f43505 3 | timeCreated: 1469376428 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Inventory/Candy.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d8ce610f3c1103643aa12da4e555791e 3 | timeCreated: 1469915986 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Inventory/EggIncubator.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 980606401d40c544c991929e9967916e 3 | timeCreated: 1469376427 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Inventory/EggIncubatorType.cs: -------------------------------------------------------------------------------- 1 | // Generated by the protocol buffer compiler. DO NOT EDIT! 2 | // source: POGOProtos/Inventory/EggIncubatorType.proto 3 | #pragma warning disable 1591, 0612, 3021 4 | #region Designer generated code 5 | 6 | using pb = global::Google.Protobuf; 7 | using pbc = global::Google.Protobuf.Collections; 8 | using pbr = global::Google.Protobuf.Reflection; 9 | using scg = global::System.Collections.Generic; 10 | namespace POGOProtos.Inventory { 11 | 12 | /// Holder for reflection information generated from POGOProtos/Inventory/EggIncubatorType.proto 13 | public static partial class EggIncubatorTypeReflection { 14 | 15 | #region Descriptor 16 | /// File descriptor for POGOProtos/Inventory/EggIncubatorType.proto 17 | public static pbr::FileDescriptor Descriptor { 18 | get { return descriptor; } 19 | } 20 | private static pbr::FileDescriptor descriptor; 21 | 22 | static EggIncubatorTypeReflection() { 23 | byte[] descriptorData = global::System.Convert.FromBase64String( 24 | string.Concat( 25 | "CitQT0dPUHJvdG9zL0ludmVudG9yeS9FZ2dJbmN1YmF0b3JUeXBlLnByb3Rv", 26 | "EhRQT0dPUHJvdG9zLkludmVudG9yeSo/ChBFZ2dJbmN1YmF0b3JUeXBlEhMK", 27 | "D0lOQ1VCQVRPUl9VTlNFVBAAEhYKEklOQ1VCQVRPUl9ESVNUQU5DRRABYgZw", 28 | "cm90bzM=")); 29 | descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, 30 | new pbr::FileDescriptor[] { }, 31 | new pbr::GeneratedClrTypeInfo(new[] {typeof(global::POGOProtos.Inventory.EggIncubatorType), }, null)); 32 | } 33 | #endregion 34 | 35 | } 36 | #region Enums 37 | public enum EggIncubatorType { 38 | [pbr::OriginalName("INCUBATOR_UNSET")] IncubatorUnset = 0, 39 | [pbr::OriginalName("INCUBATOR_DISTANCE")] IncubatorDistance = 1, 40 | } 41 | 42 | #endregion 43 | 44 | } 45 | 46 | #endregion Designer generated code 47 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Inventory/EggIncubatorType.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 69bac786c28a5ab4b80c5e6b8ff21b46 3 | timeCreated: 1469376426 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Inventory/EggIncubators.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9d715625836125341a1b22fcb4dfb9fe 3 | timeCreated: 1469376427 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Inventory/InventoryDelta.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 20eab91f0e84f3a4db80348450239c8a 3 | timeCreated: 1469376425 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Inventory/InventoryItem.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6f2337c0fbb858940a31a0edc8b13534 3 | timeCreated: 1469376426 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Inventory/InventoryItemData.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 73e2707d27e261341a21583dbd3c0c49 3 | timeCreated: 1469376426 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Inventory/InventoryUpgrade.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 754322c623a7e014f90bd11542d9c741 3 | timeCreated: 1469376426 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Inventory/InventoryUpgradeType.cs: -------------------------------------------------------------------------------- 1 | // Generated by the protocol buffer compiler. DO NOT EDIT! 2 | // source: POGOProtos/Inventory/InventoryUpgradeType.proto 3 | #pragma warning disable 1591, 0612, 3021 4 | #region Designer generated code 5 | 6 | using pb = global::Google.Protobuf; 7 | using pbc = global::Google.Protobuf.Collections; 8 | using pbr = global::Google.Protobuf.Reflection; 9 | using scg = global::System.Collections.Generic; 10 | namespace POGOProtos.Inventory { 11 | 12 | /// Holder for reflection information generated from POGOProtos/Inventory/InventoryUpgradeType.proto 13 | public static partial class InventoryUpgradeTypeReflection { 14 | 15 | #region Descriptor 16 | /// File descriptor for POGOProtos/Inventory/InventoryUpgradeType.proto 17 | public static pbr::FileDescriptor Descriptor { 18 | get { return descriptor; } 19 | } 20 | private static pbr::FileDescriptor descriptor; 21 | 22 | static InventoryUpgradeTypeReflection() { 23 | byte[] descriptorData = global::System.Convert.FromBase64String( 24 | string.Concat( 25 | "Ci9QT0dPUHJvdG9zL0ludmVudG9yeS9JbnZlbnRvcnlVcGdyYWRlVHlwZS5w", 26 | "cm90bxIUUE9HT1Byb3Rvcy5JbnZlbnRvcnkqYgoUSW52ZW50b3J5VXBncmFk", 27 | "ZVR5cGUSEQoNVVBHUkFERV9VTlNFVBAAEhkKFUlOQ1JFQVNFX0lURU1fU1RP", 28 | "UkFHRRABEhwKGElOQ1JFQVNFX1BPS0VNT05fU1RPUkFHRRACYgZwcm90bzM=")); 29 | descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, 30 | new pbr::FileDescriptor[] { }, 31 | new pbr::GeneratedClrTypeInfo(new[] {typeof(global::POGOProtos.Inventory.InventoryUpgradeType), }, null)); 32 | } 33 | #endregion 34 | 35 | } 36 | #region Enums 37 | public enum InventoryUpgradeType { 38 | [pbr::OriginalName("UPGRADE_UNSET")] UpgradeUnset = 0, 39 | [pbr::OriginalName("INCREASE_ITEM_STORAGE")] IncreaseItemStorage = 1, 40 | [pbr::OriginalName("INCREASE_POKEMON_STORAGE")] IncreasePokemonStorage = 2, 41 | } 42 | 43 | #endregion 44 | 45 | } 46 | 47 | #endregion Designer generated code 48 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Inventory/InventoryUpgradeType.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e767e98495b131f449f1a6a889afa12d 3 | timeCreated: 1469376429 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Inventory/InventoryUpgrades.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4093e951e0ca02346bfd7ad89de89ad0 3 | timeCreated: 1469376425 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Inventory/Item.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 38d0823613d0d3f4987f0ff22d1572a6 3 | folderAsset: yes 4 | timeCreated: 1469376424 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Inventory/Item/ItemAward.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9a48349f15828e44087f8f580023b0f0 3 | timeCreated: 1469376427 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Inventory/Item/ItemData.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7974192a4eaa0bd418b4c90e50e78919 3 | timeCreated: 1469376426 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Inventory/Item/ItemId.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d9f059dc415199e498c2b1b6e28a14b7 3 | timeCreated: 1469376429 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Inventory/Item/ItemType.cs: -------------------------------------------------------------------------------- 1 | // Generated by the protocol buffer compiler. DO NOT EDIT! 2 | // source: POGOProtos/Inventory/Item/ItemType.proto 3 | #pragma warning disable 1591, 0612, 3021 4 | #region Designer generated code 5 | 6 | using pb = global::Google.Protobuf; 7 | using pbc = global::Google.Protobuf.Collections; 8 | using pbr = global::Google.Protobuf.Reflection; 9 | using scg = global::System.Collections.Generic; 10 | namespace POGOProtos.Inventory.Item { 11 | 12 | /// Holder for reflection information generated from POGOProtos/Inventory/Item/ItemType.proto 13 | public static partial class ItemTypeReflection { 14 | 15 | #region Descriptor 16 | /// File descriptor for POGOProtos/Inventory/Item/ItemType.proto 17 | public static pbr::FileDescriptor Descriptor { 18 | get { return descriptor; } 19 | } 20 | private static pbr::FileDescriptor descriptor; 21 | 22 | static ItemTypeReflection() { 23 | byte[] descriptorData = global::System.Convert.FromBase64String( 24 | string.Concat( 25 | "CihQT0dPUHJvdG9zL0ludmVudG9yeS9JdGVtL0l0ZW1UeXBlLnByb3RvEhlQ", 26 | "T0dPUHJvdG9zLkludmVudG9yeS5JdGVtKrICCghJdGVtVHlwZRISCg5JVEVN", 27 | "X1RZUEVfTk9ORRAAEhYKEklURU1fVFlQRV9QT0tFQkFMTBABEhQKEElURU1f", 28 | "VFlQRV9QT1RJT04QAhIUChBJVEVNX1RZUEVfUkVWSVZFEAMSEQoNSVRFTV9U", 29 | "WVBFX01BUBAEEhQKEElURU1fVFlQRV9CQVRUTEUQBRISCg5JVEVNX1RZUEVf", 30 | "Rk9PRBAGEhQKEElURU1fVFlQRV9DQU1FUkEQBxISCg5JVEVNX1RZUEVfRElT", 31 | "SxAIEhcKE0lURU1fVFlQRV9JTkNVQkFUT1IQCRIVChFJVEVNX1RZUEVfSU5D", 32 | "RU5TRRAKEhYKEklURU1fVFlQRV9YUF9CT09TVBALEh8KG0lURU1fVFlQRV9J", 33 | "TlZFTlRPUllfVVBHUkFERRAMYgZwcm90bzM=")); 34 | descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, 35 | new pbr::FileDescriptor[] { }, 36 | new pbr::GeneratedClrTypeInfo(new[] {typeof(global::POGOProtos.Inventory.Item.ItemType), }, null)); 37 | } 38 | #endregion 39 | 40 | } 41 | #region Enums 42 | public enum ItemType { 43 | [pbr::OriginalName("ITEM_TYPE_NONE")] None = 0, 44 | [pbr::OriginalName("ITEM_TYPE_POKEBALL")] Pokeball = 1, 45 | [pbr::OriginalName("ITEM_TYPE_POTION")] Potion = 2, 46 | [pbr::OriginalName("ITEM_TYPE_REVIVE")] Revive = 3, 47 | [pbr::OriginalName("ITEM_TYPE_MAP")] Map = 4, 48 | [pbr::OriginalName("ITEM_TYPE_BATTLE")] Battle = 5, 49 | [pbr::OriginalName("ITEM_TYPE_FOOD")] Food = 6, 50 | [pbr::OriginalName("ITEM_TYPE_CAMERA")] Camera = 7, 51 | [pbr::OriginalName("ITEM_TYPE_DISK")] Disk = 8, 52 | [pbr::OriginalName("ITEM_TYPE_INCUBATOR")] Incubator = 9, 53 | [pbr::OriginalName("ITEM_TYPE_INCENSE")] Incense = 10, 54 | [pbr::OriginalName("ITEM_TYPE_XP_BOOST")] XpBoost = 11, 55 | [pbr::OriginalName("ITEM_TYPE_INVENTORY_UPGRADE")] InventoryUpgrade = 12, 56 | } 57 | 58 | #endregion 59 | 60 | } 61 | 62 | #endregion Designer generated code 63 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Inventory/Item/ItemType.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2de1d6f7abe66c148880718c945d262b 3 | timeCreated: 1469376425 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Map.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ea182e848ef295c4995241752e3b934c 3 | folderAsset: yes 4 | timeCreated: 1469376424 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Map/Fort.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a0a406ed04934ed4c9c70a724e8de8de 3 | folderAsset: yes 4 | timeCreated: 1469376424 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Map/Fort/FortData.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dd1729d87803b8c4c99272da531352b5 3 | timeCreated: 1469376429 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Map/Fort/FortLureInfo.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 50f23e820f1c24e4887ff1f0b502ba16 3 | timeCreated: 1469376426 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Map/Fort/FortModifier.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 09c9d38da6fc79b4e91f3d936e3f6b5d 3 | timeCreated: 1469376425 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Map/Fort/FortRenderingType.cs: -------------------------------------------------------------------------------- 1 | // Generated by the protocol buffer compiler. DO NOT EDIT! 2 | // source: POGOProtos/Map/Fort/FortRenderingType.proto 3 | #pragma warning disable 1591, 0612, 3021 4 | #region Designer generated code 5 | 6 | using pb = global::Google.Protobuf; 7 | using pbc = global::Google.Protobuf.Collections; 8 | using pbr = global::Google.Protobuf.Reflection; 9 | using scg = global::System.Collections.Generic; 10 | namespace POGOProtos.Map.Fort { 11 | 12 | /// Holder for reflection information generated from POGOProtos/Map/Fort/FortRenderingType.proto 13 | public static partial class FortRenderingTypeReflection { 14 | 15 | #region Descriptor 16 | /// File descriptor for POGOProtos/Map/Fort/FortRenderingType.proto 17 | public static pbr::FileDescriptor Descriptor { 18 | get { return descriptor; } 19 | } 20 | private static pbr::FileDescriptor descriptor; 21 | 22 | static FortRenderingTypeReflection() { 23 | byte[] descriptorData = global::System.Convert.FromBase64String( 24 | string.Concat( 25 | "CitQT0dPUHJvdG9zL01hcC9Gb3J0L0ZvcnRSZW5kZXJpbmdUeXBlLnByb3Rv", 26 | "EhNQT0dPUHJvdG9zLk1hcC5Gb3J0KjMKEUZvcnRSZW5kZXJpbmdUeXBlEgsK", 27 | "B0RFRkFVTFQQABIRCg1JTlRFUk5BTF9URVNUEAFiBnByb3RvMw==")); 28 | descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, 29 | new pbr::FileDescriptor[] { }, 30 | new pbr::GeneratedClrTypeInfo(new[] {typeof(global::POGOProtos.Map.Fort.FortRenderingType), }, null)); 31 | } 32 | #endregion 33 | 34 | } 35 | #region Enums 36 | public enum FortRenderingType { 37 | [pbr::OriginalName("DEFAULT")] Default = 0, 38 | [pbr::OriginalName("INTERNAL_TEST")] InternalTest = 1, 39 | } 40 | 41 | #endregion 42 | 43 | } 44 | 45 | #endregion Designer generated code 46 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Map/Fort/FortRenderingType.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 71b225f27ca7e2a41b885b8ba50575bf 3 | timeCreated: 1469376426 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Map/Fort/FortSponsor.cs: -------------------------------------------------------------------------------- 1 | // Generated by the protocol buffer compiler. DO NOT EDIT! 2 | // source: POGOProtos/Map/Fort/FortSponsor.proto 3 | #pragma warning disable 1591, 0612, 3021 4 | #region Designer generated code 5 | 6 | using pb = global::Google.Protobuf; 7 | using pbc = global::Google.Protobuf.Collections; 8 | using pbr = global::Google.Protobuf.Reflection; 9 | using scg = global::System.Collections.Generic; 10 | namespace POGOProtos.Map.Fort { 11 | 12 | /// Holder for reflection information generated from POGOProtos/Map/Fort/FortSponsor.proto 13 | public static partial class FortSponsorReflection { 14 | 15 | #region Descriptor 16 | /// File descriptor for POGOProtos/Map/Fort/FortSponsor.proto 17 | public static pbr::FileDescriptor Descriptor { 18 | get { return descriptor; } 19 | } 20 | private static pbr::FileDescriptor descriptor; 21 | 22 | static FortSponsorReflection() { 23 | byte[] descriptorData = global::System.Convert.FromBase64String( 24 | string.Concat( 25 | "CiVQT0dPUHJvdG9zL01hcC9Gb3J0L0ZvcnRTcG9uc29yLnByb3RvEhNQT0dP", 26 | "UHJvdG9zLk1hcC5Gb3J0KkIKC0ZvcnRTcG9uc29yEhEKDVVOU0VUX1NQT05T", 27 | "T1IQABINCglNQ0RPTkFMRFMQARIRCg1QT0tFTU9OX1NUT1JFEAJiBnByb3Rv", 28 | "Mw==")); 29 | descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, 30 | new pbr::FileDescriptor[] { }, 31 | new pbr::GeneratedClrTypeInfo(new[] {typeof(global::POGOProtos.Map.Fort.FortSponsor), }, null)); 32 | } 33 | #endregion 34 | 35 | } 36 | #region Enums 37 | public enum FortSponsor { 38 | [pbr::OriginalName("UNSET_SPONSOR")] UnsetSponsor = 0, 39 | [pbr::OriginalName("MCDONALDS")] Mcdonalds = 1, 40 | [pbr::OriginalName("POKEMON_STORE")] PokemonStore = 2, 41 | } 42 | 43 | #endregion 44 | 45 | } 46 | 47 | #endregion Designer generated code 48 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Map/Fort/FortSponsor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4f0cd9e143b310746aa8515ba8a11a6a 3 | timeCreated: 1469376426 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Map/Fort/FortSummary.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 05348bf93a929a14394ac3b67c7a0968 3 | timeCreated: 1469376424 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Map/Fort/FortType.cs: -------------------------------------------------------------------------------- 1 | // Generated by the protocol buffer compiler. DO NOT EDIT! 2 | // source: POGOProtos/Map/Fort/FortType.proto 3 | #pragma warning disable 1591, 0612, 3021 4 | #region Designer generated code 5 | 6 | using pb = global::Google.Protobuf; 7 | using pbc = global::Google.Protobuf.Collections; 8 | using pbr = global::Google.Protobuf.Reflection; 9 | using scg = global::System.Collections.Generic; 10 | namespace POGOProtos.Map.Fort { 11 | 12 | /// Holder for reflection information generated from POGOProtos/Map/Fort/FortType.proto 13 | public static partial class FortTypeReflection { 14 | 15 | #region Descriptor 16 | /// File descriptor for POGOProtos/Map/Fort/FortType.proto 17 | public static pbr::FileDescriptor Descriptor { 18 | get { return descriptor; } 19 | } 20 | private static pbr::FileDescriptor descriptor; 21 | 22 | static FortTypeReflection() { 23 | byte[] descriptorData = global::System.Convert.FromBase64String( 24 | string.Concat( 25 | "CiJQT0dPUHJvdG9zL01hcC9Gb3J0L0ZvcnRUeXBlLnByb3RvEhNQT0dPUHJv", 26 | "dG9zLk1hcC5Gb3J0KiMKCEZvcnRUeXBlEgcKA0dZTRAAEg4KCkNIRUNLUE9J", 27 | "TlQQAWIGcHJvdG8z")); 28 | descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, 29 | new pbr::FileDescriptor[] { }, 30 | new pbr::GeneratedClrTypeInfo(new[] {typeof(global::POGOProtos.Map.Fort.FortType), }, null)); 31 | } 32 | #endregion 33 | 34 | } 35 | #region Enums 36 | public enum FortType { 37 | [pbr::OriginalName("GYM")] Gym = 0, 38 | [pbr::OriginalName("CHECKPOINT")] Checkpoint = 1, 39 | } 40 | 41 | #endregion 42 | 43 | } 44 | 45 | #endregion Designer generated code 46 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Map/Fort/FortType.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a0604bf2fe0d8ec4986a45bf90797946 3 | timeCreated: 1469376427 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Map/MapCell.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 051381f185b74754ca0e0cfd5713f1e2 3 | timeCreated: 1469376424 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Map/MapObjectsStatus.cs: -------------------------------------------------------------------------------- 1 | // Generated by the protocol buffer compiler. DO NOT EDIT! 2 | // source: POGOProtos/Map/MapObjectsStatus.proto 3 | #pragma warning disable 1591, 0612, 3021 4 | #region Designer generated code 5 | 6 | using pb = global::Google.Protobuf; 7 | using pbc = global::Google.Protobuf.Collections; 8 | using pbr = global::Google.Protobuf.Reflection; 9 | using scg = global::System.Collections.Generic; 10 | namespace POGOProtos.Map { 11 | 12 | /// Holder for reflection information generated from POGOProtos/Map/MapObjectsStatus.proto 13 | public static partial class MapObjectsStatusReflection { 14 | 15 | #region Descriptor 16 | /// File descriptor for POGOProtos/Map/MapObjectsStatus.proto 17 | public static pbr::FileDescriptor Descriptor { 18 | get { return descriptor; } 19 | } 20 | private static pbr::FileDescriptor descriptor; 21 | 22 | static MapObjectsStatusReflection() { 23 | byte[] descriptorData = global::System.Convert.FromBase64String( 24 | string.Concat( 25 | "CiVQT0dPUHJvdG9zL01hcC9NYXBPYmplY3RzU3RhdHVzLnByb3RvEg5QT0dP", 26 | "UHJvdG9zLk1hcCpFChBNYXBPYmplY3RzU3RhdHVzEhAKDFVOU0VUX1NUQVRV", 27 | "UxAAEgsKB1NVQ0NFU1MQARISCg5MT0NBVElPTl9VTlNFVBACYgZwcm90bzM=")); 28 | descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, 29 | new pbr::FileDescriptor[] { }, 30 | new pbr::GeneratedClrTypeInfo(new[] {typeof(global::POGOProtos.Map.MapObjectsStatus), }, null)); 31 | } 32 | #endregion 33 | 34 | } 35 | #region Enums 36 | public enum MapObjectsStatus { 37 | [pbr::OriginalName("UNSET_STATUS")] UnsetStatus = 0, 38 | [pbr::OriginalName("SUCCESS")] Success = 1, 39 | [pbr::OriginalName("LOCATION_UNSET")] LocationUnset = 2, 40 | } 41 | 42 | #endregion 43 | 44 | } 45 | 46 | #endregion Designer generated code 47 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Map/MapObjectsStatus.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f3c00d34965e750468f74fea7cbed408 3 | timeCreated: 1469376429 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Map/Pokemon.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 06efd0ad637259a4b821793edf51b82a 3 | folderAsset: yes 4 | timeCreated: 1469376424 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Map/Pokemon/MapPokemon.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5c1b5473e64651b47a82fd60fa0ad78a 3 | timeCreated: 1469376426 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Map/Pokemon/NearbyPokemon.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cb2403a0bd8047940a2b2524453b9d98 3 | timeCreated: 1469376428 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Map/Pokemon/WildPokemon.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4da37f666bcbc5a4aa758ea8456da180 3 | timeCreated: 1469376426 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Map/SpawnPoint.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b936415585250a84eaf8f71333ec2fa1 3 | timeCreated: 1469376428 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Networking.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 58ab12817a928604b8415b25cd248646 3 | folderAsset: yes 4 | timeCreated: 1469376424 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Networking/Envelopes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 18a2ab3ba28e9be4584226cd2f6c305b 3 | folderAsset: yes 4 | timeCreated: 1469376424 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Networking/Envelopes/AuthTicket.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9b1d1f1703bdb5b4f881e50ff147b45c 3 | timeCreated: 1469376427 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Networking/Envelopes/RequestEnvelope.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 669381046a566ce46bdd1a7bae9baa62 3 | timeCreated: 1469376426 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Networking/Envelopes/ResponseEnvelope.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 58bde95ddad7775449ec7ab4a153f47a 3 | timeCreated: 1469376426 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Networking/Envelopes/Unknown6.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3a68754ba6d5ec94abb050bb6c741aae 3 | timeCreated: 1469376425 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Networking/Envelopes/Unknown6Response.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: aa0da4a9faa491547b8207a83774e7e5 3 | timeCreated: 1469376427 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Networking/Requests.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9635a78e08641b345995f5ce8bbe52e0 3 | folderAsset: yes 4 | timeCreated: 1469376424 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Networking/Requests/Messages.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b43b5d3654b0ac44b8513ff57131b749 3 | folderAsset: yes 4 | timeCreated: 1469376424 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Networking/Requests/Messages/AddFortModifierMessage.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 13589cc2609ecae4881994bb8621b8e0 3 | timeCreated: 1469376425 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Networking/Requests/Messages/AttackGymMessage.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 95e1ecdbc8cf4ed4da09e35798ac314a 3 | timeCreated: 1469376427 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Networking/Requests/Messages/CatchPokemonMessage.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e731ac88a02bb544aa9ba326a8dc8c0e 3 | timeCreated: 1469376429 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Networking/Requests/Messages/CheckAwardedBadgesMessage.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 381d1912323e57941bb70299098b7090 3 | timeCreated: 1469376425 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Networking/Requests/Messages/CheckCodenameAvailableMessage.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a1c7a0c7548ff1544ba6788c7dbb0903 3 | timeCreated: 1469376427 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Networking/Requests/Messages/ClaimCodenameMessage.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d54fb0913d769c84a8ffcb3daf22eb5a 3 | timeCreated: 1469376428 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Networking/Requests/Messages/CollectDailyBonusMessage.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c7ad2873fc9fda042bb0e7207c9eb0a4 3 | timeCreated: 1469376428 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Networking/Requests/Messages/CollectDailyDefenderBonusMessage.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 84834e72192b2344eabc8cba9e17def5 3 | timeCreated: 1469376427 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Networking/Requests/Messages/DiskEncounterMessage.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 06622c33d03c1f24291f19dabd83aca5 3 | timeCreated: 1469376424 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Networking/Requests/Messages/DownloadItemTemplatesMessage.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a539629396239a74bb7aea4915889c73 3 | timeCreated: 1469376427 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Networking/Requests/Messages/DownloadRemoteConfigVersionMessage.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ce1406cdfdc88f7498aa3fdf192f006d 3 | timeCreated: 1469376428 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Networking/Requests/Messages/DownloadSettingsMessage.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 099b57288ca848e459a000517f16e4e5 3 | timeCreated: 1469376425 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Networking/Requests/Messages/EchoMessage.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d55818ee01266654498195864ebde082 3 | timeCreated: 1469376428 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Networking/Requests/Messages/EncounterMessage.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6461307feb2eebf4b8bb89ff37a917c5 3 | timeCreated: 1469376426 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Networking/Requests/Messages/EncounterTutorialCompleteMessage.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 60f990083342090429a070c95dc3ca84 3 | timeCreated: 1469376426 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Networking/Requests/Messages/EquipBadgeMessage.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b5c7a20b2faac2245bff9fa03c7f189c 3 | timeCreated: 1469376428 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Networking/Requests/Messages/EvolvePokemonMessage.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dd5c5b31ce0565b4dafeae5794021dcb 3 | timeCreated: 1469376429 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Networking/Requests/Messages/FortDeployPokemonMessage.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bda25d3929dde1c4ca81202406db16aa 3 | timeCreated: 1469376428 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Networking/Requests/Messages/FortDetailsMessage.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 20ee84eda99693141a24f0a9a04f0f22 3 | timeCreated: 1469376425 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Networking/Requests/Messages/FortRecallPokemonMessage.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 47fce221f225b0f4c9a7bc2b0306315b 3 | timeCreated: 1469376425 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Networking/Requests/Messages/FortSearchMessage.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4e155deaf14e3374ba3df5266e49acff 3 | timeCreated: 1469376426 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Networking/Requests/Messages/GetAssetDigestMessage.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cbd572aac4564ce4394b20c837f68bf5 3 | timeCreated: 1469376428 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Networking/Requests/Messages/GetDownloadUrlsMessage.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ce3ecaaaa799fe346899993cd484d190 3 | timeCreated: 1469376428 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Networking/Requests/Messages/GetGymDetailsMessage.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8d37e4fd2a14ac64f80b51579c452bff 3 | timeCreated: 1469376427 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Networking/Requests/Messages/GetHatchedEggsMessage.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4db51bd7b747b564db45084330a37b12 3 | timeCreated: 1469376426 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Networking/Requests/Messages/GetIncensePokemonMessage.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: da3430f420f97d04d8c9496049e80e22 3 | timeCreated: 1469376429 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Networking/Requests/Messages/GetInventoryMessage.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b09ff157eba424e4fa55048702a25722 3 | timeCreated: 1469376427 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Networking/Requests/Messages/GetMapObjectsMessage.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 55e6de2bec9a66e4d9e05d0c4550deb1 3 | timeCreated: 1469376426 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Networking/Requests/Messages/GetPlayerMessage.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ef4af0c9938558d4e96dda6d2e00b249 3 | timeCreated: 1469376429 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Networking/Requests/Messages/GetPlayerProfileMessage.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 211fb8094c345eb46a80317a7ef18e17 3 | timeCreated: 1469376425 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Networking/Requests/Messages/GetSuggestedCodenamesMessage.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3601f9015a9ff1548bd4aed183c1c61d 3 | timeCreated: 1469376425 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Networking/Requests/Messages/IncenseEncounterMessage.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d6552ad08d93cb243ae31106a2167a90 3 | timeCreated: 1469376429 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Networking/Requests/Messages/LevelUpRewardsMessage.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ed07e2fe68b242445a2a65660e317dbd 3 | timeCreated: 1469376429 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Networking/Requests/Messages/MarkTutorialCompleteMessage.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 285ab59be5dd9d14eb80776e367a0aad 3 | timeCreated: 1469376425 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Networking/Requests/Messages/NicknamePokemonMessage.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7931112c6b963f848a683a7b545d85d8 3 | timeCreated: 1469376426 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Networking/Requests/Messages/PlayerUpdateMessage.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f64f910dfa893544e8e50d83282ad1a3 3 | timeCreated: 1469376429 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Networking/Requests/Messages/RecycleInventoryItemMessage.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 687e62d1306d43e44be85f1e3b92c30a 3 | timeCreated: 1469376426 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Networking/Requests/Messages/ReleasePokemonMessage.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ea69a213941efa24fa6a49493ce651b5 3 | timeCreated: 1469376429 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Networking/Requests/Messages/SetAvatarMessage.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a91fc81aa40d4ec4a944a9bd95dde9c5 3 | timeCreated: 1469376427 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Networking/Requests/Messages/SetContactSettingsMessage.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 67bc82c682b006d4f81e82f6e50f1bba 3 | timeCreated: 1469376426 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Networking/Requests/Messages/SetFavoritePokemonMessage.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fe0d93855a4d3ad4eac7219662455eea 3 | timeCreated: 1469376429 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Networking/Requests/Messages/SetPlayerTeamMessage.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 31f375ec85a1f6e40a22f1cb40c9bdc3 3 | timeCreated: 1469376425 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Networking/Requests/Messages/SfidaActionLogMessage.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 096acd94ed22b8d48b6be3cb5838fdf0 3 | timeCreated: 1469376425 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Networking/Requests/Messages/StartGymBattleMessage.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8a15759dcc59a16469f0636ae3c0455b 3 | timeCreated: 1469376427 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Networking/Requests/Messages/UpgradePokemonMessage.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b58f23f7706ac264184611d5924ed596 3 | timeCreated: 1469376428 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Networking/Requests/Messages/UseIncenseMessage.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 755853232498c4946a9add6c29583d44 3 | timeCreated: 1469376426 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Networking/Requests/Messages/UseItemCaptureMessage.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: efe82f2862b6796458d693ae8c6a3a8d 3 | timeCreated: 1469376429 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Networking/Requests/Messages/UseItemEggIncubatorMessage.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ab3b61d4437aaa748aa1dec8500f7ed0 3 | timeCreated: 1469376427 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Networking/Requests/Messages/UseItemGymMessage.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8955a0d79a2bc5040bad658987a6f0f4 3 | timeCreated: 1469376427 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Networking/Requests/Messages/UseItemPotionMessage.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3cac6c45b7434354eaef8d1518792b08 3 | timeCreated: 1469376425 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Networking/Requests/Messages/UseItemReviveMessage.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 19e3e7f299abb3447be7fa7f17ab44d3 3 | timeCreated: 1469376425 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Networking/Requests/Messages/UseItemXpBoostMessage.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6a7bfb6450bddc6469d525ce38f13e81 3 | timeCreated: 1469376426 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Networking/Requests/Request.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0fe9957a84d62ee40be367fc59fe9dd3 3 | timeCreated: 1469376425 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Networking/Requests/RequestType.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 418be6361e84c6446816ba1f2ffa95bd 3 | timeCreated: 1469376425 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Networking/Responses.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0869d46dc2146794bb02b674361cfd27 3 | folderAsset: yes 4 | timeCreated: 1469376424 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Networking/Responses/AddFortModifierResponse.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 070939d8df08ed9478925a2efe9e62cc 3 | timeCreated: 1469376424 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Networking/Responses/AttackGymResponse.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b394f2495dc59d4488324533287ffa24 3 | timeCreated: 1469376427 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Networking/Responses/CatchPokemonResponse.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b710e2a6feb8a8b4ba09b587ef27c2be 3 | timeCreated: 1469376428 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Networking/Responses/CheckAwardedBadgesResponse.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2ba725dcfdc2bfc4a8527d4d7e3460bc 3 | timeCreated: 1469376425 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Networking/Responses/CheckCodenameAvailableResponse.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5b6af800811cf7d488d8216672bf91e7 3 | timeCreated: 1469376426 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Networking/Responses/ClaimCodenameResponse.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 92d4e1083d865a447a8ce7f95e3540fa 3 | timeCreated: 1469376427 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Networking/Responses/CollectDailyBonusResponse.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 19f2bb52aa67fd2429dab2d034ee5337 3 | timeCreated: 1469376425 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Networking/Responses/CollectDailyDefenderBonusResponse.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b92438044b3d162488971074d79a5e41 3 | timeCreated: 1469376428 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Networking/Responses/DiskEncounterResponse.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6a4bfd07c7dbd864094ebe5214b3e5c5 3 | timeCreated: 1469376426 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Networking/Responses/DownloadItemTemplatesResponse.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a46fbe62265225f44a02526ddc37b732 3 | timeCreated: 1469376427 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Networking/Responses/DownloadRemoteConfigVersionResponse.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b8bbb405f2c1dd54dae5f55be7834eff 3 | timeCreated: 1469376428 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Networking/Responses/DownloadSettingsResponse.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f3ffba9e088032a4ba50e211d36a37c1 3 | timeCreated: 1469376429 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Networking/Responses/EchoResponse.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 93b48b7a5187df04abdeb9f7c97fa144 3 | timeCreated: 1469376427 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Networking/Responses/EncounterResponse.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e66cf485246fe034a8f7e17fad106cd4 3 | timeCreated: 1469376429 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Networking/Responses/EncounterTutorialCompleteResponse.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 54b1b45b19a755b4d879261677534d06 3 | timeCreated: 1469376426 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Networking/Responses/EquipBadgeResponse.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4b3d60e46f688ff49812817319251289 3 | timeCreated: 1469376425 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Networking/Responses/EvolvePokemonResponse.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ae79d44cb1469a34cb648e7286e3525b 3 | timeCreated: 1469376427 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Networking/Responses/FortDeployPokemonResponse.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cbc2bf597161d6141892b2f44a8236f9 3 | timeCreated: 1469376428 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Networking/Responses/FortDetailsResponse.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d50bda1f4e5af8d45bb519283b1b8124 3 | timeCreated: 1469376428 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Networking/Responses/FortRecallPokemonResponse.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b6679de821f5463418830f990bda9854 3 | timeCreated: 1469376428 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Networking/Responses/FortSearchResponse.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 08b69de6c64dd1e429b6cdcc3355a006 3 | timeCreated: 1469376425 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Networking/Responses/GetAssetDigestResponse.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a3398dc2e63287b4499977b5cc66966c 3 | timeCreated: 1469376427 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Networking/Responses/GetDownloadUrlsResponse.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c8d2a49ea3f2e2d49bee90035b5c0ff9 3 | timeCreated: 1469376428 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Networking/Responses/GetGymDetailsResponse.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: de1a2a7c81fa9c54ea47b47a9d00abb8 3 | timeCreated: 1469376429 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Networking/Responses/GetHatchedEggsResponse.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e935486bd46072341956cfd919204ea0 3 | timeCreated: 1469376429 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Networking/Responses/GetIncensePokemonResponse.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f9faad8b3feb0824480b01ffabf48ca7 3 | timeCreated: 1469376429 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Networking/Responses/GetInventoryResponse.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f326407f4b579dd4b8b8b3f3c76b419f 3 | timeCreated: 1469376429 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Networking/Responses/GetMapObjectsResponse.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2e857dcb5da6aa14fac64059fce94ca0 3 | timeCreated: 1469376425 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Networking/Responses/GetPlayerProfileResponse.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e2628ca95075e8f4a82fa9126c42ec0f 3 | timeCreated: 1469376429 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Networking/Responses/GetPlayerResponse.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 81ad9c342c0999940b2eca57a69d6bee 3 | timeCreated: 1469376426 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Networking/Responses/GetSuggestedCodenamesResponse.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6b9e0e9d18c658e42a3ad00f2547af5e 3 | timeCreated: 1469376426 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Networking/Responses/IncenseEncounterResponse.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 756f585c347b9c94cacfddf5a5f8001f 3 | timeCreated: 1469376426 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Networking/Responses/LevelUpRewardsResponse.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: eca4f5714a789b2458795a08a8ba8e66 3 | timeCreated: 1469376429 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Networking/Responses/MarkTutorialCompleteResponse.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1a1dfbab8366b9f4db0913ef8e698ed2 3 | timeCreated: 1469376425 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Networking/Responses/NicknamePokemonResponse.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ba4b7d2193171b241b1f7ddda5708fbf 3 | timeCreated: 1469376428 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Networking/Responses/PlayerUpdateResponse.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dfc2d3b658405d642aabcb73c679dbf4 3 | timeCreated: 1469376429 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Networking/Responses/RecycleInventoryItemResponse.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a6f18a14521251447a9ba229e6839828 3 | timeCreated: 1469376427 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Networking/Responses/ReleasePokemonResponse.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e3c5fb6483bd8804cba317f3036e7d61 3 | timeCreated: 1469376429 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Networking/Responses/SetAvatarResponse.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ed9adc9c26676ce4a89607444eeef30c 3 | timeCreated: 1469376429 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Networking/Responses/SetContactSettingsResponse.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1cd90c42b23f84540b4880860d02a870 3 | timeCreated: 1469376425 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Networking/Responses/SetFavoritePokemonResponse.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fa96e1321a6f8ec4f9bb4700eced9f3a 3 | timeCreated: 1469376429 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Networking/Responses/SetPlayerTeamResponse.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 303c4da7e9ddb894e98694b401744f68 3 | timeCreated: 1469376425 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Networking/Responses/SfidaActionLogResponse.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 927cbb78f295199498da7446796779e9 3 | timeCreated: 1469376427 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Networking/Responses/StartGymBattleResponse.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bad629460cf4bdc4d87d607b79b0cc9a 3 | timeCreated: 1469376428 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Networking/Responses/UpgradePokemonResponse.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b7b8264f0104acd49ba6c0d983d101c0 3 | timeCreated: 1469376428 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Networking/Responses/UseIncenseResponse.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 02db8d38ea9103b47ac7ad2b7d60cc85 3 | timeCreated: 1469376424 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Networking/Responses/UseItemCaptureResponse.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ddf1474e4af94f44e9a2492d7273e696 3 | timeCreated: 1469376429 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Networking/Responses/UseItemEggIncubatorResponse.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: aaf79beef1d8c50409e20b031271f92e 3 | timeCreated: 1469376427 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Networking/Responses/UseItemGymResponse.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c6bc0533c4e02294cb0beade42ca61c2 3 | timeCreated: 1469376428 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Networking/Responses/UseItemPotionResponse.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 03f45bf62b93e894685731bbae32e965 3 | timeCreated: 1469376424 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Networking/Responses/UseItemReviveResponse.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cb60eb5262dd3494684fb7e3a051364b 3 | timeCreated: 1469376428 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Networking/Responses/UseItemXpBoostResponse.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a445bee621df9074ab0764bfc68d89fe 3 | timeCreated: 1469376427 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/POGOProtos.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c4b137ba0fc446f4b9e9191d53bf8fb7 3 | folderAsset: yes 4 | timeCreated: 1469916943 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/POGOProtos/POGOProtos/Data.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3bc1631619a8d814eacfc7cd0735c600 3 | folderAsset: yes 4 | timeCreated: 1469916943 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/POGOProtos/POGOProtos/Data/Battle.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a49dc2c5e84ee36478aa9cbc98d72970 3 | folderAsset: yes 4 | timeCreated: 1469916944 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/POGOProtos/POGOProtos/Data/Capture.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 07e533f36a19fbd4e9a52ce522b91abe 3 | folderAsset: yes 4 | timeCreated: 1469916944 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/POGOProtos/POGOProtos/Data/Gym.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a4e9bbdf858f1c84882550fadf82eeb1 3 | folderAsset: yes 4 | timeCreated: 1469916944 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/POGOProtos/POGOProtos/Data/Logs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: af059d85a7ac04348a02bb20a7b3db4f 3 | folderAsset: yes 4 | timeCreated: 1469916944 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/POGOProtos/POGOProtos/Data/Player.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c6238f6be26a5a3458801b9593effb90 3 | folderAsset: yes 4 | timeCreated: 1469916944 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/POGOProtos/POGOProtos/Enums.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a0d1feae16b6fcb4d9dcfdb1e80841cb 3 | folderAsset: yes 4 | timeCreated: 1469916943 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/POGOProtos/POGOProtos/Inventory.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 99b7c1a3bd5d1844d88dd685a139ad3f 3 | folderAsset: yes 4 | timeCreated: 1469916943 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/POGOProtos/POGOProtos/Inventory/Item.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5be5b9b0ea8320d44b9bc016ca406434 3 | folderAsset: yes 4 | timeCreated: 1469916944 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/POGOProtos/POGOProtos/Map.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: be58e53874b15a249b2b82ce7fa4ede5 3 | folderAsset: yes 4 | timeCreated: 1469916944 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/POGOProtos/POGOProtos/Map/Fort.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8be1a65c9d90c2740a172c55c66c5283 3 | folderAsset: yes 4 | timeCreated: 1469916944 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/POGOProtos/POGOProtos/Map/Pokemon.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8c8ae30af03084b4688d8a0b9cd31f10 3 | folderAsset: yes 4 | timeCreated: 1469916944 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/POGOProtos/POGOProtos/Networking.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 75f49426b04083242800573a1294d450 3 | folderAsset: yes 4 | timeCreated: 1469916943 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/POGOProtos/POGOProtos/Networking/Envelopes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7bcd1cf844c5ef24d983d0fcdc0b660f 3 | folderAsset: yes 4 | timeCreated: 1469916944 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/POGOProtos/POGOProtos/Networking/Requests.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8bc83243e6f4ad140b0ae5df303cbb3c 3 | folderAsset: yes 4 | timeCreated: 1469916944 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/POGOProtos/POGOProtos/Networking/Requests/Messages.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2dcb073c0759c5f48bd8ce684c4f6c58 3 | folderAsset: yes 4 | timeCreated: 1469916945 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/POGOProtos/POGOProtos/Networking/Responses.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4526cf6543da4324a8c667e92ea48f7b 3 | folderAsset: yes 4 | timeCreated: 1469916944 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/POGOProtos/POGOProtos/Settings.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 41266a05ed9c86e44a0e5342a90c4db8 3 | folderAsset: yes 4 | timeCreated: 1469916943 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/POGOProtos/POGOProtos/Settings/Master.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2240a6711874ca34baf5c11e042949ef 3 | folderAsset: yes 4 | timeCreated: 1469916944 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/POGOProtos/POGOProtos/Settings/Master/Item.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 692da25a58206764583bf480a6e10bc0 3 | folderAsset: yes 4 | timeCreated: 1469916945 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/POGOProtos/POGOProtos/Settings/Master/Pokemon.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d9c92a9c9c8f5344582c2d06a0616e0e 3 | folderAsset: yes 4 | timeCreated: 1469916945 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Settings.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 87fe49d4be1f6dc469f59a63598e254f 3 | folderAsset: yes 4 | timeCreated: 1469376424 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Settings/DownloadSettingsAction.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b188f061c76a40d47b7a21462f50ddcd 3 | timeCreated: 1469376427 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Settings/FortSettings.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 43538db221d1c9c49af5ccd4c483d5b2 3 | timeCreated: 1469376425 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Settings/GlobalSettings.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4c47ac9860935bb45aa627bfc0c19531 3 | timeCreated: 1469376426 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Settings/InventorySettings.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5efd0d51392146a469b4b7cf30eb29da 3 | timeCreated: 1469376426 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Settings/LevelSettings.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 30b60b2f06e11e847a935ad9b7c0a69b 3 | timeCreated: 1469376425 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Settings/MapSettings.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 05c65c65b9010c04b9489ba212b5b693 3 | timeCreated: 1469376424 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Settings/Master.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0c93c5ae776aa6047ac5f4e2921cf404 3 | folderAsset: yes 4 | timeCreated: 1469376424 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Settings/Master/BadgeSettings.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 15930eb3fc2a9a34fa33c2baa3dcd04d 3 | timeCreated: 1469376425 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Settings/Master/CameraSettings.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bfb06f248cfcef94f90da96f8d9ac412 3 | timeCreated: 1469376428 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Settings/Master/EncounterSettings.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d523b72a80b802b4d9bf6499ede1ce27 3 | timeCreated: 1469376428 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Settings/Master/EquippedBadgeSettings.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0f8d26d5ec47a1b4899cf6ddd86d8070 3 | timeCreated: 1469376425 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Settings/Master/GymBattleSettings.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 172387253d4c4284fb46f599f355b754 3 | timeCreated: 1469376425 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Settings/Master/GymLevelSettings.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c528d534005b262458a6f5a99e4563a4 3 | timeCreated: 1469376428 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Settings/Master/IapItemDisplay.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a038db58e952ed44fb1a68b4c9f0dc39 3 | timeCreated: 1469376427 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Settings/Master/IapSettings.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d27c57d8e2700e44da3e4e5fa6006dc9 3 | timeCreated: 1469376428 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Settings/Master/Item.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b49dee4c8a857544ba47cfefe04d13fb 3 | folderAsset: yes 4 | timeCreated: 1469376424 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Settings/Master/Item/BattleAttributes.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: af92b1b17bc5ddb4a9274331ae850e31 3 | timeCreated: 1469376427 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Settings/Master/Item/EggIncubatorAttributes.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c786792e556a3b94eb385a408a15e800 3 | timeCreated: 1469376428 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Settings/Master/Item/ExperienceBoostAttributes.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2cef8d597abd39546be25bbfbe295414 3 | timeCreated: 1469376425 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Settings/Master/Item/FoodAttributes.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f83cdb2383640cc489a253ac9e56a184 3 | timeCreated: 1469376429 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Settings/Master/Item/FortModifierAttributes.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fd3fcd39e314b0e4c9c4f479d94332a1 3 | timeCreated: 1469376429 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Settings/Master/Item/IncenseAttributes.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4e29b021786c4e148a9f8c6d6008d52a 3 | timeCreated: 1469376426 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Settings/Master/Item/InventoryUpgradeAttributes.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1d2af84dcb529794b93753adec9f88ef 3 | timeCreated: 1469376425 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Settings/Master/Item/PokeballAttributes.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 69909ead364f59846b1891d7e2a7232f 3 | timeCreated: 1469376426 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Settings/Master/Item/PotionAttributes.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 658bd4962a40c3c4399372c673a92320 3 | timeCreated: 1469376426 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Settings/Master/Item/ReviveAttributes.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f88838b01dee20845a6629df7a216f55 3 | timeCreated: 1469376429 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Settings/Master/ItemSettings.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b0c7e417944cceb4c8ceea5dde5a33a9 3 | timeCreated: 1469376427 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Settings/Master/MoveSequenceSettings.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 37adfc903fa417a42bdd1cac9baf5f54 3 | timeCreated: 1469376425 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Settings/Master/MoveSettings.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dc76bfc1f4701014c89d11f96d1696f1 3 | timeCreated: 1469376429 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Settings/Master/PlayerLevelSettings.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bbc20d79d1e78604eb245a3185e05eb4 3 | timeCreated: 1469376428 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Settings/Master/Pokemon.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4e47403b828a16d4d8694b73c4254f9b 3 | folderAsset: yes 4 | timeCreated: 1469376424 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Settings/Master/Pokemon/CameraAttributes.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 57ab6f09279a462498b84051eee85cb0 3 | timeCreated: 1469376426 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Settings/Master/Pokemon/EncounterAttributes.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1721095af1c9f9b4ea45d8a5978536a7 3 | timeCreated: 1469376425 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Settings/Master/Pokemon/StatsAttributes.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d3bc805bdf9921f45a95ffd4a5273c03 3 | timeCreated: 1469376428 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Settings/Master/PokemonSettings.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ae9d467f1b92e604da29bce7c9b123aa 3 | timeCreated: 1469376427 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Settings/Master/PokemonUpgradeSettings.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c85864ec0a1d36a48864ccea5bda17a5 3 | timeCreated: 1469376428 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/POGOProtos/Settings/Master/TypeEffectiveSettings.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5165cfd2f49d7544da1c102405ab2464 3 | timeCreated: 1469376426 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/SimpleCoroutines.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bb798c3bb56f34142852ca11ebad070a 3 | folderAsset: yes 4 | timeCreated: 1469284452 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/SimpleCoroutines/Cancel.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | 3 | namespace SimpleCoroutines 4 | { 5 | public class Cancel : YieldInstruction 6 | { 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /Assets/SimpleCoroutines/Cancel.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c7403021215f4b2418aea24657778151 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/SimpleCoroutines/Coroutine.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections; 3 | 4 | namespace SimpleCoroutines 5 | { 6 | public class Coroutine 7 | { 8 | private String _id; 9 | private IEnumerator _block; 10 | private Boolean _canceled; 11 | 12 | public Coroutine(String id, IEnumerator block) 13 | { 14 | _id = id; 15 | _block = block; 16 | _canceled = false; 17 | } 18 | 19 | public void Cancel() 20 | { 21 | _canceled = true; 22 | } 23 | 24 | public bool IsCanceled() 25 | { 26 | return _canceled; 27 | } 28 | 29 | public void setCanceled(bool can) 30 | { 31 | _canceled = can; 32 | } 33 | 34 | public IEnumerator GetBlock() 35 | { 36 | return _block; 37 | } 38 | 39 | public String GetId() 40 | { 41 | return _id; 42 | } 43 | } 44 | } 45 | -------------------------------------------------------------------------------- /Assets/SimpleCoroutines/Coroutine.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1ec70dee068d2064bacc4c623ac479da 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/SimpleCoroutines/CoroutineManager.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: edb811f3cb4888a41b0b5556ef8f4d29 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/SimpleCoroutines/EnterBackground.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | 3 | namespace SimpleCoroutines 4 | { 5 | public class EnterBackground : YieldInstruction 6 | { 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /Assets/SimpleCoroutines/EnterBackground.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d2ac9f5e959e4dc45a672cc14baf5ab4 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/SimpleCoroutines/EnterForeground.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | 3 | namespace SimpleCoroutines 4 | { 5 | public class EnterForeground : YieldInstruction 6 | { 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /Assets/SimpleCoroutines/EnterForeground.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7048731b261c1e74e8d13b632176f406 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/Textures.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 59635e3e0b2322949b9011c5617878d0 3 | folderAsset: yes 4 | timeCreated: 1469737386 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Textures/atlas_logos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csnewman/PokemonGo-Desktop/7f3ad251809850f50697a8906154133996cc2947/Assets/Textures/atlas_logos.png -------------------------------------------------------------------------------- /Assets/Textures/team_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csnewman/PokemonGo-Desktop/7f3ad251809850f50697a8906154133996cc2947/Assets/Textures/team_blue.png -------------------------------------------------------------------------------- /Assets/Textures/team_blue.png.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d1ed071c8044f96428251a2d65025350 3 | timeCreated: 1469739136 4 | licenseType: Pro 5 | TextureImporter: 6 | fileIDToRecycleName: {} 7 | serializedVersion: 2 8 | mipmaps: 9 | mipMapMode: 0 10 | enableMipMap: 1 11 | linearTexture: 0 12 | correctGamma: 0 13 | fadeOut: 0 14 | borderMipMap: 0 15 | mipMapFadeDistanceStart: 1 16 | mipMapFadeDistanceEnd: 3 17 | bumpmap: 18 | convertToNormalMap: 0 19 | externalNormalMap: 0 20 | heightScale: 0.25 21 | normalMapFilter: 0 22 | isReadable: 0 23 | grayScaleToAlpha: 0 24 | generateCubemap: 0 25 | cubemapConvolution: 0 26 | cubemapConvolutionSteps: 7 27 | cubemapConvolutionExponent: 1.5 28 | seamlessCubemap: 0 29 | textureFormat: -1 30 | maxTextureSize: 2048 31 | textureSettings: 32 | filterMode: -1 33 | aniso: 16 34 | mipBias: -1 35 | wrapMode: 1 36 | nPOTScale: 0 37 | lightmap: 0 38 | rGBM: 0 39 | compressionQuality: 50 40 | allowsAlphaSplitting: 0 41 | spriteMode: 1 42 | spriteExtrude: 1 43 | spriteMeshType: 1 44 | alignment: 0 45 | spritePivot: {x: 0.5, y: 0.5} 46 | spriteBorder: {x: 0, y: 0, z: 0, w: 0} 47 | spritePixelsToUnits: 100 48 | alphaIsTransparency: 1 49 | textureType: 8 50 | buildTargetSettings: [] 51 | spriteSheet: 52 | sprites: [] 53 | outline: [] 54 | spritePackingTag: 55 | userData: 56 | assetBundleName: 57 | assetBundleVariant: 58 | -------------------------------------------------------------------------------- /Assets/Textures/team_none.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csnewman/PokemonGo-Desktop/7f3ad251809850f50697a8906154133996cc2947/Assets/Textures/team_none.png -------------------------------------------------------------------------------- /Assets/Textures/team_none.png.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 85825ec0328b6d54184c80c1a00b482e 3 | timeCreated: 1469737390 4 | licenseType: Pro 5 | TextureImporter: 6 | fileIDToRecycleName: {} 7 | serializedVersion: 2 8 | mipmaps: 9 | mipMapMode: 0 10 | enableMipMap: 1 11 | linearTexture: 0 12 | correctGamma: 0 13 | fadeOut: 0 14 | borderMipMap: 0 15 | mipMapFadeDistanceStart: 1 16 | mipMapFadeDistanceEnd: 3 17 | bumpmap: 18 | convertToNormalMap: 0 19 | externalNormalMap: 0 20 | heightScale: 0.25 21 | normalMapFilter: 0 22 | isReadable: 0 23 | grayScaleToAlpha: 0 24 | generateCubemap: 0 25 | cubemapConvolution: 0 26 | cubemapConvolutionSteps: 7 27 | cubemapConvolutionExponent: 1.5 28 | seamlessCubemap: 0 29 | textureFormat: -1 30 | maxTextureSize: 2048 31 | textureSettings: 32 | filterMode: -1 33 | aniso: 16 34 | mipBias: -1 35 | wrapMode: 1 36 | nPOTScale: 0 37 | lightmap: 0 38 | rGBM: 0 39 | compressionQuality: 50 40 | allowsAlphaSplitting: 0 41 | spriteMode: 1 42 | spriteExtrude: 1 43 | spriteMeshType: 1 44 | alignment: 0 45 | spritePivot: {x: 0.5, y: 0.5} 46 | spriteBorder: {x: 0, y: 0, z: 0, w: 0} 47 | spritePixelsToUnits: 100 48 | alphaIsTransparency: 1 49 | textureType: 8 50 | buildTargetSettings: [] 51 | spriteSheet: 52 | sprites: [] 53 | outline: [] 54 | spritePackingTag: 55 | userData: 56 | assetBundleName: 57 | assetBundleVariant: 58 | -------------------------------------------------------------------------------- /Assets/Textures/team_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csnewman/PokemonGo-Desktop/7f3ad251809850f50697a8906154133996cc2947/Assets/Textures/team_red.png -------------------------------------------------------------------------------- /Assets/Textures/team_red.png.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f42147e7296103d4db502456ba7d845e 3 | timeCreated: 1469739137 4 | licenseType: Pro 5 | TextureImporter: 6 | fileIDToRecycleName: {} 7 | serializedVersion: 2 8 | mipmaps: 9 | mipMapMode: 0 10 | enableMipMap: 1 11 | linearTexture: 0 12 | correctGamma: 0 13 | fadeOut: 0 14 | borderMipMap: 0 15 | mipMapFadeDistanceStart: 1 16 | mipMapFadeDistanceEnd: 3 17 | bumpmap: 18 | convertToNormalMap: 0 19 | externalNormalMap: 0 20 | heightScale: 0.25 21 | normalMapFilter: 0 22 | isReadable: 0 23 | grayScaleToAlpha: 0 24 | generateCubemap: 0 25 | cubemapConvolution: 0 26 | cubemapConvolutionSteps: 7 27 | cubemapConvolutionExponent: 1.5 28 | seamlessCubemap: 0 29 | textureFormat: -1 30 | maxTextureSize: 2048 31 | textureSettings: 32 | filterMode: -1 33 | aniso: 16 34 | mipBias: -1 35 | wrapMode: 1 36 | nPOTScale: 0 37 | lightmap: 0 38 | rGBM: 0 39 | compressionQuality: 50 40 | allowsAlphaSplitting: 0 41 | spriteMode: 1 42 | spriteExtrude: 1 43 | spriteMeshType: 1 44 | alignment: 0 45 | spritePivot: {x: 0.5, y: 0.5} 46 | spriteBorder: {x: 0, y: 0, z: 0, w: 0} 47 | spritePixelsToUnits: 100 48 | alphaIsTransparency: 1 49 | textureType: 8 50 | buildTargetSettings: [] 51 | spriteSheet: 52 | sprites: [] 53 | outline: [] 54 | spritePackingTag: 55 | userData: 56 | assetBundleName: 57 | assetBundleVariant: 58 | -------------------------------------------------------------------------------- /Assets/Textures/team_yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csnewman/PokemonGo-Desktop/7f3ad251809850f50697a8906154133996cc2947/Assets/Textures/team_yellow.png -------------------------------------------------------------------------------- /Assets/Textures/team_yellow.png.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8850c5f60c7daea4fb26e1c95e10c7c8 3 | timeCreated: 1469739136 4 | licenseType: Pro 5 | TextureImporter: 6 | fileIDToRecycleName: {} 7 | serializedVersion: 2 8 | mipmaps: 9 | mipMapMode: 0 10 | enableMipMap: 1 11 | linearTexture: 0 12 | correctGamma: 0 13 | fadeOut: 0 14 | borderMipMap: 0 15 | mipMapFadeDistanceStart: 1 16 | mipMapFadeDistanceEnd: 3 17 | bumpmap: 18 | convertToNormalMap: 0 19 | externalNormalMap: 0 20 | heightScale: 0.25 21 | normalMapFilter: 0 22 | isReadable: 0 23 | grayScaleToAlpha: 0 24 | generateCubemap: 0 25 | cubemapConvolution: 0 26 | cubemapConvolutionSteps: 7 27 | cubemapConvolutionExponent: 1.5 28 | seamlessCubemap: 0 29 | textureFormat: -1 30 | maxTextureSize: 2048 31 | textureSettings: 32 | filterMode: -1 33 | aniso: 16 34 | mipBias: -1 35 | wrapMode: 1 36 | nPOTScale: 0 37 | lightmap: 0 38 | rGBM: 0 39 | compressionQuality: 50 40 | allowsAlphaSplitting: 0 41 | spriteMode: 1 42 | spriteExtrude: 1 43 | spriteMeshType: 1 44 | alignment: 0 45 | spritePivot: {x: 0.5, y: 0.5} 46 | spriteBorder: {x: 0, y: 0, z: 0, w: 0} 47 | spritePixelsToUnits: 100 48 | alphaIsTransparency: 1 49 | textureType: 8 50 | buildTargetSettings: [] 51 | spriteSheet: 52 | sprites: [] 53 | outline: [] 54 | spritePackingTag: 55 | userData: 56 | assetBundleName: 57 | assetBundleVariant: 58 | -------------------------------------------------------------------------------- /Assets/Textures/tile_loading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csnewman/PokemonGo-Desktop/7f3ad251809850f50697a8906154133996cc2947/Assets/Textures/tile_loading.png -------------------------------------------------------------------------------- /Assets/Textures/tile_loading.png.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ca2b94c9c7b4a8d488d255ee3d2866cf 3 | timeCreated: 1469892986 4 | licenseType: Pro 5 | TextureImporter: 6 | fileIDToRecycleName: {} 7 | serializedVersion: 2 8 | mipmaps: 9 | mipMapMode: 0 10 | enableMipMap: 1 11 | linearTexture: 0 12 | correctGamma: 0 13 | fadeOut: 0 14 | borderMipMap: 0 15 | mipMapFadeDistanceStart: 1 16 | mipMapFadeDistanceEnd: 3 17 | bumpmap: 18 | convertToNormalMap: 0 19 | externalNormalMap: 0 20 | heightScale: 0.25 21 | normalMapFilter: 0 22 | isReadable: 0 23 | grayScaleToAlpha: 0 24 | generateCubemap: 0 25 | cubemapConvolution: 0 26 | cubemapConvolutionSteps: 7 27 | cubemapConvolutionExponent: 1.5 28 | seamlessCubemap: 0 29 | textureFormat: -1 30 | maxTextureSize: 2048 31 | textureSettings: 32 | filterMode: -1 33 | aniso: -1 34 | mipBias: -1 35 | wrapMode: -1 36 | nPOTScale: 1 37 | lightmap: 0 38 | rGBM: 0 39 | compressionQuality: 50 40 | allowsAlphaSplitting: 0 41 | spriteMode: 0 42 | spriteExtrude: 1 43 | spriteMeshType: 1 44 | alignment: 0 45 | spritePivot: {x: 0.5, y: 0.5} 46 | spriteBorder: {x: 0, y: 0, z: 0, w: 0} 47 | spritePixelsToUnits: 100 48 | alphaIsTransparency: 0 49 | textureType: -1 50 | buildTargetSettings: [] 51 | spriteSheet: 52 | sprites: [] 53 | outline: [] 54 | spritePackingTag: 55 | userData: 56 | assetBundleName: 57 | assetBundleVariant: 58 | -------------------------------------------------------------------------------- /Assets/Textures/ui_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csnewman/PokemonGo-Desktop/7f3ad251809850f50697a8906154133996cc2947/Assets/Textures/ui_background.png -------------------------------------------------------------------------------- /Assets/Textures/ui_background.png.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d8083e728bf26444c8333424ca818dd6 3 | timeCreated: 1469738144 4 | licenseType: Pro 5 | TextureImporter: 6 | fileIDToRecycleName: {} 7 | serializedVersion: 2 8 | mipmaps: 9 | mipMapMode: 0 10 | enableMipMap: 1 11 | linearTexture: 0 12 | correctGamma: 0 13 | fadeOut: 0 14 | borderMipMap: 0 15 | mipMapFadeDistanceStart: 1 16 | mipMapFadeDistanceEnd: 3 17 | bumpmap: 18 | convertToNormalMap: 0 19 | externalNormalMap: 0 20 | heightScale: 0.25 21 | normalMapFilter: 0 22 | isReadable: 0 23 | grayScaleToAlpha: 0 24 | generateCubemap: 0 25 | cubemapConvolution: 0 26 | cubemapConvolutionSteps: 7 27 | cubemapConvolutionExponent: 1.5 28 | seamlessCubemap: 0 29 | textureFormat: -1 30 | maxTextureSize: 2048 31 | textureSettings: 32 | filterMode: -1 33 | aniso: 16 34 | mipBias: -1 35 | wrapMode: 1 36 | nPOTScale: 0 37 | lightmap: 0 38 | rGBM: 0 39 | compressionQuality: 50 40 | allowsAlphaSplitting: 0 41 | spriteMode: 1 42 | spriteExtrude: 1 43 | spriteMeshType: 1 44 | alignment: 0 45 | spritePivot: {x: 0.5, y: 0.5} 46 | spriteBorder: {x: 0, y: 0, z: 0, w: 0} 47 | spritePixelsToUnits: 100 48 | alphaIsTransparency: 1 49 | textureType: 8 50 | buildTargetSettings: [] 51 | spriteSheet: 52 | sprites: [] 53 | outline: [] 54 | spritePackingTag: 55 | userData: 56 | assetBundleName: 57 | assetBundleVariant: 58 | -------------------------------------------------------------------------------- /Assets/Textures/ui_bg_green_bars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csnewman/PokemonGo-Desktop/7f3ad251809850f50697a8906154133996cc2947/Assets/Textures/ui_bg_green_bars.png -------------------------------------------------------------------------------- /Assets/Textures/ui_bg_green_bars.png.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 874979c0107381d46adb2176d957156c 3 | timeCreated: 1469737905 4 | licenseType: Pro 5 | TextureImporter: 6 | fileIDToRecycleName: {} 7 | serializedVersion: 2 8 | mipmaps: 9 | mipMapMode: 0 10 | enableMipMap: 1 11 | linearTexture: 0 12 | correctGamma: 0 13 | fadeOut: 0 14 | borderMipMap: 0 15 | mipMapFadeDistanceStart: 1 16 | mipMapFadeDistanceEnd: 3 17 | bumpmap: 18 | convertToNormalMap: 0 19 | externalNormalMap: 0 20 | heightScale: 0.25 21 | normalMapFilter: 0 22 | isReadable: 0 23 | grayScaleToAlpha: 0 24 | generateCubemap: 0 25 | cubemapConvolution: 0 26 | cubemapConvolutionSteps: 7 27 | cubemapConvolutionExponent: 1.5 28 | seamlessCubemap: 0 29 | textureFormat: -1 30 | maxTextureSize: 2048 31 | textureSettings: 32 | filterMode: -1 33 | aniso: 16 34 | mipBias: -1 35 | wrapMode: 1 36 | nPOTScale: 0 37 | lightmap: 0 38 | rGBM: 0 39 | compressionQuality: 50 40 | allowsAlphaSplitting: 0 41 | spriteMode: 1 42 | spriteExtrude: 1 43 | spriteMeshType: 1 44 | alignment: 0 45 | spritePivot: {x: 0.5, y: 0.5} 46 | spriteBorder: {x: 0, y: 0, z: 0, w: 0} 47 | spritePixelsToUnits: 100 48 | alphaIsTransparency: 1 49 | textureType: 8 50 | buildTargetSettings: [] 51 | spriteSheet: 52 | sprites: [] 53 | outline: [] 54 | spritePackingTag: 55 | userData: 56 | assetBundleName: 57 | assetBundleVariant: 58 | -------------------------------------------------------------------------------- /Assets/Textures/ui_bg_green_fade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csnewman/PokemonGo-Desktop/7f3ad251809850f50697a8906154133996cc2947/Assets/Textures/ui_bg_green_fade.png -------------------------------------------------------------------------------- /Assets/Textures/ui_bg_green_fade.png.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 979a12bf8322fa44fb7dc69b846715a8 3 | timeCreated: 1469738036 4 | licenseType: Pro 5 | TextureImporter: 6 | fileIDToRecycleName: {} 7 | serializedVersion: 2 8 | mipmaps: 9 | mipMapMode: 0 10 | enableMipMap: 1 11 | linearTexture: 0 12 | correctGamma: 0 13 | fadeOut: 0 14 | borderMipMap: 0 15 | mipMapFadeDistanceStart: 1 16 | mipMapFadeDistanceEnd: 3 17 | bumpmap: 18 | convertToNormalMap: 0 19 | externalNormalMap: 0 20 | heightScale: 0.25 21 | normalMapFilter: 0 22 | isReadable: 0 23 | grayScaleToAlpha: 0 24 | generateCubemap: 0 25 | cubemapConvolution: 0 26 | cubemapConvolutionSteps: 7 27 | cubemapConvolutionExponent: 1.5 28 | seamlessCubemap: 0 29 | textureFormat: -1 30 | maxTextureSize: 2048 31 | textureSettings: 32 | filterMode: -1 33 | aniso: 16 34 | mipBias: -1 35 | wrapMode: 1 36 | nPOTScale: 0 37 | lightmap: 0 38 | rGBM: 0 39 | compressionQuality: 50 40 | allowsAlphaSplitting: 0 41 | spriteMode: 1 42 | spriteExtrude: 1 43 | spriteMeshType: 1 44 | alignment: 0 45 | spritePivot: {x: 0.5, y: 0.5} 46 | spriteBorder: {x: 0, y: 0, z: 0, w: 0} 47 | spritePixelsToUnits: 100 48 | alphaIsTransparency: 1 49 | textureType: 8 50 | buildTargetSettings: [] 51 | spriteSheet: 52 | sprites: [] 53 | outline: [] 54 | spritePackingTag: 55 | userData: 56 | assetBundleName: 57 | assetBundleVariant: 58 | -------------------------------------------------------------------------------- /Assets/Textures/ui_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csnewman/PokemonGo-Desktop/7f3ad251809850f50697a8906154133996cc2947/Assets/Textures/ui_button.png -------------------------------------------------------------------------------- /Assets/Textures/ui_button.png.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1ac2ba1c3e345154da0100aa76fa470b 3 | timeCreated: 1469741733 4 | licenseType: Pro 5 | TextureImporter: 6 | fileIDToRecycleName: {} 7 | serializedVersion: 2 8 | mipmaps: 9 | mipMapMode: 0 10 | enableMipMap: 0 11 | linearTexture: 0 12 | correctGamma: 0 13 | fadeOut: 0 14 | borderMipMap: 0 15 | mipMapFadeDistanceStart: 1 16 | mipMapFadeDistanceEnd: 3 17 | bumpmap: 18 | convertToNormalMap: 0 19 | externalNormalMap: 0 20 | heightScale: 0.25 21 | normalMapFilter: 0 22 | isReadable: 0 23 | grayScaleToAlpha: 0 24 | generateCubemap: 0 25 | cubemapConvolution: 0 26 | cubemapConvolutionSteps: 7 27 | cubemapConvolutionExponent: 1.5 28 | seamlessCubemap: 0 29 | textureFormat: -1 30 | maxTextureSize: 2048 31 | textureSettings: 32 | filterMode: 2 33 | aniso: 16 34 | mipBias: -1 35 | wrapMode: 1 36 | nPOTScale: 0 37 | lightmap: 0 38 | rGBM: 0 39 | compressionQuality: 50 40 | allowsAlphaSplitting: 0 41 | spriteMode: 1 42 | spriteExtrude: 1 43 | spriteMeshType: 1 44 | alignment: 0 45 | spritePivot: {x: 0.5, y: 0.5} 46 | spriteBorder: {x: 30, y: 30, z: 30, w: 30} 47 | spritePixelsToUnits: 100 48 | alphaIsTransparency: 1 49 | textureType: 8 50 | buildTargetSettings: [] 51 | spriteSheet: 52 | sprites: [] 53 | outline: [] 54 | spritePackingTag: 55 | userData: 56 | assetBundleName: 57 | assetBundleVariant: 58 | -------------------------------------------------------------------------------- /Assets/Textures/ui_coin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csnewman/PokemonGo-Desktop/7f3ad251809850f50697a8906154133996cc2947/Assets/Textures/ui_coin.png -------------------------------------------------------------------------------- /Assets/Textures/ui_coin.png.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c986cb516e678534e9ccde6f33dbbcc2 3 | timeCreated: 1469739270 4 | licenseType: Pro 5 | TextureImporter: 6 | fileIDToRecycleName: {} 7 | serializedVersion: 2 8 | mipmaps: 9 | mipMapMode: 0 10 | enableMipMap: 1 11 | linearTexture: 0 12 | correctGamma: 0 13 | fadeOut: 0 14 | borderMipMap: 0 15 | mipMapFadeDistanceStart: 1 16 | mipMapFadeDistanceEnd: 3 17 | bumpmap: 18 | convertToNormalMap: 0 19 | externalNormalMap: 0 20 | heightScale: 0.25 21 | normalMapFilter: 0 22 | isReadable: 0 23 | grayScaleToAlpha: 0 24 | generateCubemap: 0 25 | cubemapConvolution: 0 26 | cubemapConvolutionSteps: 7 27 | cubemapConvolutionExponent: 1.5 28 | seamlessCubemap: 0 29 | textureFormat: -1 30 | maxTextureSize: 2048 31 | textureSettings: 32 | filterMode: -1 33 | aniso: 16 34 | mipBias: -1 35 | wrapMode: 1 36 | nPOTScale: 0 37 | lightmap: 0 38 | rGBM: 0 39 | compressionQuality: 50 40 | allowsAlphaSplitting: 0 41 | spriteMode: 1 42 | spriteExtrude: 1 43 | spriteMeshType: 1 44 | alignment: 0 45 | spritePivot: {x: 0.5, y: 0.5} 46 | spriteBorder: {x: 0, y: 0, z: 0, w: 0} 47 | spritePixelsToUnits: 100 48 | alphaIsTransparency: 1 49 | textureType: 8 50 | buildTargetSettings: [] 51 | spriteSheet: 52 | sprites: [] 53 | outline: [] 54 | spritePackingTag: 55 | userData: 56 | assetBundleName: 57 | assetBundleVariant: 58 | -------------------------------------------------------------------------------- /Assets/Textures/ui_player_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csnewman/PokemonGo-Desktop/7f3ad251809850f50697a8906154133996cc2947/Assets/Textures/ui_player_arrow.png -------------------------------------------------------------------------------- /Assets/Textures/ui_player_arrow.png.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b0b6cd4aae86ad442a28c5612e28dec4 3 | timeCreated: 1469914086 4 | licenseType: Pro 5 | TextureImporter: 6 | fileIDToRecycleName: {} 7 | serializedVersion: 2 8 | mipmaps: 9 | mipMapMode: 0 10 | enableMipMap: 1 11 | linearTexture: 0 12 | correctGamma: 0 13 | fadeOut: 0 14 | borderMipMap: 0 15 | mipMapFadeDistanceStart: 1 16 | mipMapFadeDistanceEnd: 3 17 | bumpmap: 18 | convertToNormalMap: 0 19 | externalNormalMap: 0 20 | heightScale: 0.25 21 | normalMapFilter: 0 22 | isReadable: 0 23 | grayScaleToAlpha: 0 24 | generateCubemap: 0 25 | cubemapConvolution: 0 26 | cubemapConvolutionSteps: 7 27 | cubemapConvolutionExponent: 1.5 28 | seamlessCubemap: 0 29 | textureFormat: -1 30 | maxTextureSize: 2048 31 | textureSettings: 32 | filterMode: 2 33 | aniso: 16 34 | mipBias: -1 35 | wrapMode: 1 36 | nPOTScale: 0 37 | lightmap: 0 38 | rGBM: 0 39 | compressionQuality: 50 40 | allowsAlphaSplitting: 0 41 | spriteMode: 1 42 | spriteExtrude: 1 43 | spriteMeshType: 1 44 | alignment: 0 45 | spritePivot: {x: 0.5, y: 0.5} 46 | spriteBorder: {x: 0, y: 0, z: 0, w: 0} 47 | spritePixelsToUnits: 100 48 | alphaIsTransparency: 1 49 | textureType: 8 50 | buildTargetSettings: [] 51 | spriteSheet: 52 | sprites: [] 53 | outline: [] 54 | spritePackingTag: 55 | userData: 56 | assetBundleName: 57 | assetBundleVariant: 58 | -------------------------------------------------------------------------------- /Assets/Textures/ui_stardust.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csnewman/PokemonGo-Desktop/7f3ad251809850f50697a8906154133996cc2947/Assets/Textures/ui_stardust.png -------------------------------------------------------------------------------- /Assets/Textures/ui_stardust.png.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4eb1a5b5fb957a64291c3dd2c2d36293 3 | timeCreated: 1469739560 4 | licenseType: Pro 5 | TextureImporter: 6 | fileIDToRecycleName: {} 7 | serializedVersion: 2 8 | mipmaps: 9 | mipMapMode: 0 10 | enableMipMap: 1 11 | linearTexture: 0 12 | correctGamma: 0 13 | fadeOut: 0 14 | borderMipMap: 0 15 | mipMapFadeDistanceStart: 1 16 | mipMapFadeDistanceEnd: 3 17 | bumpmap: 18 | convertToNormalMap: 0 19 | externalNormalMap: 0 20 | heightScale: 0.25 21 | normalMapFilter: 0 22 | isReadable: 0 23 | grayScaleToAlpha: 0 24 | generateCubemap: 0 25 | cubemapConvolution: 0 26 | cubemapConvolutionSteps: 7 27 | cubemapConvolutionExponent: 1.5 28 | seamlessCubemap: 0 29 | textureFormat: -1 30 | maxTextureSize: 2048 31 | textureSettings: 32 | filterMode: -1 33 | aniso: 16 34 | mipBias: -1 35 | wrapMode: 1 36 | nPOTScale: 0 37 | lightmap: 0 38 | rGBM: 0 39 | compressionQuality: 50 40 | allowsAlphaSplitting: 0 41 | spriteMode: 1 42 | spriteExtrude: 1 43 | spriteMeshType: 1 44 | alignment: 0 45 | spritePivot: {x: 0.5, y: 0.5} 46 | spriteBorder: {x: 0, y: 0, z: 0, w: 0} 47 | spritePixelsToUnits: 100 48 | alphaIsTransparency: 1 49 | textureType: 8 50 | buildTargetSettings: [] 51 | spriteSheet: 52 | sprites: [] 53 | outline: [] 54 | spritePackingTag: 55 | userData: 56 | assetBundleName: 57 | assetBundleVariant: 58 | -------------------------------------------------------------------------------- /ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!11 &1 4 | AudioManager: 5 | m_ObjectHideFlags: 0 6 | m_Volume: 1 7 | Rolloff Scale: 1 8 | Doppler Factor: 1 9 | Default Speaker Mode: 2 10 | m_SampleRate: 0 11 | m_DSPBufferSize: 0 12 | m_VirtualVoiceCount: 512 13 | m_RealVoiceCount: 32 14 | m_SpatializerPlugin: 15 | m_DisableAudio: 0 16 | -------------------------------------------------------------------------------- /ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!236 &1 4 | ClusterInputManager: 5 | m_ObjectHideFlags: 0 6 | m_Inputs: [] 7 | -------------------------------------------------------------------------------- /ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!55 &1 4 | PhysicsManager: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 2 7 | m_Gravity: {x: 0, y: -9.81, z: 0} 8 | m_DefaultMaterial: {fileID: 0} 9 | m_BounceThreshold: 2 10 | m_SleepThreshold: 0.005 11 | m_DefaultContactOffset: 0.01 12 | m_SolverIterationCount: 6 13 | m_QueriesHitTriggers: 1 14 | m_EnableAdaptiveForce: 0 15 | m_LayerCollisionMatrix: ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff 16 | -------------------------------------------------------------------------------- /ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!1045 &1 4 | EditorBuildSettings: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 2 7 | m_Scenes: 8 | - enabled: 1 9 | path: Assets/Main.unity 10 | -------------------------------------------------------------------------------- /ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!159 &1 4 | EditorSettings: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 3 7 | m_ExternalVersionControlSupport: Visible Meta Files 8 | m_SerializationMode: 2 9 | m_WebSecurityEmulationEnabled: 0 10 | m_WebSecurityEmulationHostUrl: http://www.mydomain.com/mygame.unity3d 11 | m_DefaultBehaviorMode: 0 12 | m_SpritePackerMode: 2 13 | m_SpritePackerPaddingPower: 1 14 | m_ProjectGenerationIncludedExtensions: txt;xml;fnt;cd 15 | m_ProjectGenerationRootNamespace: 16 | -------------------------------------------------------------------------------- /ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!30 &1 4 | GraphicsSettings: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 5 7 | m_Deferred: 8 | m_Mode: 1 9 | m_Shader: {fileID: 69, guid: 0000000000000000f000000000000000, type: 0} 10 | m_DeferredReflections: 11 | m_Mode: 1 12 | m_Shader: {fileID: 74, guid: 0000000000000000f000000000000000, type: 0} 13 | m_LegacyDeferred: 14 | m_Mode: 1 15 | m_Shader: {fileID: 63, guid: 0000000000000000f000000000000000, type: 0} 16 | m_AlwaysIncludedShaders: 17 | - {fileID: 7, guid: 0000000000000000f000000000000000, type: 0} 18 | - {fileID: 15104, guid: 0000000000000000f000000000000000, type: 0} 19 | - {fileID: 15105, guid: 0000000000000000f000000000000000, type: 0} 20 | - {fileID: 15106, guid: 0000000000000000f000000000000000, type: 0} 21 | - {fileID: 10770, guid: 0000000000000000f000000000000000, type: 0} 22 | - {fileID: 10782, guid: 0000000000000000f000000000000000, type: 0} 23 | m_PreloadedShaders: [] 24 | m_ShaderSettings: 25 | useScreenSpaceShadows: 1 26 | m_BuildTargetShaderSettings: [] 27 | m_LightmapStripping: 0 28 | m_FogStripping: 0 29 | m_LightmapKeepPlain: 1 30 | m_LightmapKeepDirCombined: 1 31 | m_LightmapKeepDirSeparate: 1 32 | m_LightmapKeepDynamicPlain: 1 33 | m_LightmapKeepDynamicDirCombined: 1 34 | m_LightmapKeepDynamicDirSeparate: 1 35 | m_FogKeepLinear: 1 36 | m_FogKeepExp: 1 37 | m_FogKeepExp2: 1 38 | -------------------------------------------------------------------------------- /ProjectSettings/NavMeshAreas.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!126 &1 4 | NavMeshAreas: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 2 7 | areas: 8 | - name: Walkable 9 | cost: 1 10 | - name: Not Walkable 11 | cost: 1 12 | - name: Jump 13 | cost: 2 14 | - name: 15 | cost: 1 16 | - name: 17 | cost: 1 18 | - name: 19 | cost: 1 20 | - name: 21 | cost: 1 22 | - name: 23 | cost: 1 24 | - name: 25 | cost: 1 26 | - name: 27 | cost: 1 28 | - name: 29 | cost: 1 30 | - name: 31 | cost: 1 32 | - name: 33 | cost: 1 34 | - name: 35 | cost: 1 36 | - name: 37 | cost: 1 38 | - name: 39 | cost: 1 40 | - name: 41 | cost: 1 42 | - name: 43 | cost: 1 44 | - name: 45 | cost: 1 46 | - name: 47 | cost: 1 48 | - name: 49 | cost: 1 50 | - name: 51 | cost: 1 52 | - name: 53 | cost: 1 54 | - name: 55 | cost: 1 56 | - name: 57 | cost: 1 58 | - name: 59 | cost: 1 60 | - name: 61 | cost: 1 62 | - name: 63 | cost: 1 64 | - name: 65 | cost: 1 66 | - name: 67 | cost: 1 68 | - name: 69 | cost: 1 70 | - name: 71 | cost: 1 72 | -------------------------------------------------------------------------------- /ProjectSettings/NetworkManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!149 &1 4 | NetworkManager: 5 | m_ObjectHideFlags: 0 6 | m_DebugLevel: 0 7 | m_Sendrate: 15 8 | m_AssetToPrefab: {} 9 | -------------------------------------------------------------------------------- /ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!19 &1 4 | Physics2DSettings: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 2 7 | m_Gravity: {x: 0, y: -9.81} 8 | m_DefaultMaterial: {fileID: 0} 9 | m_VelocityIterations: 8 10 | m_PositionIterations: 3 11 | m_VelocityThreshold: 1 12 | m_MaxLinearCorrection: 0.2 13 | m_MaxAngularCorrection: 8 14 | m_MaxTranslationSpeed: 100 15 | m_MaxRotationSpeed: 360 16 | m_MinPenetrationForPenalty: 0.01 17 | m_BaumgarteScale: 0.2 18 | m_BaumgarteTimeOfImpactScale: 0.75 19 | m_TimeToSleep: 0.5 20 | m_LinearSleepTolerance: 0.01 21 | m_AngularSleepTolerance: 2 22 | m_QueriesHitTriggers: 1 23 | m_QueriesStartInColliders: 1 24 | m_ChangeStopsCallbacks: 0 25 | m_LayerCollisionMatrix: ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff 26 | -------------------------------------------------------------------------------- /ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- 1 | m_EditorVersion: 5.3.5f1 2 | m_StandardAssetsVersion: 0 3 | -------------------------------------------------------------------------------- /ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!78 &1 4 | TagManager: 5 | serializedVersion: 2 6 | tags: [] 7 | layers: 8 | - Default 9 | - TransparentFX 10 | - Ignore Raycast 11 | - 12 | - Water 13 | - UI 14 | - 15 | - 16 | - 17 | - 18 | - 19 | - 20 | - 21 | - 22 | - 23 | - 24 | - 25 | - 26 | - 27 | - 28 | - 29 | - 30 | - 31 | - 32 | - 33 | - 34 | - 35 | - 36 | - 37 | - 38 | - 39 | - 40 | m_SortingLayers: 41 | - name: Default 42 | uniqueID: 0 43 | locked: 0 44 | -------------------------------------------------------------------------------- /ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!5 &1 4 | TimeManager: 5 | m_ObjectHideFlags: 0 6 | Fixed Timestep: 0.02 7 | Maximum Allowed Timestep: 0.33333334 8 | m_TimeScale: 1 9 | -------------------------------------------------------------------------------- /ProjectSettings/UnityAdsSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!292 &1 4 | UnityAdsSettings: 5 | m_ObjectHideFlags: 0 6 | m_Enabled: 0 7 | m_InitializeOnStartup: 1 8 | m_TestMode: 0 9 | m_EnabledPlatforms: 4294967295 10 | m_IosGameId: 11 | m_AndroidGameId: 12 | -------------------------------------------------------------------------------- /ProjectSettings/UnityConnectSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!310 &1 4 | UnityConnectSettings: 5 | m_ObjectHideFlags: 0 6 | UnityPurchasingSettings: 7 | m_Enabled: 0 8 | m_TestMode: 0 9 | UnityAnalyticsSettings: 10 | m_Enabled: 0 11 | m_InitializeOnStartup: 1 12 | m_TestMode: 0 13 | m_TestEventUrl: 14 | m_TestConfigUrl: 15 | -------------------------------------------------------------------------------- /buildProtos.bat: -------------------------------------------------------------------------------- 1 | @ECHO OFF 2 | RMDIR "POGOProtos" /S /Q 3 | git clone https://github.com/AeonLucid/POGOProtos.git 4 | cd POGOProtos 5 | python compile.py 6 | cd .. 7 | cd Assets/POGOProtos 8 | del /s /q /f *.cs 9 | cd ../../ 10 | xcopy /S "POGOProtos/out/POGOProtos" "Assets/POGOProtos" 11 | RMDIR "POGOProtos" /S /Q 12 | PAUSE --------------------------------------------------------------------------------