├── .gitattributes ├── .gitignore ├── README.md ├── TapZag ├── .vscode │ └── settings.json ├── Assets │ ├── AssetStoreTools.meta │ ├── AssetStoreTools │ │ ├── Editor.meta │ │ ├── Editor │ │ │ ├── AssetStoreTools.dll │ │ │ ├── AssetStoreTools.dll.meta │ │ │ ├── AssetStoreToolsExtra.dll │ │ │ ├── AssetStoreToolsExtra.dll.meta │ │ │ ├── DroidSansMono.ttf │ │ │ ├── DroidSansMono.ttf.meta │ │ │ ├── icon.png │ │ │ └── icon.png.meta │ │ ├── Labels.asset │ │ └── Labels.asset.meta │ ├── Plugins.meta │ ├── Plugins │ │ ├── Android.meta │ │ └── Android │ │ │ ├── play-services-auth-11.0.0.aar │ │ │ ├── play-services-auth-11.0.0.aar.meta │ │ │ ├── play-services-auth-base-11.0.0.aar │ │ │ ├── play-services-auth-base-11.0.0.aar.meta │ │ │ ├── play-services-base-11.0.0.aar │ │ │ ├── play-services-base-11.0.0.aar.meta │ │ │ ├── play-services-basement-11.0.0.aar │ │ │ ├── play-services-basement-11.0.0.aar.meta │ │ │ ├── play-services-drive-11.0.0.aar │ │ │ ├── play-services-drive-11.0.0.aar.meta │ │ │ ├── play-services-games-11.0.0.aar │ │ │ ├── play-services-games-11.0.0.aar.meta │ │ │ ├── play-services-nearby-11.0.0.aar │ │ │ ├── play-services-nearby-11.0.0.aar.meta │ │ │ ├── play-services-tasks-11.0.0.aar │ │ │ ├── play-services-tasks-11.0.0.aar.meta │ │ │ ├── support-annotations-25.2.0.jar │ │ │ ├── support-annotations-25.2.0.jar.meta │ │ │ ├── support-compat-25.2.0.aar │ │ │ ├── support-compat-25.2.0.aar.meta │ │ │ ├── support-core-ui-25.2.0.aar │ │ │ ├── support-core-ui-25.2.0.aar.meta │ │ │ ├── support-core-utils-25.2.0.aar │ │ │ ├── support-core-utils-25.2.0.aar.meta │ │ │ ├── support-fragment-25.2.0.aar │ │ │ ├── support-fragment-25.2.0.aar.meta │ │ │ ├── support-media-compat-25.2.0.aar │ │ │ ├── support-media-compat-25.2.0.aar.meta │ │ │ ├── support-v4-25.2.0.aar │ │ │ └── support-v4-25.2.0.aar.meta │ ├── RC_Clones.meta │ └── RC_Clones │ │ ├── Fonts.meta │ │ ├── Fonts │ │ ├── KOZGOPR6N-BOLD.OTF │ │ ├── KOZGOPR6N-BOLD.OTF.meta │ │ ├── KOZGOPR6N-EXTRALIGHT.OTF │ │ ├── KOZGOPR6N-EXTRALIGHT.OTF.meta │ │ ├── KOZGOPR6N-HEAVY.OTF │ │ ├── KOZGOPR6N-HEAVY.OTF.meta │ │ ├── KOZGOPR6N-LIGHT.OTF │ │ ├── KOZGOPR6N-LIGHT.OTF.meta │ │ ├── KOZGOPR6N-MEDIUM.OTF │ │ ├── KOZGOPR6N-MEDIUM.OTF.meta │ │ ├── KOZGOPR6N-REGULAR.OTF │ │ └── KOZGOPR6N-REGULAR.OTF.meta │ │ ├── GooglePlayDependencies.meta │ │ ├── GooglePlayDependencies │ │ ├── GooglePlayGames.meta │ │ ├── GooglePlayGames │ │ │ ├── BasicApi.meta │ │ │ ├── BasicApi │ │ │ │ ├── Achievement.cs │ │ │ │ ├── Achievement.cs.meta │ │ │ │ ├── CommonStatusCodes.cs │ │ │ │ ├── CommonStatusCodes.cs.meta │ │ │ │ ├── CommonTypes.cs │ │ │ │ ├── CommonTypes.cs.meta │ │ │ │ ├── DummyClient.cs │ │ │ │ ├── DummyClient.cs.meta │ │ │ │ ├── Events.meta │ │ │ │ ├── Events │ │ │ │ │ ├── IEvent.cs │ │ │ │ │ ├── IEvent.cs.meta │ │ │ │ │ ├── IEventsClient.cs │ │ │ │ │ └── IEventsClient.cs.meta │ │ │ │ ├── IPlayGamesClient.cs │ │ │ │ ├── IPlayGamesClient.cs.meta │ │ │ │ ├── LeaderboardScoreData.cs │ │ │ │ ├── LeaderboardScoreData.cs.meta │ │ │ │ ├── Multiplayer.meta │ │ │ │ ├── Multiplayer │ │ │ │ │ ├── IRealTimeMultiplayerClient.cs │ │ │ │ │ ├── IRealTimeMultiplayerClient.cs.meta │ │ │ │ │ ├── ITurnBasedMultiplayerClient.cs │ │ │ │ │ ├── ITurnBasedMultiplayerClient.cs.meta │ │ │ │ │ ├── Invitation.cs │ │ │ │ │ ├── Invitation.cs.meta │ │ │ │ │ ├── MatchOutcome.cs │ │ │ │ │ ├── MatchOutcome.cs.meta │ │ │ │ │ ├── Participant.cs │ │ │ │ │ ├── Participant.cs.meta │ │ │ │ │ ├── Player.cs │ │ │ │ │ ├── Player.cs.meta │ │ │ │ │ ├── RealTimeMultiplayerListener.cs │ │ │ │ │ ├── RealTimeMultiplayerListener.cs.meta │ │ │ │ │ ├── TurnBasedMatch.cs │ │ │ │ │ └── TurnBasedMatch.cs.meta │ │ │ │ ├── Nearby.meta │ │ │ │ ├── Nearby │ │ │ │ │ ├── AdvertisingResult.cs │ │ │ │ │ ├── AdvertisingResult.cs.meta │ │ │ │ │ ├── ConnectionRequest.cs │ │ │ │ │ ├── ConnectionRequest.cs.meta │ │ │ │ │ ├── ConnectionResponse.cs │ │ │ │ │ ├── ConnectionResponse.cs.meta │ │ │ │ │ ├── DummyNearbyConnectionClient.cs │ │ │ │ │ ├── DummyNearbyConnectionClient.cs.meta │ │ │ │ │ ├── EndpointDetails.cs │ │ │ │ │ ├── EndpointDetails.cs.meta │ │ │ │ │ ├── INearbyConnectionClient.cs │ │ │ │ │ ├── INearbyConnectionClient.cs.meta │ │ │ │ │ ├── NearbyConnectionConfiguration.cs │ │ │ │ │ └── NearbyConnectionConfiguration.cs.meta │ │ │ │ ├── PlayGamesClientConfiguration.cs │ │ │ │ ├── PlayGamesClientConfiguration.cs.meta │ │ │ │ ├── PlayerStats.cs │ │ │ │ ├── PlayerStats.cs.meta │ │ │ │ ├── Quests.meta │ │ │ │ ├── Quests │ │ │ │ │ ├── IQuest.cs │ │ │ │ │ ├── IQuest.cs.meta │ │ │ │ │ ├── IQuestMilestone.cs │ │ │ │ │ ├── IQuestMilestone.cs.meta │ │ │ │ │ ├── IQuestsClient.cs │ │ │ │ │ └── IQuestsClient.cs.meta │ │ │ │ ├── SavedGame.meta │ │ │ │ ├── SavedGame │ │ │ │ │ ├── ISavedGameClient.cs │ │ │ │ │ ├── ISavedGameClient.cs.meta │ │ │ │ │ ├── ISavedGameMetadata.cs │ │ │ │ │ ├── ISavedGameMetadata.cs.meta │ │ │ │ │ ├── SavedGameMetadataUpdate.cs │ │ │ │ │ └── SavedGameMetadataUpdate.cs.meta │ │ │ │ ├── ScorePageToken.cs │ │ │ │ ├── ScorePageToken.cs.meta │ │ │ │ ├── Video.meta │ │ │ │ └── Video │ │ │ │ │ ├── CaptureOverlayStateListener.cs │ │ │ │ │ ├── CaptureOverlayStateListener.cs.meta │ │ │ │ │ ├── VideoCapabilities.cs │ │ │ │ │ ├── VideoCapabilities.cs.meta │ │ │ │ │ ├── VideoCaptureState.cs │ │ │ │ │ ├── VideoCaptureState.cs.meta │ │ │ │ │ ├── iVideoClient.cs │ │ │ │ │ └── iVideoClient.cs.meta │ │ │ ├── Editor.meta │ │ │ ├── Editor │ │ │ │ ├── GPGSAndroidSetupUI.cs │ │ │ │ ├── GPGSAndroidSetupUI.cs.meta │ │ │ │ ├── GPGSDependencies.cs │ │ │ │ ├── GPGSDependencies.cs.meta │ │ │ │ ├── GPGSDocsUI.cs │ │ │ │ ├── GPGSDocsUI.cs.meta │ │ │ │ ├── GPGSIOSSetupUI.cs │ │ │ │ ├── GPGSIOSSetupUI.cs.meta │ │ │ │ ├── GPGSPostBuild.cs │ │ │ │ ├── GPGSPostBuild.cs.meta │ │ │ │ ├── GPGSProjectSettings.cs │ │ │ │ ├── GPGSProjectSettings.cs.meta │ │ │ │ ├── GPGSStrings.cs │ │ │ │ ├── GPGSStrings.cs.meta │ │ │ │ ├── GPGSUpgrader.cs │ │ │ │ ├── GPGSUpgrader.cs.meta │ │ │ │ ├── GPGSUtil.cs │ │ │ │ ├── GPGSUtil.cs.meta │ │ │ │ ├── NearbyConnectionUI.cs │ │ │ │ ├── NearbyConnectionUI.cs.meta │ │ │ │ ├── PlistBuddyHelper.cs │ │ │ │ ├── PlistBuddyHelper.cs.meta │ │ │ │ ├── PostprocessBuildPlayer │ │ │ │ ├── PostprocessBuildPlayer.meta │ │ │ │ ├── template-AndroidManifest.txt │ │ │ │ ├── template-AndroidManifest.txt.meta │ │ │ │ ├── template-Constants.txt │ │ │ │ ├── template-Constants.txt.meta │ │ │ │ ├── template-GameInfo.txt │ │ │ │ ├── template-GameInfo.txt.meta │ │ │ │ ├── xcode.meta │ │ │ │ └── xcode │ │ │ │ │ ├── Elements.cs │ │ │ │ │ ├── Elements.cs.meta │ │ │ │ │ ├── Lexer.cs │ │ │ │ │ ├── Lexer.cs.meta │ │ │ │ │ ├── Objects.cs │ │ │ │ │ ├── Objects.cs.meta │ │ │ │ │ ├── PBXProject.cs │ │ │ │ │ ├── PBXProject.cs.meta │ │ │ │ │ ├── Parser.cs │ │ │ │ │ ├── Parser.cs.meta │ │ │ │ │ ├── Sections.cs │ │ │ │ │ ├── Sections.cs.meta │ │ │ │ │ ├── Serializer.cs │ │ │ │ │ ├── Serializer.cs.meta │ │ │ │ │ ├── Utils.cs │ │ │ │ │ └── Utils.cs.meta │ │ │ ├── GameInfo.cs │ │ │ ├── GameInfo.cs.meta │ │ │ ├── ISocialPlatform.meta │ │ │ ├── ISocialPlatform │ │ │ │ ├── PlayGamesAchievement.cs │ │ │ │ ├── PlayGamesAchievement.cs.meta │ │ │ │ ├── PlayGamesLeaderboard.cs │ │ │ │ ├── PlayGamesLeaderboard.cs.meta │ │ │ │ ├── PlayGamesLocalUser.cs │ │ │ │ ├── PlayGamesLocalUser.cs.meta │ │ │ │ ├── PlayGamesPlatform.cs │ │ │ │ ├── PlayGamesPlatform.cs.meta │ │ │ │ ├── PlayGamesScore.cs │ │ │ │ ├── PlayGamesScore.cs.meta │ │ │ │ ├── PlayGamesUserProfile.cs │ │ │ │ └── PlayGamesUserProfile.cs.meta │ │ │ ├── OurUtils.meta │ │ │ ├── OurUtils │ │ │ │ ├── Logger.cs │ │ │ │ ├── Logger.cs.meta │ │ │ │ ├── Misc.cs │ │ │ │ ├── Misc.cs.meta │ │ │ │ ├── PlatformUtils.cs │ │ │ │ ├── PlatformUtils.cs.meta │ │ │ │ ├── PlayGamesHelperObject.cs │ │ │ │ └── PlayGamesHelperObject.cs.meta │ │ │ ├── Platforms.meta │ │ │ ├── Platforms │ │ │ │ ├── Android.meta │ │ │ │ ├── Android │ │ │ │ │ ├── AndroidClient.cs │ │ │ │ │ ├── AndroidClient.cs.meta │ │ │ │ │ ├── AndroidTokenClient.cs │ │ │ │ │ ├── AndroidTokenClient.cs.meta │ │ │ │ │ ├── Developers.meta │ │ │ │ │ ├── Developers │ │ │ │ │ │ ├── JavaInterfaceProxy.cs │ │ │ │ │ │ ├── JavaInterfaceProxy.cs.meta │ │ │ │ │ │ ├── JavaObjWrapper.cs │ │ │ │ │ │ └── JavaObjWrapper.cs.meta │ │ │ │ │ ├── Gms.meta │ │ │ │ │ └── Gms │ │ │ │ │ │ ├── Common.meta │ │ │ │ │ │ ├── Common │ │ │ │ │ │ ├── Api.meta │ │ │ │ │ │ ├── Api │ │ │ │ │ │ │ ├── GoogleApiClient.cs │ │ │ │ │ │ │ ├── GoogleApiClient.cs.meta │ │ │ │ │ │ │ ├── PendingResult.cs │ │ │ │ │ │ │ ├── PendingResult.cs.meta │ │ │ │ │ │ │ ├── Result.cs │ │ │ │ │ │ │ ├── Result.cs.meta │ │ │ │ │ │ │ ├── ResultCallback.cs │ │ │ │ │ │ │ ├── ResultCallback.cs.meta │ │ │ │ │ │ │ ├── ResultCallbackProxy.cs │ │ │ │ │ │ │ ├── ResultCallbackProxy.cs.meta │ │ │ │ │ │ │ ├── Status.cs │ │ │ │ │ │ │ └── Status.cs.meta │ │ │ │ │ │ ├── ConnectionResult.cs │ │ │ │ │ │ └── ConnectionResult.cs.meta │ │ │ │ │ │ ├── Games.meta │ │ │ │ │ │ └── Games │ │ │ │ │ │ ├── Games.cs │ │ │ │ │ │ ├── Games.cs.meta │ │ │ │ │ │ ├── Stats.meta │ │ │ │ │ │ └── Stats │ │ │ │ │ │ ├── LoadPlayerStatsResultObject.cs │ │ │ │ │ │ ├── LoadPlayerStatsResultObject.cs.meta │ │ │ │ │ │ ├── PlayerStats.cs │ │ │ │ │ │ ├── PlayerStats.cs.meta │ │ │ │ │ │ ├── PlayerStatsObject.cs │ │ │ │ │ │ ├── PlayerStatsObject.cs.meta │ │ │ │ │ │ ├── Stats.cs │ │ │ │ │ │ ├── Stats.cs.meta │ │ │ │ │ │ ├── StatsObject.cs │ │ │ │ │ │ └── StatsObject.cs.meta │ │ │ │ ├── IClientImpl.cs │ │ │ │ ├── IClientImpl.cs.meta │ │ │ │ ├── IOS.meta │ │ │ │ ├── IOS │ │ │ │ │ ├── IOSClient.cs │ │ │ │ │ ├── IOSClient.cs.meta │ │ │ │ │ ├── IOSTokenClient.cs │ │ │ │ │ └── IOSTokenClient.cs.meta │ │ │ │ ├── Native.meta │ │ │ │ ├── Native │ │ │ │ │ ├── CallbackUtils.cs │ │ │ │ │ ├── CallbackUtils.cs.meta │ │ │ │ │ ├── ConversionUtils.cs │ │ │ │ │ ├── ConversionUtils.cs.meta │ │ │ │ │ ├── Cwrapper.meta │ │ │ │ │ ├── Cwrapper │ │ │ │ │ │ ├── Achievement.cs │ │ │ │ │ │ ├── Achievement.cs.meta │ │ │ │ │ │ ├── AchievementManager.cs │ │ │ │ │ │ ├── AchievementManager.cs.meta │ │ │ │ │ │ ├── AndroidPlatformConfiguration.cs │ │ │ │ │ │ ├── AndroidPlatformConfiguration.cs.meta │ │ │ │ │ │ ├── Builder.cs │ │ │ │ │ │ ├── Builder.cs.meta │ │ │ │ │ │ ├── CaptureOverlayStateListenerHelper.cs │ │ │ │ │ │ ├── CaptureOverlayStateListenerHelper.cs.meta │ │ │ │ │ │ ├── CommonErrorStatus.cs │ │ │ │ │ │ ├── CommonErrorStatus.cs.meta │ │ │ │ │ │ ├── EndpointDiscoveryListenerHelper.cs │ │ │ │ │ │ ├── EndpointDiscoveryListenerHelper.cs.meta │ │ │ │ │ │ ├── Event.cs │ │ │ │ │ │ ├── Event.cs.meta │ │ │ │ │ │ ├── EventManager.cs │ │ │ │ │ │ ├── EventManager.cs.meta │ │ │ │ │ │ ├── GameServices.cs │ │ │ │ │ │ ├── GameServices.cs.meta │ │ │ │ │ │ ├── InternalHooks.cs │ │ │ │ │ │ ├── InternalHooks.cs.meta │ │ │ │ │ │ ├── IosPlatformConfiguration.cs │ │ │ │ │ │ ├── IosPlatformConfiguration.cs.meta │ │ │ │ │ │ ├── Leaderboard.cs │ │ │ │ │ │ ├── Leaderboard.cs.meta │ │ │ │ │ │ ├── LeaderboardManager.cs │ │ │ │ │ │ ├── LeaderboardManager.cs.meta │ │ │ │ │ │ ├── MessageListenerHelper.cs │ │ │ │ │ │ ├── MessageListenerHelper.cs.meta │ │ │ │ │ │ ├── MultiplayerInvitation.cs │ │ │ │ │ │ ├── MultiplayerInvitation.cs.meta │ │ │ │ │ │ ├── MultiplayerParticipant.cs │ │ │ │ │ │ ├── MultiplayerParticipant.cs.meta │ │ │ │ │ │ ├── NearbyConnectionTypes.cs │ │ │ │ │ │ ├── NearbyConnectionTypes.cs.meta │ │ │ │ │ │ ├── NearbyConnections.cs │ │ │ │ │ │ ├── NearbyConnections.cs.meta │ │ │ │ │ │ ├── NearbyConnectionsBuilder.cs │ │ │ │ │ │ ├── NearbyConnectionsBuilder.cs.meta │ │ │ │ │ │ ├── NearbyConnectionsStatus.cs │ │ │ │ │ │ ├── NearbyConnectionsStatus.cs.meta │ │ │ │ │ │ ├── ParticipantResults.cs │ │ │ │ │ │ ├── ParticipantResults.cs.meta │ │ │ │ │ │ ├── Player.cs │ │ │ │ │ │ ├── Player.cs.meta │ │ │ │ │ │ ├── PlayerManager.cs │ │ │ │ │ │ ├── PlayerManager.cs.meta │ │ │ │ │ │ ├── PlayerStats.cs │ │ │ │ │ │ ├── PlayerStats.cs.meta │ │ │ │ │ │ ├── Quest.cs │ │ │ │ │ │ ├── Quest.cs.meta │ │ │ │ │ │ ├── QuestManager.cs │ │ │ │ │ │ ├── QuestManager.cs.meta │ │ │ │ │ │ ├── QuestMilestone.cs │ │ │ │ │ │ ├── QuestMilestone.cs.meta │ │ │ │ │ │ ├── RealTimeEventListenerHelper.cs │ │ │ │ │ │ ├── RealTimeEventListenerHelper.cs.meta │ │ │ │ │ │ ├── RealTimeMultiplayerManager.cs │ │ │ │ │ │ ├── RealTimeMultiplayerManager.cs.meta │ │ │ │ │ │ ├── RealTimeRoom.cs │ │ │ │ │ │ ├── RealTimeRoom.cs.meta │ │ │ │ │ │ ├── RealTimeRoomConfig.cs │ │ │ │ │ │ ├── RealTimeRoomConfig.cs.meta │ │ │ │ │ │ ├── RealTimeRoomConfigBuilder.cs │ │ │ │ │ │ ├── RealTimeRoomConfigBuilder.cs.meta │ │ │ │ │ │ ├── Score.cs │ │ │ │ │ │ ├── Score.cs.meta │ │ │ │ │ │ ├── ScorePage.cs │ │ │ │ │ │ ├── ScorePage.cs.meta │ │ │ │ │ │ ├── ScoreSummary.cs │ │ │ │ │ │ ├── ScoreSummary.cs.meta │ │ │ │ │ │ ├── Sentinels.cs │ │ │ │ │ │ ├── Sentinels.cs.meta │ │ │ │ │ │ ├── SnapshotManager.cs │ │ │ │ │ │ ├── SnapshotManager.cs.meta │ │ │ │ │ │ ├── SnapshotMetadata.cs │ │ │ │ │ │ ├── SnapshotMetadata.cs.meta │ │ │ │ │ │ ├── SnapshotMetadataChange.cs │ │ │ │ │ │ ├── SnapshotMetadataChange.cs.meta │ │ │ │ │ │ ├── SnapshotMetadataChangeBuilder.cs │ │ │ │ │ │ ├── SnapshotMetadataChangeBuilder.cs.meta │ │ │ │ │ │ ├── StatsManager.cs │ │ │ │ │ │ ├── StatsManager.cs.meta │ │ │ │ │ │ ├── Status.cs │ │ │ │ │ │ ├── Status.cs.meta │ │ │ │ │ │ ├── SymbolLocation.cs │ │ │ │ │ │ ├── SymbolLocation.cs.meta │ │ │ │ │ │ ├── TurnBasedMatch.cs │ │ │ │ │ │ ├── TurnBasedMatch.cs.meta │ │ │ │ │ │ ├── TurnBasedMatchConfig.cs │ │ │ │ │ │ ├── TurnBasedMatchConfig.cs.meta │ │ │ │ │ │ ├── TurnBasedMatchConfigBuilder.cs │ │ │ │ │ │ ├── TurnBasedMatchConfigBuilder.cs.meta │ │ │ │ │ │ ├── TurnBasedMultiplayerManager.cs │ │ │ │ │ │ ├── TurnBasedMultiplayerManager.cs.meta │ │ │ │ │ │ ├── Types.cs │ │ │ │ │ │ ├── Types.cs.meta │ │ │ │ │ │ ├── VideoCapabilities.cs │ │ │ │ │ │ ├── VideoCapabilities.cs.meta │ │ │ │ │ │ ├── VideoCaptureState.cs │ │ │ │ │ │ ├── VideoCaptureState.cs.meta │ │ │ │ │ │ ├── VideoManager.cs │ │ │ │ │ │ └── VideoManager.cs.meta │ │ │ │ │ ├── JavaUtils.cs │ │ │ │ │ ├── JavaUtils.cs.meta │ │ │ │ │ ├── NativeClient.cs │ │ │ │ │ ├── NativeClient.cs.meta │ │ │ │ │ ├── NativeEventClient.cs │ │ │ │ │ ├── NativeEventClient.cs.meta │ │ │ │ │ ├── NativeNearbyConnectionClientFactory.cs │ │ │ │ │ ├── NativeNearbyConnectionClientFactory.cs.meta │ │ │ │ │ ├── NativeNearbyConnectionsClient.cs │ │ │ │ │ ├── NativeNearbyConnectionsClient.cs.meta │ │ │ │ │ ├── NativeQuestClient.cs │ │ │ │ │ ├── NativeQuestClient.cs.meta │ │ │ │ │ ├── NativeRealtimeMultiplayerClient.cs │ │ │ │ │ ├── NativeRealtimeMultiplayerClient.cs.meta │ │ │ │ │ ├── NativeSavedGameClient.cs │ │ │ │ │ ├── NativeSavedGameClient.cs.meta │ │ │ │ │ ├── NativeTurnBasedMultiplayerClient.cs │ │ │ │ │ ├── NativeTurnBasedMultiplayerClient.cs.meta │ │ │ │ │ ├── NativeVideoClient.cs │ │ │ │ │ ├── NativeVideoClient.cs.meta │ │ │ │ │ ├── PInvoke.meta │ │ │ │ │ ├── PInvoke │ │ │ │ │ │ ├── AchievementManager.cs │ │ │ │ │ │ ├── AchievementManager.cs.meta │ │ │ │ │ │ ├── AndroidPlatformConfiguration.cs │ │ │ │ │ │ ├── AndroidPlatformConfiguration.cs.meta │ │ │ │ │ │ ├── BaseReferenceHolder.cs │ │ │ │ │ │ ├── BaseReferenceHolder.cs.meta │ │ │ │ │ │ ├── Callbacks.cs │ │ │ │ │ │ ├── Callbacks.cs.meta │ │ │ │ │ │ ├── CaptureOverlayStateListenerHelper.cs │ │ │ │ │ │ ├── CaptureOverlayStateListenerHelper.cs.meta │ │ │ │ │ │ ├── EventManager.cs │ │ │ │ │ │ ├── EventManager.cs.meta │ │ │ │ │ │ ├── GameServices.cs │ │ │ │ │ │ ├── GameServices.cs.meta │ │ │ │ │ │ ├── GameServicesBuilder.cs │ │ │ │ │ │ ├── GameServicesBuilder.cs.meta │ │ │ │ │ │ ├── IosPlatformConfiguration.cs │ │ │ │ │ │ ├── IosPlatformConfiguration.cs.meta │ │ │ │ │ │ ├── LeaderboardManager.cs │ │ │ │ │ │ ├── LeaderboardManager.cs.meta │ │ │ │ │ │ ├── MultiplayerInvitation.cs │ │ │ │ │ │ ├── MultiplayerInvitation.cs.meta │ │ │ │ │ │ ├── MultiplayerParticipant.cs │ │ │ │ │ │ ├── MultiplayerParticipant.cs.meta │ │ │ │ │ │ ├── NativeAchievement.cs │ │ │ │ │ │ ├── NativeAchievement.cs.meta │ │ │ │ │ │ ├── NativeAppIdentifier.cs │ │ │ │ │ │ ├── NativeAppIdentifier.cs.meta │ │ │ │ │ │ ├── NativeConnectionRequest.cs │ │ │ │ │ │ ├── NativeConnectionRequest.cs.meta │ │ │ │ │ │ ├── NativeConnectionResponse.cs │ │ │ │ │ │ ├── NativeConnectionResponse.cs.meta │ │ │ │ │ │ ├── NativeEndpointDetails.cs │ │ │ │ │ │ ├── NativeEndpointDetails.cs.meta │ │ │ │ │ │ ├── NativeEndpointDiscoveryListenerHelper.cs │ │ │ │ │ │ ├── NativeEndpointDiscoveryListenerHelper.cs.meta │ │ │ │ │ │ ├── NativeEvent.cs │ │ │ │ │ │ ├── NativeEvent.cs.meta │ │ │ │ │ │ ├── NativeLeaderboard.cs │ │ │ │ │ │ ├── NativeLeaderboard.cs.meta │ │ │ │ │ │ ├── NativeMessageListenerHelper.cs │ │ │ │ │ │ ├── NativeMessageListenerHelper.cs.meta │ │ │ │ │ │ ├── NativePlayer.cs │ │ │ │ │ │ ├── NativePlayer.cs.meta │ │ │ │ │ │ ├── NativePlayerStats.cs │ │ │ │ │ │ ├── NativePlayerStats.cs.meta │ │ │ │ │ │ ├── NativeQuest.cs │ │ │ │ │ │ ├── NativeQuest.cs.meta │ │ │ │ │ │ ├── NativeQuestMilestone.cs │ │ │ │ │ │ ├── NativeQuestMilestone.cs.meta │ │ │ │ │ │ ├── NativeRealTimeRoom.cs │ │ │ │ │ │ ├── NativeRealTimeRoom.cs.meta │ │ │ │ │ │ ├── NativeScore.cs │ │ │ │ │ │ ├── NativeScore.cs.meta │ │ │ │ │ │ ├── NativeScoreEntry.cs │ │ │ │ │ │ ├── NativeScoreEntry.cs.meta │ │ │ │ │ │ ├── NativeScorePage.cs │ │ │ │ │ │ ├── NativeScorePage.cs.meta │ │ │ │ │ │ ├── NativeScorePageToken.cs │ │ │ │ │ │ ├── NativeScorePageToken.cs.meta │ │ │ │ │ │ ├── NativeScoreSummary.cs │ │ │ │ │ │ ├── NativeScoreSummary.cs.meta │ │ │ │ │ │ ├── NativeSnapshotMetadata.cs │ │ │ │ │ │ ├── NativeSnapshotMetadata.cs.meta │ │ │ │ │ │ ├── NativeSnapshotMetadataChange.cs │ │ │ │ │ │ ├── NativeSnapshotMetadataChange.cs.meta │ │ │ │ │ │ ├── NativeStartAdvertisingResult.cs │ │ │ │ │ │ ├── NativeStartAdvertisingResult.cs.meta │ │ │ │ │ │ ├── NativeTurnBasedMatch.cs │ │ │ │ │ │ ├── NativeTurnBasedMatch.cs.meta │ │ │ │ │ │ ├── NativeVideoCapabilities.cs │ │ │ │ │ │ ├── NativeVideoCapabilities.cs.meta │ │ │ │ │ │ ├── NativeVideoCaptureState.cs │ │ │ │ │ │ ├── NativeVideoCaptureState.cs.meta │ │ │ │ │ │ ├── NearbyConnectionsManager.cs │ │ │ │ │ │ ├── NearbyConnectionsManager.cs.meta │ │ │ │ │ │ ├── NearbyConnectionsManagerBuilder.cs │ │ │ │ │ │ ├── NearbyConnectionsManagerBuilder.cs.meta │ │ │ │ │ │ ├── PInvokeUtilities.cs │ │ │ │ │ │ ├── PInvokeUtilities.cs.meta │ │ │ │ │ │ ├── ParticipantResults.cs │ │ │ │ │ │ ├── ParticipantResults.cs.meta │ │ │ │ │ │ ├── PlatformConfiguration.cs │ │ │ │ │ │ ├── PlatformConfiguration.cs.meta │ │ │ │ │ │ ├── PlayerManager.cs │ │ │ │ │ │ ├── PlayerManager.cs.meta │ │ │ │ │ │ ├── PlayerSelectUIResponse.cs │ │ │ │ │ │ ├── PlayerSelectUIResponse.cs.meta │ │ │ │ │ │ ├── QuestManager.cs │ │ │ │ │ │ ├── QuestManager.cs.meta │ │ │ │ │ │ ├── RealTimeEventListenerHelper.cs │ │ │ │ │ │ ├── RealTimeEventListenerHelper.cs.meta │ │ │ │ │ │ ├── RealtimeManager.cs │ │ │ │ │ │ ├── RealtimeManager.cs.meta │ │ │ │ │ │ ├── RealtimeRoomConfig.cs │ │ │ │ │ │ ├── RealtimeRoomConfig.cs.meta │ │ │ │ │ │ ├── RealtimeRoomConfigBuilder.cs │ │ │ │ │ │ ├── RealtimeRoomConfigBuilder.cs.meta │ │ │ │ │ │ ├── SnapshotManager.cs │ │ │ │ │ │ ├── SnapshotManager.cs.meta │ │ │ │ │ │ ├── StatsManager.cs │ │ │ │ │ │ ├── StatsManager.cs.meta │ │ │ │ │ │ ├── TurnBasedManager.cs │ │ │ │ │ │ ├── TurnBasedManager.cs.meta │ │ │ │ │ │ ├── TurnBasedMatchConfig.cs │ │ │ │ │ │ ├── TurnBasedMatchConfig.cs.meta │ │ │ │ │ │ ├── TurnBasedMatchConfigBuilder.cs │ │ │ │ │ │ ├── TurnBasedMatchConfigBuilder.cs.meta │ │ │ │ │ │ ├── VideoManager.cs │ │ │ │ │ │ └── VideoManager.cs.meta │ │ │ │ │ ├── UnsupportedSavedGamesClient.cs │ │ │ │ │ └── UnsupportedSavedGamesClient.cs.meta │ │ │ │ ├── NearbyConnectionClientFactory.cs │ │ │ │ ├── NearbyConnectionClientFactory.cs.meta │ │ │ │ ├── PlayGamesClientFactory.cs │ │ │ │ ├── PlayGamesClientFactory.cs.meta │ │ │ │ ├── TokenClient.cs │ │ │ │ └── TokenClient.cs.meta │ │ │ ├── PluginVersion.cs │ │ │ └── PluginVersion.cs.meta │ │ ├── PlayServicesResolver.meta │ │ ├── PlayServicesResolver │ │ │ ├── Editor.meta │ │ │ ├── Editor │ │ │ │ ├── Google.IOSResolver.dll │ │ │ │ ├── Google.IOSResolver.dll.meta │ │ │ │ ├── Google.JarResolver.dll │ │ │ │ ├── Google.JarResolver.dll.meta │ │ │ │ ├── Google.VersionHandler.dll │ │ │ │ ├── Google.VersionHandler.dll.meta │ │ │ │ ├── play-services-resolver.txt │ │ │ │ └── play-services-resolver.txt.meta │ │ │ ├── generate_gradle_prebuild.exe │ │ │ ├── generate_gradle_prebuild.exe.meta │ │ │ ├── generate_gradle_prebuild.py │ │ │ ├── generate_gradle_prebuild.py.meta │ │ │ ├── gradle-template.zip │ │ │ ├── gradle-template.zip.meta │ │ │ ├── proguard-messaging-workaround.txt │ │ │ ├── proguard-messaging-workaround.txt.meta │ │ │ ├── proguard-unity.txt │ │ │ ├── proguard-unity.txt.meta │ │ │ ├── volatile_paths.json │ │ │ └── volatile_paths.json.meta │ │ ├── Plugins.meta │ │ └── Plugins │ │ │ ├── Android.meta │ │ │ ├── Android │ │ │ ├── MainLibProj.meta │ │ │ ├── MainLibProj │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── AndroidManifest.xml.meta │ │ │ │ ├── libs.meta │ │ │ │ ├── libs │ │ │ │ │ ├── play-games-plugin-support.jar │ │ │ │ │ └── play-games-plugin-support.jar.meta │ │ │ │ ├── project.properties │ │ │ │ └── project.properties.meta │ │ │ ├── libs.meta │ │ │ └── libs │ │ │ │ ├── armeabi-v7a.meta │ │ │ │ ├── armeabi-v7a │ │ │ │ ├── libgpg.so │ │ │ │ └── libgpg.so.meta │ │ │ │ ├── x86.meta │ │ │ │ └── x86 │ │ │ │ ├── libgpg.so │ │ │ │ └── libgpg.so.meta │ │ │ ├── iOS.meta │ │ │ └── iOS │ │ │ ├── GPGSAppController.h │ │ │ ├── GPGSAppController.h.meta │ │ │ ├── GPGSAppController.mm │ │ │ └── GPGSAppController.mm.meta │ │ ├── ZigZagGame.meta │ │ └── ZigZagGame │ │ ├── animation.meta │ │ ├── animation │ │ ├── animators.meta │ │ ├── animators │ │ │ ├── Fade.controller │ │ │ ├── Fade.controller.meta │ │ │ ├── leftPanelPage.controller │ │ │ ├── leftPanelPage.controller.meta │ │ │ ├── rightPanelPage.controller │ │ │ └── rightPanelPage.controller.meta │ │ ├── fadeIn.anim │ │ ├── fadeIn.anim.meta │ │ ├── fadeOut.anim │ │ ├── fadeOut.anim.meta │ │ ├── leftMenuSwipeDown.anim │ │ ├── leftMenuSwipeDown.anim.meta │ │ ├── leftMenuSwipeUp.anim │ │ ├── leftMenuSwipeUp.anim.meta │ │ ├── rightMenuSwipeDown.anim │ │ ├── rightMenuSwipeDown.anim.meta │ │ ├── rightMenuSwipeUp.anim │ │ └── rightMenuSwipeUp.anim.meta │ │ ├── materials.meta │ │ ├── materials │ │ ├── orb.mat │ │ ├── orb.mat.meta │ │ ├── pickup.mat │ │ ├── pickup.mat.meta │ │ ├── player.mat │ │ ├── player.mat.meta │ │ ├── shadow.mat │ │ ├── shadow.mat.meta │ │ ├── sky.mat │ │ ├── sky.mat.meta │ │ ├── wall.mat │ │ └── wall.mat.meta │ │ ├── models.meta │ │ ├── models │ │ ├── Materials.meta │ │ ├── Materials │ │ │ ├── Material.mat │ │ │ └── Material.mat.meta │ │ ├── pickup.fbx │ │ └── pickup.fbx.meta │ │ ├── physic materials.meta │ │ ├── physic materials │ │ ├── PlayerPhysics.physicMaterial │ │ └── PlayerPhysics.physicMaterial.meta │ │ ├── prefabs.meta │ │ ├── prefabs │ │ ├── LaunchPad.prefab │ │ ├── LaunchPad.prefab.meta │ │ ├── Orb.prefab │ │ ├── Orb.prefab.meta │ │ ├── Player.prefab │ │ ├── Player.prefab.meta │ │ ├── Wall.prefab │ │ ├── Wall.prefab.meta │ │ ├── pickup.prefab │ │ └── pickup.prefab.meta │ │ ├── scenes.meta │ │ ├── scenes │ │ ├── game.unity │ │ └── game.unity.meta │ │ ├── scripts.meta │ │ ├── scripts │ │ ├── data.meta │ │ ├── data │ │ │ ├── DataStorage.cs │ │ │ ├── DataStorage.cs.meta │ │ │ ├── GPGSIds.cs │ │ │ ├── GPGSIds.cs.meta │ │ │ ├── ProgressManager.cs │ │ │ ├── ProgressManager.cs.meta │ │ │ ├── SessionManager.cs │ │ │ └── SessionManager.cs.meta │ │ ├── game.meta │ │ ├── game │ │ │ ├── AudioManager.cs │ │ │ ├── AudioManager.cs.meta │ │ │ ├── CameraController.cs │ │ │ ├── CameraController.cs.meta │ │ │ ├── GameManager.cs │ │ │ ├── GameManager.cs.meta │ │ │ ├── Orb.cs │ │ │ ├── Orb.cs.meta │ │ │ ├── Pickup.cs │ │ │ ├── Pickup.cs.meta │ │ │ ├── Pool.cs │ │ │ ├── Pool.cs.meta │ │ │ ├── SceneLoader.cs │ │ │ ├── SceneLoader.cs.meta │ │ │ ├── Shadow.cs │ │ │ ├── Shadow.cs.meta │ │ │ ├── TapController.cs │ │ │ ├── TapController.cs.meta │ │ │ ├── Types.cs │ │ │ ├── Types.cs.meta │ │ │ ├── Wall.cs │ │ │ ├── Wall.cs.meta │ │ │ ├── WallSpawner.cs │ │ │ └── WallSpawner.cs.meta │ │ ├── menu.meta │ │ └── menu │ │ │ ├── AudioToggleEvent.cs │ │ │ ├── AudioToggleEvent.cs.meta │ │ │ ├── ButtonEvent.cs │ │ │ ├── ButtonEvent.cs.meta │ │ │ ├── OpenAchievementsEvent.cs │ │ │ ├── OpenAchievementsEvent.cs.meta │ │ │ ├── OpenLeaderboardsEvent.cs │ │ │ ├── OpenLeaderboardsEvent.cs.meta │ │ │ ├── PageController.cs │ │ │ ├── PageController.cs.meta │ │ │ ├── PageManager.cs │ │ │ ├── PageManager.cs.meta │ │ │ ├── StartGameEvent.cs │ │ │ ├── StartGameEvent.cs.meta │ │ │ ├── StatText.cs │ │ │ ├── StatText.cs.meta │ │ │ ├── WorldSpaceEvents.cs │ │ │ └── WorldSpaceEvents.cs.meta │ │ ├── shaders.meta │ │ ├── shaders │ │ ├── BasicSurface.shader │ │ ├── BasicSurface.shader.meta │ │ ├── BasicUnlit.shader │ │ └── BasicUnlit.shader.meta │ │ ├── sounds.meta │ │ └── sounds │ │ ├── click.wav │ │ ├── click.wav.meta │ │ ├── die.wav │ │ ├── die.wav.meta │ │ ├── pickup.wav │ │ ├── pickup.wav.meta │ │ ├── tap.wav │ │ └── tap.wav.meta ├── Capture1.PNG ├── Capture2.PNG ├── Capture3.PNG ├── Capture4.PNG ├── Capture5.PNG ├── ProjectSettings │ ├── AudioManager.asset │ ├── ClusterInputManager.asset │ ├── DynamicsManager.asset │ ├── EditorBuildSettings.asset │ ├── EditorSettings.asset │ ├── GooglePlayGameSettings.txt │ ├── GraphicsSettings.asset │ ├── InputManager.asset │ ├── NavMeshAreas.asset │ ├── NetworkManager.asset │ ├── Physics2DSettings.asset │ ├── ProjectSettings.asset │ ├── ProjectVersion.txt │ ├── QualitySettings.asset │ ├── TagManager.asset │ ├── TimeManager.asset │ ├── UnityConnectSettings.asset │ └── my-icons-collection │ │ ├── license │ │ └── license.pdf │ │ └── png │ │ ├── achievement.png │ │ ├── leaderboard.png │ │ ├── volume_off.png │ │ └── volume_on.png ├── UWP │ ├── project.json │ └── project.lock.json ├── ZigZagClone.pdf ├── feature.PNG ├── icon.PNG ├── my-icons-collection.zip └── user.keystore └── ZigZagStandalone ├── ZigZag.exe └── ZigZag_Data ├── Managed ├── Assembly-CSharp.dll ├── Mono.Security.dll ├── System.Core.dll ├── System.dll ├── UnityEngine.Networking.dll ├── UnityEngine.UI.dll ├── UnityEngine.dll ├── UnityEngine.dll.mdb └── mscorlib.dll ├── Mono ├── MonoPosixHelper.dll ├── etc │ └── mono │ │ ├── 1.0 │ │ ├── DefaultWsdlHelpGenerator.aspx │ │ └── machine.config │ │ ├── 2.0 │ │ ├── Browsers │ │ │ └── Compat.browser │ │ ├── DefaultWsdlHelpGenerator.aspx │ │ ├── machine.config │ │ ├── settings.map │ │ └── web.config │ │ ├── browscap.ini │ │ ├── config │ │ └── mconfig │ │ └── config.xml └── mono.dll ├── Resources ├── unity default resources └── unity_builtin_extra ├── app.info ├── globalgamemanagers ├── globalgamemanagers.assets ├── level0 ├── output_log.txt ├── sharedassets0.assets ├── sharedassets0.assets.resS └── sharedassets0.resource /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | 4 | # Custom for Visual Studio 5 | *.cs diff=csharp 6 | 7 | # Standard to msysgit 8 | *.doc diff=astextplain 9 | *.DOC diff=astextplain 10 | *.docx diff=astextplain 11 | *.DOCX diff=astextplain 12 | *.dot diff=astextplain 13 | *.DOT diff=astextplain 14 | *.pdf diff=astextplain 15 | *.PDF diff=astextplain 16 | *.rtf diff=astextplain 17 | *.RTF diff=astextplain 18 | -------------------------------------------------------------------------------- /TapZag/Assets/AssetStoreTools.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1705aa979bd2ade44b3669a69f125cad 3 | folderAsset: yes 4 | timeCreated: 1497124223 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /TapZag/Assets/AssetStoreTools/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 07618cdbf99d58342a87e45d159722a4 3 | folderAsset: yes 4 | timeCreated: 1497123606 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /TapZag/Assets/AssetStoreTools/Editor/AssetStoreTools.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderDarren/ZigZagClone/f77cf408bde4a5aa55e618e1ca5c1f4959a61f2d/TapZag/Assets/AssetStoreTools/Editor/AssetStoreTools.dll -------------------------------------------------------------------------------- /TapZag/Assets/AssetStoreTools/Editor/AssetStoreTools.dll.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f02b3fe0a866fca419671914a860554a 3 | PluginImporter: 4 | serializedVersion: 2 5 | iconMap: {} 6 | executionOrder: {} 7 | isPreloaded: 0 8 | isOverridable: 0 9 | platformData: 10 | data: 11 | first: 12 | Any: 13 | second: 14 | enabled: 0 15 | settings: {} 16 | data: 17 | first: 18 | Editor: Editor 19 | second: 20 | enabled: 1 21 | settings: 22 | DefaultValueInitialized: true 23 | data: 24 | first: 25 | Windows Store Apps: WindowsStoreApps 26 | second: 27 | enabled: 0 28 | settings: 29 | CPU: AnyCPU 30 | userData: 31 | assetBundleName: 32 | assetBundleVariant: 33 | -------------------------------------------------------------------------------- /TapZag/Assets/AssetStoreTools/Editor/AssetStoreToolsExtra.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderDarren/ZigZagClone/f77cf408bde4a5aa55e618e1ca5c1f4959a61f2d/TapZag/Assets/AssetStoreTools/Editor/AssetStoreToolsExtra.dll -------------------------------------------------------------------------------- /TapZag/Assets/AssetStoreTools/Editor/AssetStoreToolsExtra.dll.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 07e97bd03b7bdeb40bbc176326cd8d7a 3 | PluginImporter: 4 | serializedVersion: 2 5 | iconMap: {} 6 | executionOrder: {} 7 | isPreloaded: 0 8 | isOverridable: 0 9 | platformData: 10 | data: 11 | first: 12 | Any: 13 | second: 14 | enabled: 0 15 | settings: {} 16 | data: 17 | first: 18 | Editor: Editor 19 | second: 20 | enabled: 1 21 | settings: 22 | DefaultValueInitialized: true 23 | data: 24 | first: 25 | Windows Store Apps: WindowsStoreApps 26 | second: 27 | enabled: 0 28 | settings: 29 | CPU: AnyCPU 30 | userData: 31 | assetBundleName: 32 | assetBundleVariant: 33 | -------------------------------------------------------------------------------- /TapZag/Assets/AssetStoreTools/Editor/DroidSansMono.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderDarren/ZigZagClone/f77cf408bde4a5aa55e618e1ca5c1f4959a61f2d/TapZag/Assets/AssetStoreTools/Editor/DroidSansMono.ttf -------------------------------------------------------------------------------- /TapZag/Assets/AssetStoreTools/Editor/DroidSansMono.ttf.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 928f503de488e44408a8625d75d54c61 3 | TrueTypeFontImporter: 4 | serializedVersion: 2 5 | fontSize: 16 6 | forceTextureCase: -2 7 | characterSpacing: 1 8 | characterPadding: 0 9 | includeFontData: 1 10 | use2xBehaviour: 0 11 | fontNames: [] 12 | customCharacters: 13 | fontRenderingMode: 0 14 | userData: 15 | assetBundleName: 16 | assetBundleVariant: 17 | -------------------------------------------------------------------------------- /TapZag/Assets/AssetStoreTools/Editor/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderDarren/ZigZagClone/f77cf408bde4a5aa55e618e1ca5c1f4959a61f2d/TapZag/Assets/AssetStoreTools/Editor/icon.png -------------------------------------------------------------------------------- /TapZag/Assets/AssetStoreTools/Labels.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderDarren/ZigZagClone/f77cf408bde4a5aa55e618e1ca5c1f4959a61f2d/TapZag/Assets/AssetStoreTools/Labels.asset -------------------------------------------------------------------------------- /TapZag/Assets/AssetStoreTools/Labels.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5e46f2df7c37abd4898a0e7dde3fce23 3 | timeCreated: 1497123677 4 | licenseType: Free 5 | NativeFormatImporter: 6 | mainObjectFileID: 11400000 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /TapZag/Assets/Plugins.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b6cf77203952d2649a2687b3aeb74e30 3 | folderAsset: yes 4 | timeCreated: 1497126568 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /TapZag/Assets/Plugins/Android.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5d5f889f87a997643936cc1eb7d254a4 3 | folderAsset: yes 4 | timeCreated: 1497126568 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /TapZag/Assets/Plugins/Android/play-services-auth-11.0.0.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderDarren/ZigZagClone/f77cf408bde4a5aa55e618e1ca5c1f4959a61f2d/TapZag/Assets/Plugins/Android/play-services-auth-11.0.0.aar -------------------------------------------------------------------------------- /TapZag/Assets/Plugins/Android/play-services-auth-base-11.0.0.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderDarren/ZigZagClone/f77cf408bde4a5aa55e618e1ca5c1f4959a61f2d/TapZag/Assets/Plugins/Android/play-services-auth-base-11.0.0.aar -------------------------------------------------------------------------------- /TapZag/Assets/Plugins/Android/play-services-base-11.0.0.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderDarren/ZigZagClone/f77cf408bde4a5aa55e618e1ca5c1f4959a61f2d/TapZag/Assets/Plugins/Android/play-services-base-11.0.0.aar -------------------------------------------------------------------------------- /TapZag/Assets/Plugins/Android/play-services-basement-11.0.0.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderDarren/ZigZagClone/f77cf408bde4a5aa55e618e1ca5c1f4959a61f2d/TapZag/Assets/Plugins/Android/play-services-basement-11.0.0.aar -------------------------------------------------------------------------------- /TapZag/Assets/Plugins/Android/play-services-drive-11.0.0.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderDarren/ZigZagClone/f77cf408bde4a5aa55e618e1ca5c1f4959a61f2d/TapZag/Assets/Plugins/Android/play-services-drive-11.0.0.aar -------------------------------------------------------------------------------- /TapZag/Assets/Plugins/Android/play-services-games-11.0.0.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderDarren/ZigZagClone/f77cf408bde4a5aa55e618e1ca5c1f4959a61f2d/TapZag/Assets/Plugins/Android/play-services-games-11.0.0.aar -------------------------------------------------------------------------------- /TapZag/Assets/Plugins/Android/play-services-nearby-11.0.0.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderDarren/ZigZagClone/f77cf408bde4a5aa55e618e1ca5c1f4959a61f2d/TapZag/Assets/Plugins/Android/play-services-nearby-11.0.0.aar -------------------------------------------------------------------------------- /TapZag/Assets/Plugins/Android/play-services-tasks-11.0.0.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderDarren/ZigZagClone/f77cf408bde4a5aa55e618e1ca5c1f4959a61f2d/TapZag/Assets/Plugins/Android/play-services-tasks-11.0.0.aar -------------------------------------------------------------------------------- /TapZag/Assets/Plugins/Android/support-annotations-25.2.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderDarren/ZigZagClone/f77cf408bde4a5aa55e618e1ca5c1f4959a61f2d/TapZag/Assets/Plugins/Android/support-annotations-25.2.0.jar -------------------------------------------------------------------------------- /TapZag/Assets/Plugins/Android/support-compat-25.2.0.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderDarren/ZigZagClone/f77cf408bde4a5aa55e618e1ca5c1f4959a61f2d/TapZag/Assets/Plugins/Android/support-compat-25.2.0.aar -------------------------------------------------------------------------------- /TapZag/Assets/Plugins/Android/support-compat-25.2.0.aar.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 456e96d08189b4243a44bd41649c2208 3 | labels: 4 | - gpsr 5 | timeCreated: 1497126570 6 | licenseType: Free 7 | PluginImporter: 8 | serializedVersion: 2 9 | iconMap: {} 10 | executionOrder: {} 11 | isPreloaded: 0 12 | isOverridable: 0 13 | platformData: 14 | data: 15 | first: 16 | Android: Android 17 | second: 18 | enabled: 1 19 | settings: {} 20 | data: 21 | first: 22 | Any: 23 | second: 24 | enabled: 0 25 | settings: {} 26 | data: 27 | first: 28 | Editor: Editor 29 | second: 30 | enabled: 0 31 | settings: 32 | DefaultValueInitialized: true 33 | userData: 34 | assetBundleName: 35 | assetBundleVariant: 36 | -------------------------------------------------------------------------------- /TapZag/Assets/Plugins/Android/support-core-ui-25.2.0.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderDarren/ZigZagClone/f77cf408bde4a5aa55e618e1ca5c1f4959a61f2d/TapZag/Assets/Plugins/Android/support-core-ui-25.2.0.aar -------------------------------------------------------------------------------- /TapZag/Assets/Plugins/Android/support-core-ui-25.2.0.aar.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6256a13c3f2260a4d93fb17fa902eff7 3 | labels: 4 | - gpsr 5 | timeCreated: 1497126570 6 | licenseType: Free 7 | PluginImporter: 8 | serializedVersion: 2 9 | iconMap: {} 10 | executionOrder: {} 11 | isPreloaded: 0 12 | isOverridable: 0 13 | platformData: 14 | data: 15 | first: 16 | Android: Android 17 | second: 18 | enabled: 1 19 | settings: {} 20 | data: 21 | first: 22 | Any: 23 | second: 24 | enabled: 0 25 | settings: {} 26 | data: 27 | first: 28 | Editor: Editor 29 | second: 30 | enabled: 0 31 | settings: 32 | DefaultValueInitialized: true 33 | userData: 34 | assetBundleName: 35 | assetBundleVariant: 36 | -------------------------------------------------------------------------------- /TapZag/Assets/Plugins/Android/support-core-utils-25.2.0.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderDarren/ZigZagClone/f77cf408bde4a5aa55e618e1ca5c1f4959a61f2d/TapZag/Assets/Plugins/Android/support-core-utils-25.2.0.aar -------------------------------------------------------------------------------- /TapZag/Assets/Plugins/Android/support-fragment-25.2.0.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderDarren/ZigZagClone/f77cf408bde4a5aa55e618e1ca5c1f4959a61f2d/TapZag/Assets/Plugins/Android/support-fragment-25.2.0.aar -------------------------------------------------------------------------------- /TapZag/Assets/Plugins/Android/support-fragment-25.2.0.aar.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 93dfaca7cd6540d45863582b69cf96d2 3 | labels: 4 | - gpsr 5 | timeCreated: 1497126570 6 | licenseType: Free 7 | PluginImporter: 8 | serializedVersion: 2 9 | iconMap: {} 10 | executionOrder: {} 11 | isPreloaded: 0 12 | isOverridable: 0 13 | platformData: 14 | data: 15 | first: 16 | Android: Android 17 | second: 18 | enabled: 1 19 | settings: {} 20 | data: 21 | first: 22 | Any: 23 | second: 24 | enabled: 0 25 | settings: {} 26 | data: 27 | first: 28 | Editor: Editor 29 | second: 30 | enabled: 0 31 | settings: 32 | DefaultValueInitialized: true 33 | userData: 34 | assetBundleName: 35 | assetBundleVariant: 36 | -------------------------------------------------------------------------------- /TapZag/Assets/Plugins/Android/support-media-compat-25.2.0.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderDarren/ZigZagClone/f77cf408bde4a5aa55e618e1ca5c1f4959a61f2d/TapZag/Assets/Plugins/Android/support-media-compat-25.2.0.aar -------------------------------------------------------------------------------- /TapZag/Assets/Plugins/Android/support-v4-25.2.0.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderDarren/ZigZagClone/f77cf408bde4a5aa55e618e1ca5c1f4959a61f2d/TapZag/Assets/Plugins/Android/support-v4-25.2.0.aar -------------------------------------------------------------------------------- /TapZag/Assets/Plugins/Android/support-v4-25.2.0.aar.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 708707a9d5de2564bbce5445c91033d9 3 | labels: 4 | - gpsr 5 | timeCreated: 1497126570 6 | licenseType: Free 7 | PluginImporter: 8 | serializedVersion: 2 9 | iconMap: {} 10 | executionOrder: {} 11 | isPreloaded: 0 12 | isOverridable: 0 13 | platformData: 14 | data: 15 | first: 16 | Android: Android 17 | second: 18 | enabled: 1 19 | settings: {} 20 | data: 21 | first: 22 | Any: 23 | second: 24 | enabled: 0 25 | settings: {} 26 | data: 27 | first: 28 | Editor: Editor 29 | second: 30 | enabled: 0 31 | settings: 32 | DefaultValueInitialized: true 33 | userData: 34 | assetBundleName: 35 | assetBundleVariant: 36 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 21c4228739948bd4dbdabcfc4e09632f 3 | folderAsset: yes 4 | timeCreated: 1497124223 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/Fonts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9a2fa2fff89d907488e326007a7710d8 3 | folderAsset: yes 4 | timeCreated: 1497128327 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/Fonts/KOZGOPR6N-BOLD.OTF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderDarren/ZigZagClone/f77cf408bde4a5aa55e618e1ca5c1f4959a61f2d/TapZag/Assets/RC_Clones/Fonts/KOZGOPR6N-BOLD.OTF -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/Fonts/KOZGOPR6N-BOLD.OTF.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 12ea979e4e9863942b6f1c1d8a1967dc 3 | timeCreated: 1497128141 4 | licenseType: Free 5 | TrueTypeFontImporter: 6 | serializedVersion: 4 7 | fontSize: 16 8 | forceTextureCase: -2 9 | characterSpacing: 0 10 | characterPadding: 1 11 | includeFontData: 1 12 | fontName: Kozuka Gothic Pr6N 13 | fontNames: 14 | - Kozuka Gothic Pr6N 15 | fallbackFontReferences: [] 16 | customCharacters: 17 | fontRenderingMode: 0 18 | ascentCalculationMode: 1 19 | userData: 20 | assetBundleName: 21 | assetBundleVariant: 22 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/Fonts/KOZGOPR6N-EXTRALIGHT.OTF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderDarren/ZigZagClone/f77cf408bde4a5aa55e618e1ca5c1f4959a61f2d/TapZag/Assets/RC_Clones/Fonts/KOZGOPR6N-EXTRALIGHT.OTF -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/Fonts/KOZGOPR6N-EXTRALIGHT.OTF.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 651dcb655177c6d4eb91455b6046b248 3 | timeCreated: 1497128141 4 | licenseType: Free 5 | TrueTypeFontImporter: 6 | serializedVersion: 4 7 | fontSize: 16 8 | forceTextureCase: -2 9 | characterSpacing: 0 10 | characterPadding: 1 11 | includeFontData: 1 12 | fontName: Kozuka Gothic Pr6N 13 | fontNames: 14 | - Kozuka Gothic Pr6N 15 | fallbackFontReferences: 16 | - {fileID: 12800000, guid: 46fa6d78cbe1dbe47a0333fd3f70bbef, type: 3} 17 | - {fileID: 12800000, guid: 12ea979e4e9863942b6f1c1d8a1967dc, type: 3} 18 | customCharacters: 19 | fontRenderingMode: 0 20 | ascentCalculationMode: 1 21 | userData: 22 | assetBundleName: 23 | assetBundleVariant: 24 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/Fonts/KOZGOPR6N-HEAVY.OTF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderDarren/ZigZagClone/f77cf408bde4a5aa55e618e1ca5c1f4959a61f2d/TapZag/Assets/RC_Clones/Fonts/KOZGOPR6N-HEAVY.OTF -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/Fonts/KOZGOPR6N-HEAVY.OTF.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 854c330efcb506049b61842fc8707e14 3 | timeCreated: 1497128141 4 | licenseType: Free 5 | TrueTypeFontImporter: 6 | serializedVersion: 4 7 | fontSize: 16 8 | forceTextureCase: -2 9 | characterSpacing: 0 10 | characterPadding: 1 11 | includeFontData: 1 12 | fontName: Kozuka Gothic Pr6N 13 | fontNames: 14 | - Kozuka Gothic Pr6N 15 | fallbackFontReferences: 16 | - {fileID: 12800000, guid: 651dcb655177c6d4eb91455b6046b248, type: 3} 17 | - {fileID: 12800000, guid: 46fa6d78cbe1dbe47a0333fd3f70bbef, type: 3} 18 | - {fileID: 12800000, guid: 12ea979e4e9863942b6f1c1d8a1967dc, type: 3} 19 | customCharacters: 20 | fontRenderingMode: 0 21 | ascentCalculationMode: 1 22 | userData: 23 | assetBundleName: 24 | assetBundleVariant: 25 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/Fonts/KOZGOPR6N-LIGHT.OTF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderDarren/ZigZagClone/f77cf408bde4a5aa55e618e1ca5c1f4959a61f2d/TapZag/Assets/RC_Clones/Fonts/KOZGOPR6N-LIGHT.OTF -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/Fonts/KOZGOPR6N-LIGHT.OTF.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 46fa6d78cbe1dbe47a0333fd3f70bbef 3 | timeCreated: 1497128141 4 | licenseType: Free 5 | TrueTypeFontImporter: 6 | serializedVersion: 4 7 | fontSize: 16 8 | forceTextureCase: -2 9 | characterSpacing: 0 10 | characterPadding: 1 11 | includeFontData: 1 12 | fontName: Kozuka Gothic Pr6N 13 | fontNames: 14 | - Kozuka Gothic Pr6N 15 | fallbackFontReferences: 16 | - {fileID: 12800000, guid: 12ea979e4e9863942b6f1c1d8a1967dc, type: 3} 17 | customCharacters: 18 | fontRenderingMode: 0 19 | ascentCalculationMode: 1 20 | userData: 21 | assetBundleName: 22 | assetBundleVariant: 23 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/Fonts/KOZGOPR6N-MEDIUM.OTF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderDarren/ZigZagClone/f77cf408bde4a5aa55e618e1ca5c1f4959a61f2d/TapZag/Assets/RC_Clones/Fonts/KOZGOPR6N-MEDIUM.OTF -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/Fonts/KOZGOPR6N-REGULAR.OTF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderDarren/ZigZagClone/f77cf408bde4a5aa55e618e1ca5c1f4959a61f2d/TapZag/Assets/RC_Clones/Fonts/KOZGOPR6N-REGULAR.OTF -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cdd3f194b6807a842b684710b90dd057 3 | folderAsset: yes 4 | timeCreated: 1497125288 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fc0c7adaeb87b4bee9c859246ea804e6 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/BasicApi.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0a565e85253b345878939982a360e0b6 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/BasicApi/Achievement.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b20fc2fda369044ba962d1d9115c4c63 3 | timeCreated: 1438642347 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/BasicApi/CommonStatusCodes.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cd54f7a2763f74ce191bdd3efa0a44d5 3 | timeCreated: 1444243723 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/BasicApi/CommonTypes.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1c5d1cb1974d14c0c8b32fcf00089556 3 | timeCreated: 1438642346 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/BasicApi/DummyClient.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2c600182c9892457e92f885549bd838a 3 | timeCreated: 1438642346 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/BasicApi/Events.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 672ea858ca3b74efb9d0981849563065 3 | folderAsset: yes 4 | timeCreated: 1435699548 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/BasicApi/Events/IEvent.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7e4f4f47218d14208a8ae0f676e1bca4 3 | timeCreated: 1444412369 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/BasicApi/Events/IEventsClient.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: da57ba264ec114c57b8352923847ec34 3 | timeCreated: 1444412370 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/BasicApi/IPlayGamesClient.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9138e04e4459148c680055b40ad324c0 3 | timeCreated: 1438642347 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/BasicApi/LeaderboardScoreData.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8e369c64e8c9f4571a8847f37848c37e 3 | timeCreated: 1438642347 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/BasicApi/Multiplayer.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2ec30ac4505764051aee129a034b25f1 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/BasicApi/Multiplayer/IRealTimeMultiplayerClient.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 68aa62eed73bf4b448d9f21dd702975b 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/BasicApi/Multiplayer/ITurnBasedMultiplayerClient.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9313e0ba5a20b49d6a88369fc1e13524 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/BasicApi/Multiplayer/Invitation.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 28a679d948b9b4be8bf507e2c05e9d7c 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/BasicApi/Multiplayer/MatchOutcome.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e53083b6904a24b629443e34f6223e2c 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/BasicApi/Multiplayer/Participant.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 84b392add142841f7ad24ffe64ca6364 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/BasicApi/Multiplayer/Player.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ef2d8e06eff4f4c70b05856139de7e37 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/BasicApi/Multiplayer/RealTimeMultiplayerListener.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 410e773606efe4b15bf0dfe3add022cb 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/BasicApi/Multiplayer/TurnBasedMatch.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6422a9e21a64449c7aa2b700c1c88ddd 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/BasicApi/Nearby.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c980790a380df4850b17a208e544d062 3 | folderAsset: yes 4 | timeCreated: 1435699549 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/BasicApi/Nearby/AdvertisingResult.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 941324a6338664af6a9faf5b88cad408 3 | timeCreated: 1444412369 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/BasicApi/Nearby/ConnectionRequest.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c7f9bb6b249224f99ad05a87d3e4ee34 3 | timeCreated: 1444412370 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/BasicApi/Nearby/ConnectionResponse.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ad6611af8d0204d0d8922a327d3d9ec0 3 | timeCreated: 1444412370 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/BasicApi/Nearby/DummyNearbyConnectionClient.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9b3f34a2bba13428789d02b53fd89a47 3 | timeCreated: 1444412369 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/BasicApi/Nearby/EndpointDetails.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9d9a087b0e20d4752b24f33a4a2bf977 3 | timeCreated: 1444412369 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/BasicApi/Nearby/INearbyConnectionClient.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cb64b5b444dd34de5bd308c7eed6e509 3 | timeCreated: 1444412370 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/BasicApi/Nearby/NearbyConnectionConfiguration.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 968ac90e4a9094a4a92df9da1ee1f884 3 | timeCreated: 1444412369 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/BasicApi/PlayGamesClientConfiguration.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1745f86410be744efb109ca787dd4a54 3 | timeCreated: 1435699549 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/BasicApi/PlayerStats.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0cf73f44d6d524deab1717d6e71e2c6d 3 | timeCreated: 1447293847 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/BasicApi/Quests.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6d072c04b795d4c7aaad3c4f41e6677e 3 | folderAsset: yes 4 | timeCreated: 1435699548 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/BasicApi/Quests/IQuest.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 26dddcd2ed6a74cc6bb24db80547dfe3 3 | timeCreated: 1435699549 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/BasicApi/Quests/IQuestMilestone.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a13b20507a61c4e4188557552262581a 3 | timeCreated: 1435699550 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/BasicApi/Quests/IQuestsClient.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4e34074b6cc8141f3913d8292f5e23f6 3 | timeCreated: 1435699549 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/BasicApi/SavedGame.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1bc47bd5631b849f88f2785c2d44019b 3 | folderAsset: yes 4 | timeCreated: 1435699548 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/BasicApi/SavedGame/ISavedGameClient.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5d4ff89980bdd4c9780aa3ceee54a51b 3 | timeCreated: 1435699549 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/BasicApi/SavedGame/ISavedGameMetadata.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a94650f478358403ea166d374b2a950c 3 | timeCreated: 1435699550 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/BasicApi/SavedGame/SavedGameMetadataUpdate.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 602d9e1c90f0144e79536115f3614478 3 | timeCreated: 1435699549 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/BasicApi/ScorePageToken.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3eade9d49f3e341ddb2ba8209e7ddf42 3 | timeCreated: 1438642346 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/BasicApi/Video.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e825b7041e9324fca9a906fcbe40104c 3 | folderAsset: yes 4 | timeCreated: 1489093652 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/BasicApi/Video/CaptureOverlayStateListener.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fc7fa937a5dfc443ba5cf1b14fa61812 3 | timeCreated: 1489093670 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/BasicApi/Video/VideoCapabilities.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 66d5aef9f073a4950932c5583b7584b2 3 | timeCreated: 1489093751 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/BasicApi/Video/VideoCaptureState.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cbf3fb68c2367460099289a57d1afecc 3 | timeCreated: 1489093779 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/BasicApi/Video/iVideoClient.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 35f4c590f605745519c321841317fae1 3 | timeCreated: 1489093712 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 11083f74e79584f50ad394be94e2caec 3 | folderAsset: yes 4 | timeCreated: 1435699548 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/Editor/GPGSAndroidSetupUI.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 41fe658b93aa24c709c540575965fdff 3 | timeCreated: 1444412369 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/Editor/GPGSDependencies.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f68b1911efe9d4dd596c12bf750c2bfe 3 | timeCreated: 1448995461 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/Editor/GPGSDocsUI.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 73cbcab28a27446ff9e06e06a040814f 3 | timeCreated: 1435699549 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/Editor/GPGSIOSSetupUI.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 64aa73c635d514a8d993bf9d5ae00588 3 | timeCreated: 1444412369 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/Editor/GPGSPostBuild.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1a7b050a8e8214613893df7d81dcc13c 3 | timeCreated: 1435699549 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/Editor/GPGSProjectSettings.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cf234a050ba25433f9386e20578ccf19 3 | timeCreated: 1435699550 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/Editor/GPGSStrings.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 992ecb564cf02408d9c5a1b44d958334 3 | timeCreated: 1435699550 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/Editor/GPGSUpgrader.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 357a64420a0c44b61a0ed7ca22c7f10f 3 | timeCreated: 1435699549 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/Editor/GPGSUtil.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fd01714f9ee99447996b878b1ac67540 3 | timeCreated: 1444412370 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/Editor/NearbyConnectionUI.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b64332a502e18436da5652adbf7e24a3 3 | timeCreated: 1435699550 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/Editor/PlistBuddyHelper.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dc5745fd45f954310ad2eb74ff51a584 3 | timeCreated: 1435699550 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/Editor/PostprocessBuildPlayer: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | echo "Running post-process build scripts." 3 | for script in `/bin/ls -1 Assets/GooglePlayGames/Editor | grep -i ^postprocessbuildplayer_`; do 4 | chmod +x "Assets/Editor/$script" 5 | echo "[[[ $script ]]]" 6 | "Assets/Editor/$script" "$@" 7 | done 8 | 9 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/Editor/PostprocessBuildPlayer.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cec9cbc4fad2a40149aee7732542a6e8 3 | timeCreated: 1435699549 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/Editor/template-AndroidManifest.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0e1f3c150256848b1ba98702cfb71220 3 | timeCreated: 1435699670 4 | licenseType: Pro 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/Editor/template-Constants.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7f2719cb8be514661b7b6aa9986bfe5f 3 | timeCreated: 1438642351 4 | licenseType: Pro 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/Editor/template-GameInfo.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c6fa1c0456d174d298bf8dd66f584e9e 3 | timeCreated: 1438386421 4 | licenseType: Pro 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/Editor/xcode.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 99a1beac574cf4e15b1fe9cfeb041f00 3 | folderAsset: yes 4 | timeCreated: 1437671595 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/Editor/xcode/Elements.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c632057fb6683498295339ee98183067 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/Editor/xcode/Lexer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 40f10b961a9a641bda05addd50a63aa8 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/Editor/xcode/Objects.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ef88d8b9914bd4544952c30fd2d41679 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/Editor/xcode/PBXProject.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2b7cd52d0b7824b128e5ad5e1e5e23ff 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/Editor/xcode/Parser.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7355e114630e64676923238c64eb134b 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/Editor/xcode/Sections.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f7d8d28aa80e245e9a938c28733b8b3e 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/Editor/xcode/Serializer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 25728e9e485ad41eea89c659ee4adac3 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/Editor/xcode/Utils.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e7e5628f7706a452695bf27bf70de445 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/GameInfo.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a722d413080904cc1bd07f4db21e1af1 3 | timeCreated: 1435699550 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/ISocialPlatform.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ef66268ee929544fb82bbef6ac13bafe 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/ISocialPlatform/PlayGamesAchievement.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e5354c32a5dc64372ba5102f7f787adf 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/ISocialPlatform/PlayGamesLeaderboard.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a027e4767bd0f41509b9ef6bd2f6080e 3 | timeCreated: 1438642347 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/ISocialPlatform/PlayGamesLocalUser.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3b5f03fe051cb4a41a3b5489bd63c24c 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/ISocialPlatform/PlayGamesPlatform.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c1de7754a6e7f4fb08b76780a184b3ca 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/ISocialPlatform/PlayGamesScore.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2a6e2425305ab455a91061b1eb955b38 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/ISocialPlatform/PlayGamesUserProfile.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ab1b90315f37e498a849765260dd436c 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/OurUtils.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dc34e4ac2f7e6420da72898e7b511098 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/OurUtils/Logger.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cde7cfd197b4a47edac2efe305e22e78 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/OurUtils/Misc.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ee52269f55933442fa5ea52e688ebec2 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/OurUtils/PlatformUtils.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 053811e778f3d4e3e98065f5db5bd005 3 | timeCreated: 1476649441 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/OurUtils/PlayGamesHelperObject.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7dd6f93ee6cb54945aea72a87542f720 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/Platforms.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 58fac82a81a11415b99606841f6040a6 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/Platforms/Android.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5c9032ae026414e1bbe872da53708edd 3 | folderAsset: yes 4 | timeCreated: 1441206393 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/Platforms/Android/AndroidClient.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4b28d84b2f6194e5eac9d4e53959692b 3 | timeCreated: 1441206393 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/Platforms/Android/AndroidTokenClient.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 67f70ff1fd41c49888b4b74ca7a78dfd 3 | timeCreated: 1441206393 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/Platforms/Android/Developers.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 814a0217c15574e5190e260048de0084 3 | folderAsset: yes 4 | timeCreated: 1444243323 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/Platforms/Android/Developers/JavaInterfaceProxy.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a8ac4ec32352646f1b5e5e85382d350f 3 | timeCreated: 1441085033 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/Platforms/Android/Developers/JavaObjWrapper.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3ab44a9bc15ef4b1ab3de8aeb57aff0f 3 | timeCreated: 1441048209 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/Platforms/Android/Gms.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1fab130f478d648d9a0b424e044e2b1f 3 | folderAsset: yes 4 | timeCreated: 1444420950 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/Platforms/Android/Gms/Common.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5942299d17ad44a93a13fd5f924cace5 3 | folderAsset: yes 4 | timeCreated: 1444420950 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/Platforms/Android/Gms/Common/Api.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 88364a712dcd34a7bb6f872126ba3e8a 3 | folderAsset: yes 4 | timeCreated: 1444420951 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/Platforms/Android/Gms/Common/Api/GoogleApiClient.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: aa624a89c32214bd3b89b6decec08f1e 3 | timeCreated: 1444412370 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/Platforms/Android/Gms/Common/Api/PendingResult.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2d1a54a878f224973aacf4fc60c68e85 3 | timeCreated: 1444412369 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/Platforms/Android/Gms/Common/Api/Result.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6a3c0cf021f19451d805633476dfdd48 3 | timeCreated: 1444412369 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/Platforms/Android/Gms/Common/Api/ResultCallback.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4eab4f8a3260e4b3aaa0d9609fcb8308 3 | timeCreated: 1444412369 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/Platforms/Android/Gms/Common/Api/ResultCallbackProxy.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4095ddf096da042c18fcfe496462783f 3 | timeCreated: 1444412369 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/Platforms/Android/Gms/Common/Api/Status.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ba6a7557840d74502b2e74c7df2a6bb0 3 | timeCreated: 1444412370 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/Platforms/Android/Gms/Common/ConnectionResult.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ac0957bcf1fc342898ef6bae74c76990 3 | timeCreated: 1444412370 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/Platforms/Android/Gms/Games.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 50d1239181422449dbd11323a89bdf22 3 | folderAsset: yes 4 | timeCreated: 1463673324 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/Platforms/Android/Gms/Games/Games.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4619c26341757456089b17b4c6259a32 3 | timeCreated: 1444412369 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/Platforms/Android/Gms/Games/Stats.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 81506890cc58a4b909bffd3232833a57 3 | folderAsset: yes 4 | timeCreated: 1444420950 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/Platforms/Android/Gms/Games/Stats/LoadPlayerStatsResultObject.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c6af5b8db7afd4cb699d253d8360473f 3 | timeCreated: 1444412370 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/Platforms/Android/Gms/Games/Stats/PlayerStats.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6feb732173ed8436499bb1b3e7de34a9 3 | timeCreated: 1444412369 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/Platforms/Android/Gms/Games/Stats/PlayerStatsObject.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 93a3f4625b2094819a9fd01fc97f6bbe 3 | timeCreated: 1444412369 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/Platforms/Android/Gms/Games/Stats/Stats.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0d517fe1a691e4be29e18141f9291d95 3 | timeCreated: 1444412368 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/Platforms/Android/Gms/Games/Stats/StatsObject.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d4f2cd4caf65e4dd89a774b76f324341 3 | timeCreated: 1444412370 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/Platforms/IClientImpl.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 087ab315858334a5cb48796605af611f 3 | timeCreated: 1441206393 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/Platforms/IOS.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 03c124945335f454cafa2a71c34554ca 3 | folderAsset: yes 4 | timeCreated: 1441206393 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/Platforms/IOS/IOSClient.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a8218d48b214a487ba7cee0a2da093f7 3 | timeCreated: 1441206393 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/Platforms/IOS/IOSTokenClient.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 17435fd4b38cf404297017b1057f423d 3 | timeCreated: 1441206393 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/Platforms/Native.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cb0d7c13fe19d4f62a3c7623ab6adc56 3 | folderAsset: yes 4 | timeCreated: 1435699549 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/Platforms/Native/CallbackUtils.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8401b8a550ea84ceab3373bb5ea03976 3 | timeCreated: 1435699550 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/Platforms/Native/ConversionUtils.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 00e08ce5b0e2044329c76dcf32fcec96 3 | timeCreated: 1435699549 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/Platforms/Native/Cwrapper.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 340b38f2c5d194a7981626db2b00200c 3 | folderAsset: yes 4 | timeCreated: 1435699549 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/Platforms/Native/Cwrapper/Achievement.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 93919c6703a8041b7b1dd436eede207b 3 | timeCreated: 1435699550 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/Platforms/Native/Cwrapper/AchievementManager.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fa98b1ebb2830448ea4642c07e412fd1 3 | timeCreated: 1435699551 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/Platforms/Native/Cwrapper/AndroidPlatformConfiguration.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5656c91638bae4595a216d465b90d1c1 3 | timeCreated: 1435699549 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/Platforms/Native/Cwrapper/Builder.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 99a41cbc265ba4a78a31e6320df48573 3 | timeCreated: 1435699550 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/Platforms/Native/Cwrapper/CaptureOverlayStateListenerHelper.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9d8723364d066411c8ce30303b826946 3 | timeCreated: 1489095136 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/Platforms/Native/Cwrapper/CommonErrorStatus.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 94acd2026fc204b8ea791743b76e60b8 3 | timeCreated: 1435699550 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/Platforms/Native/Cwrapper/EndpointDiscoveryListenerHelper.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c3cd80682843947e6a23a9819ca7b26d 3 | timeCreated: 1435699550 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/Platforms/Native/Cwrapper/Event.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 507c3afc8af6d4851ae71a49f97a1683 3 | timeCreated: 1435699549 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/Platforms/Native/Cwrapper/EventManager.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c67aa08a5cbff47ddade45cd921bf2e7 3 | timeCreated: 1435699550 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/Platforms/Native/Cwrapper/GameServices.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 44d97ab27deef4ac887ca452f0543589 3 | timeCreated: 1435699549 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/Platforms/Native/Cwrapper/InternalHooks.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d4489f20c4db64188a1a72c0a332c132 3 | timeCreated: 1435699550 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/Platforms/Native/Cwrapper/IosPlatformConfiguration.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 65638823b51a44166a0e97de84fab682 3 | timeCreated: 1435699549 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/Platforms/Native/Cwrapper/Leaderboard.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e9d816497596b46c0a989c9df3aff865 3 | timeCreated: 1435699551 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/Platforms/Native/Cwrapper/LeaderboardManager.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c5c920e283354414fb234b62e3d87a54 3 | timeCreated: 1435699550 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/Platforms/Native/Cwrapper/MessageListenerHelper.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2ca5544776d7d499c86eb93e871af9ba 3 | timeCreated: 1435699549 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/Platforms/Native/Cwrapper/MultiplayerInvitation.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 92753f25908ff4223978f64bc1025474 3 | timeCreated: 1435699550 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/Platforms/Native/Cwrapper/MultiplayerParticipant.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f1a143ae01f1344d59c6b033c195acf5 3 | timeCreated: 1435699551 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/Platforms/Native/Cwrapper/NearbyConnectionTypes.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 86d1083559a054564a0f4b8573559213 3 | timeCreated: 1435699550 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/Platforms/Native/Cwrapper/NearbyConnections.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2f5b542297e1345eba55b8616475a935 3 | timeCreated: 1435699549 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/Platforms/Native/Cwrapper/NearbyConnectionsBuilder.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1b0c47901f45c4a7db073f05e8f42e2d 3 | timeCreated: 1435699549 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/Platforms/Native/Cwrapper/NearbyConnectionsStatus.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ab6fb905cbbc340cb87a8bd95e562512 3 | timeCreated: 1435699550 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/Platforms/Native/Cwrapper/ParticipantResults.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3b97b334de3e84901a8ab16bb6ff94a3 3 | timeCreated: 1435699549 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/Platforms/Native/Cwrapper/Player.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a840219c1c2694e31ba4431e8db45f61 3 | timeCreated: 1435699550 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/Platforms/Native/Cwrapper/PlayerManager.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c4fe035361b0a4585a5ff89597181a5b 3 | timeCreated: 1435699550 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/Platforms/Native/Cwrapper/PlayerStats.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ad96a88355cd7411dbe6b3835431d64e 3 | timeCreated: 1446851302 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/Platforms/Native/Cwrapper/Quest.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 322dc8d5832d74ff99751235d18d37e2 3 | timeCreated: 1435699549 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/Platforms/Native/Cwrapper/QuestManager.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0e74ffa4523ca49bd9be435c5807b1fb 3 | timeCreated: 1435699549 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/Platforms/Native/Cwrapper/QuestMilestone.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 105be295fd7454c519377327b1dc5c1b 3 | timeCreated: 1435699549 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/Platforms/Native/Cwrapper/RealTimeEventListenerHelper.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2957d14b6cdfa48e18dc02cc168214f5 3 | timeCreated: 1435699549 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/Platforms/Native/Cwrapper/RealTimeMultiplayerManager.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 50f3afda8e0a14a49938b49bb5b31ebd 3 | timeCreated: 1435699549 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/Platforms/Native/Cwrapper/RealTimeRoom.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3fc4b2a674a1c456b9e282dd7f7b9fbd 3 | timeCreated: 1435699549 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/Platforms/Native/Cwrapper/RealTimeRoomConfig.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9b68962325568458da71b7303409a124 3 | timeCreated: 1435699550 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/Platforms/Native/Cwrapper/RealTimeRoomConfigBuilder.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1bf35f94fb9464bb38b9057a7f845fce 3 | timeCreated: 1435699549 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/Platforms/Native/Cwrapper/Score.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: be5afcf7451ee4eda81bf9d5bc8ac82c 3 | timeCreated: 1435699550 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/Platforms/Native/Cwrapper/ScorePage.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 41f96a77f771f48de873230602f23a8e 3 | timeCreated: 1435699549 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/Platforms/Native/Cwrapper/ScoreSummary.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8a535cebe212e40049e1f81cb3f68e8c 3 | timeCreated: 1435699550 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/Platforms/Native/Cwrapper/Sentinels.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a88f3f3baa2b74186a484326c2ce5abc 3 | timeCreated: 1435699550 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/Platforms/Native/Cwrapper/SnapshotManager.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 405c58d8508a24eada8662a46c3e00f8 3 | timeCreated: 1435699549 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/Platforms/Native/Cwrapper/SnapshotMetadata.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 56bc170fb078441319473f0950f61101 3 | timeCreated: 1435699549 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/Platforms/Native/Cwrapper/SnapshotMetadataChange.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f3401b01f5b834fefb925d6e4ef73ba2 3 | timeCreated: 1435699551 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/Platforms/Native/Cwrapper/SnapshotMetadataChangeBuilder.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a8cb67cc73bc34ec895b3a56f4a2ede3 3 | timeCreated: 1435699550 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/Platforms/Native/Cwrapper/StatsManager.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cd1603b0151b04b39bd5d87cf7066945 3 | timeCreated: 1446855958 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/Platforms/Native/Cwrapper/Status.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b96adfe02ac0341f5aac795614e91cfd 3 | timeCreated: 1435699550 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/Platforms/Native/Cwrapper/SymbolLocation.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 83a4d558d7f784a8c976083b47dfa750 3 | timeCreated: 1435699550 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/Platforms/Native/Cwrapper/TurnBasedMatch.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7dfcdf1178dc3410ab430dfc8ee60a30 3 | timeCreated: 1435699550 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/Platforms/Native/Cwrapper/TurnBasedMatchConfig.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bd33baf4bf8504c86abfee1feccac865 3 | timeCreated: 1435699550 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/Platforms/Native/Cwrapper/TurnBasedMatchConfigBuilder.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 710c897abc9bc4f9a87525208ed55c6d 3 | timeCreated: 1435699549 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/Platforms/Native/Cwrapper/TurnBasedMultiplayerManager.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 86736e677069a4a9f8c08125945108a3 3 | timeCreated: 1435699550 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/Platforms/Native/Cwrapper/Types.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 189334dedbac844beba2953dc9c7d223 3 | timeCreated: 1435699549 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/Platforms/Native/Cwrapper/VideoCapabilities.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 32b5e9e4db0d34dd4826e55fb366ceb8 3 | timeCreated: 1489095136 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/Platforms/Native/Cwrapper/VideoCaptureState.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: eb0ac2d9ccaf14d83b10bdc0cb8ccdd2 3 | timeCreated: 1489095136 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/Platforms/Native/Cwrapper/VideoManager.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a5dcd76575d8246a6aac4897b4694820 3 | timeCreated: 1489095136 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/Platforms/Native/JavaUtils.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 06b9b367df4894ddfa42df36bd4a13b2 3 | timeCreated: 1435699549 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/Platforms/Native/NativeClient.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 45855627dce52417eb0de782e7a8c5ae 3 | timeCreated: 1435699549 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/Platforms/Native/NativeEventClient.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7243e2ded63c2436ebdc8818570f9e10 3 | timeCreated: 1435699549 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/Platforms/Native/NativeNearbyConnectionClientFactory.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7c14f34eac09d4105b114ceb1a5a2bfc 3 | timeCreated: 1435699550 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/Platforms/Native/NativeNearbyConnectionsClient.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 550f9c6987fbe40bfb15f0e8a5367fbd 3 | timeCreated: 1435699549 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/Platforms/Native/NativeQuestClient.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 00e67e97029f64d44904d85583893fe9 3 | timeCreated: 1435699549 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/Platforms/Native/NativeRealtimeMultiplayerClient.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ccfb355d1c4e64812b2dc16d4ea45dd2 3 | timeCreated: 1435699550 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/Platforms/Native/NativeSavedGameClient.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8562f3a2471174f1d9cef2e6da5d7466 3 | timeCreated: 1435699550 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/Platforms/Native/NativeTurnBasedMultiplayerClient.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 67657391502934a31a1dda11383ae80b 3 | timeCreated: 1435699549 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/Platforms/Native/NativeVideoClient.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 18684d4d63d724290bf4a992ccc4a29f 3 | timeCreated: 1489095003 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/Platforms/Native/PInvoke.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b841169941dbd4364a10c25c46df42e2 3 | folderAsset: yes 4 | timeCreated: 1435699549 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/Platforms/Native/PInvoke/AchievementManager.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 48dde3a3db1ee4107863f97ebeedbb1e 3 | timeCreated: 1435699549 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/Platforms/Native/PInvoke/AndroidPlatformConfiguration.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a9b4a561644814b0cb1a799379d25b87 3 | timeCreated: 1435699550 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/Platforms/Native/PInvoke/BaseReferenceHolder.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 01dde458421cf400394d2f715db9e194 3 | timeCreated: 1435699549 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/Platforms/Native/PInvoke/Callbacks.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c0c2f898d8c6440eda4c21965f659bad 3 | timeCreated: 1435699550 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/Platforms/Native/PInvoke/CaptureOverlayStateListenerHelper.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 204e5a2e4bc10411b8dce9eaee719b73 3 | timeCreated: 1489095104 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/Platforms/Native/PInvoke/EventManager.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 30a18f20177474348b7570c7e9cf674f 3 | timeCreated: 1435699549 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/Platforms/Native/PInvoke/GameServices.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 24aad5bbddeab4e63a7e6cda0474f672 3 | timeCreated: 1435699549 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/Platforms/Native/PInvoke/GameServicesBuilder.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b631f8dfc39bb4a74b9cd329484a3219 3 | timeCreated: 1435699550 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/Platforms/Native/PInvoke/IosPlatformConfiguration.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 126129e2bc56243158fd9950e42c4093 3 | timeCreated: 1435699549 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/Platforms/Native/PInvoke/LeaderboardManager.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 850bd431cd9c742bf9911ac19e29dbed 3 | timeCreated: 1435699550 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/Platforms/Native/PInvoke/MultiplayerInvitation.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8335c852f5d2b445cb0a0db20bc9ffed 3 | timeCreated: 1435699550 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/Platforms/Native/PInvoke/MultiplayerParticipant.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ab54db1d0dbf847c287f2f10e047f40c 3 | timeCreated: 1435699550 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/Platforms/Native/PInvoke/NativeAchievement.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1eb968a9434514168a4d4a53d361a060 3 | timeCreated: 1435699549 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/Platforms/Native/PInvoke/NativeAppIdentifier.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d686c5310bc7043ba88c091f09a79ee9 3 | timeCreated: 1435699550 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/Platforms/Native/PInvoke/NativeConnectionRequest.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: faf8529568dc2456a9afb2f401b2d5f0 3 | timeCreated: 1435699551 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/Platforms/Native/PInvoke/NativeConnectionResponse.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 64938c8ce7cd949f7a5fc1f957145dc3 3 | timeCreated: 1435699549 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/Platforms/Native/PInvoke/NativeEndpointDetails.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 751f9de1ebb5641cda262a642570ca3e 3 | timeCreated: 1435699549 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/Platforms/Native/PInvoke/NativeEndpointDiscoveryListenerHelper.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f4f68519f617446e4b1a56243f7eb10d 3 | timeCreated: 1435699551 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/Platforms/Native/PInvoke/NativeEvent.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a7439c7cd66d7466eae0113a67d12762 3 | timeCreated: 1435699550 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/Platforms/Native/PInvoke/NativeLeaderboard.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1659006e78ceb4083af8f24969509d93 3 | timeCreated: 1438642346 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/Platforms/Native/PInvoke/NativeMessageListenerHelper.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: abab1b19ee68e4bb6886303f98192a92 3 | timeCreated: 1435699550 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/Platforms/Native/PInvoke/NativePlayer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b86742efe730142f49f32210c3fce3a1 3 | timeCreated: 1435699550 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/Platforms/Native/PInvoke/NativePlayerStats.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 77d08cc43aefe4810aa744711354df66 3 | timeCreated: 1446858585 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/Platforms/Native/PInvoke/NativeQuest.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d38e05cffb5964eabb4d190aebebc1e4 3 | timeCreated: 1435699550 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/Platforms/Native/PInvoke/NativeQuestMilestone.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 803b492145e2b4d4186a8383bd39fe95 3 | timeCreated: 1435699550 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/Platforms/Native/PInvoke/NativeRealTimeRoom.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0aa63d4d26feb48b286531acbccd3299 3 | timeCreated: 1435699549 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/Platforms/Native/PInvoke/NativeScore.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2051078aca75540068bda97f74ad1394 3 | timeCreated: 1438642346 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/Platforms/Native/PInvoke/NativeScoreEntry.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 59f8a3fb5539b436fa711335948cace3 3 | timeCreated: 1438642347 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/Platforms/Native/PInvoke/NativeScorePage.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5ef3f7db311d64eb0bfeb347f12950c5 3 | timeCreated: 1438642347 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/Platforms/Native/PInvoke/NativeScorePageToken.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 27acfd8c385f5466c9cc287797cafefd 3 | timeCreated: 1438642346 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/Platforms/Native/PInvoke/NativeScoreSummary.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6c7a73433694748d186bc0baa24aad58 3 | timeCreated: 1438642347 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/Platforms/Native/PInvoke/NativeSnapshotMetadata.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a352de0f5127747e5973d5afa9156429 3 | timeCreated: 1435699550 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/Platforms/Native/PInvoke/NativeSnapshotMetadataChange.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b5442649d0c1648958bc938ed2769b8d 3 | timeCreated: 1435699550 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/Platforms/Native/PInvoke/NativeStartAdvertisingResult.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7e8df3e7929b2470e9c46b842d809de6 3 | timeCreated: 1435699550 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/Platforms/Native/PInvoke/NativeTurnBasedMatch.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d1c08543e23e847c9b887c096f23dec7 3 | timeCreated: 1435699550 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/Platforms/Native/PInvoke/NativeVideoCapabilities.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0277c8648ca114258b9db6bd0981dc00 3 | timeCreated: 1489095104 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/Platforms/Native/PInvoke/NativeVideoCaptureState.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8a5eab8d60bd7425ba837fecdf73950d 3 | timeCreated: 1489095104 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/Platforms/Native/PInvoke/NearbyConnectionsManager.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 811ae69d1975740b3a5f19db2500a701 3 | timeCreated: 1435699550 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/Platforms/Native/PInvoke/NearbyConnectionsManagerBuilder.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a34444b8afbf3429b9c91aeb8c47f9cb 3 | timeCreated: 1435699550 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/Platforms/Native/PInvoke/PInvokeUtilities.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 331667ad404354c74946b5ca6b56a53e 3 | timeCreated: 1435699549 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/Platforms/Native/PInvoke/ParticipantResults.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 87a7e789d7a864a909d740512d07b183 3 | timeCreated: 1435699550 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/Platforms/Native/PInvoke/PlatformConfiguration.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 867fc15ac80c54b9b9097a54a2200bda 3 | timeCreated: 1435699550 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/Platforms/Native/PInvoke/PlayerManager.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 42840cf2e7c1f4eecb4c0cf6b7c2f8dc 3 | timeCreated: 1435699549 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/Platforms/Native/PInvoke/PlayerSelectUIResponse.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c6c9e9720d4a140628a030288b835c55 3 | timeCreated: 1435699550 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/Platforms/Native/PInvoke/QuestManager.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f835f0c66306249a8a5135f2b0cc89ba 3 | timeCreated: 1435699551 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/Platforms/Native/PInvoke/RealTimeEventListenerHelper.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: af3a22ae8a67646d3826438d217263ac 3 | timeCreated: 1435699550 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/Platforms/Native/PInvoke/RealtimeManager.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 473ca3ae229944fb69c0c30db98cffcb 3 | timeCreated: 1435699549 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/Platforms/Native/PInvoke/RealtimeRoomConfig.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 30231a612039746c281ded8452e74d8d 3 | timeCreated: 1435699549 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/Platforms/Native/PInvoke/RealtimeRoomConfigBuilder.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b156f3e1bc7904ca992dcfb21bb4e35a 3 | timeCreated: 1435699550 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/Platforms/Native/PInvoke/SnapshotManager.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: beb1dfa57ba644370bc03fd814106a0b 3 | timeCreated: 1435699550 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/Platforms/Native/PInvoke/StatsManager.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8287176a0dc5a407aa678fddcb6b95e3 3 | timeCreated: 1446858598 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/Platforms/Native/PInvoke/TurnBasedManager.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bd4fb8044286d439196d210ea5d6a6f3 3 | timeCreated: 1435699550 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/Platforms/Native/PInvoke/TurnBasedMatchConfig.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f523f07ab54ef4baca8580654bd21a8c 3 | timeCreated: 1435699551 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/Platforms/Native/PInvoke/TurnBasedMatchConfigBuilder.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 37783fe207eb946c49797a8d6525ba1a 3 | timeCreated: 1435699549 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/Platforms/Native/PInvoke/VideoManager.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ce8b50a33bc9942aa815c3e877cc53da 3 | timeCreated: 1489095044 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/Platforms/Native/UnsupportedSavedGamesClient.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f3d3bfa4f916c4c7daa671a2012fa952 3 | timeCreated: 1435699551 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/Platforms/NearbyConnectionClientFactory.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ff1201bd0205943ba9c881e50e38156b 3 | timeCreated: 1435699670 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/Platforms/PlayGamesClientFactory.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 435fc2d0dc0ba475e9c8b0796303d6dd 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/Platforms/TokenClient.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8c9a946582bf14116914768969f58fc3 3 | timeCreated: 1441206393 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/GooglePlayGames/PluginVersion.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4539142948daf4a26bf9cd6870ffa0b2 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/PlayServicesResolver.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: eb1d60aa6e5f4c7cba58c418ec214298 3 | folderAsset: yes 4 | timeCreated: 1448926447 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/PlayServicesResolver/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6760c671182840f48d3279ef5ffba6d6 3 | folderAsset: yes 4 | timeCreated: 1448926516 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/PlayServicesResolver/Editor/Google.IOSResolver.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderDarren/ZigZagClone/f77cf408bde4a5aa55e618e1ca5c1f4959a61f2d/TapZag/Assets/RC_Clones/GooglePlayDependencies/PlayServicesResolver/Editor/Google.IOSResolver.dll -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/PlayServicesResolver/Editor/Google.JarResolver.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderDarren/ZigZagClone/f77cf408bde4a5aa55e618e1ca5c1f4959a61f2d/TapZag/Assets/RC_Clones/GooglePlayDependencies/PlayServicesResolver/Editor/Google.JarResolver.dll -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/PlayServicesResolver/Editor/Google.VersionHandler.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderDarren/ZigZagClone/f77cf408bde4a5aa55e618e1ca5c1f4959a61f2d/TapZag/Assets/RC_Clones/GooglePlayDependencies/PlayServicesResolver/Editor/Google.VersionHandler.dll -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/PlayServicesResolver/Editor/play-services-resolver.txt: -------------------------------------------------------------------------------- 1 | Assets/PlayServicesResolver/Editor/Google.IOSResolver.dll 2 | Assets/PlayServicesResolver/Editor/Google.JarResolver.dll 3 | Assets/PlayServicesResolver/Editor/Google.VersionHandler.dll 4 | Assets/PlayServicesResolver/generate_gradle_prebuild.exe 5 | Assets/PlayServicesResolver/generate_gradle_prebuild.py 6 | Assets/PlayServicesResolver/gradle-template.zip 7 | Assets/PlayServicesResolver/volatile_paths.json 8 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/PlayServicesResolver/Editor/play-services-resolver.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 22bf900ab7c94bf5b3a512d7c606c015 3 | labels: 4 | - gvh 5 | - gvh_manifest 6 | - gvh_v1.2.23.0 7 | timeCreated: 1474401009 8 | licenseType: Pro 9 | TextScriptImporter: 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/PlayServicesResolver/generate_gradle_prebuild.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderDarren/ZigZagClone/f77cf408bde4a5aa55e618e1ca5c1f4959a61f2d/TapZag/Assets/RC_Clones/GooglePlayDependencies/PlayServicesResolver/generate_gradle_prebuild.exe -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/PlayServicesResolver/generate_gradle_prebuild.exe.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 88f68192ca634774852870095842df45 3 | labels: 4 | - gvh 5 | - gvh_v1.2.23.0 6 | timeCreated: 1487291130 7 | licenseType: Pro 8 | DefaultImporter: 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/PlayServicesResolver/generate_gradle_prebuild.py.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 76bcdba40516420a8205c359f5c0e790 3 | labels: 4 | - gvh 5 | - gvh_v1.2.23.0 6 | timeCreated: 1487291130 7 | licenseType: Pro 8 | DefaultImporter: 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/PlayServicesResolver/gradle-template.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderDarren/ZigZagClone/f77cf408bde4a5aa55e618e1ca5c1f4959a61f2d/TapZag/Assets/RC_Clones/GooglePlayDependencies/PlayServicesResolver/gradle-template.zip -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/PlayServicesResolver/gradle-template.zip.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 074a0d642270448ebec66284d15add85 3 | labels: 4 | - gvh 5 | - gvh_v1.2.23.0 6 | timeCreated: 1487291130 7 | licenseType: Pro 8 | DefaultImporter: 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/PlayServicesResolver/proguard-messaging-workaround.txt: -------------------------------------------------------------------------------- 1 | # The dependency on Analytics is a soft dependency. 2 | -dontwarn com.google.android.gms.measurement.AppMeasurement* -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/PlayServicesResolver/proguard-messaging-workaround.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0d85768a1a9ef49e4a6e58282446d36f 3 | timeCreated: 1495844925 4 | licenseType: Pro 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/PlayServicesResolver/proguard-unity.txt: -------------------------------------------------------------------------------- 1 | -keep class bitter.jnibridge.* { *; } 2 | -keep class com.unity3d.* { *; } 3 | -keep class org.fmod.* { *; } 4 | -dontobfuscate 5 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/PlayServicesResolver/proguard-unity.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 706aa59cba9ce426c8f7ada52cb7956d 3 | timeCreated: 1495844925 4 | licenseType: Pro 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/PlayServicesResolver/volatile_paths.json.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7736f289499e4296a1115cfec6f90ae4 3 | labels: 4 | - gvh 5 | - gvh_v1.2.23.0 6 | timeCreated: 1487291141 7 | licenseType: Pro 8 | TextScriptImporter: 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/Plugins.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5bef1e6745cb5864c9a9ac492dadcadf 3 | folderAsset: yes 4 | timeCreated: 1497124665 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/Plugins/Android.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c0d6640d8287da34b9b3fdc9549b7382 3 | folderAsset: yes 4 | timeCreated: 1497124665 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/Plugins/Android/MainLibProj.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bc7797263f0244acf8b7d3c4772ed7ae 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/Plugins/Android/MainLibProj/AndroidManifest.xml.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 45edbfc1136439c4683029778404bfde 3 | timeCreated: 1497124882 4 | licenseType: Free 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/Plugins/Android/MainLibProj/libs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a11c32f66dea54547a50d27919d17511 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/Plugins/Android/MainLibProj/libs/play-games-plugin-support.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderDarren/ZigZagClone/f77cf408bde4a5aa55e618e1ca5c1f4959a61f2d/TapZag/Assets/RC_Clones/GooglePlayDependencies/Plugins/Android/MainLibProj/libs/play-games-plugin-support.jar -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/Plugins/Android/MainLibProj/libs/play-games-plugin-support.jar.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 09cab4db56b584b7eb08fe468aa472ae 3 | timeCreated: 1427126277 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/Plugins/Android/MainLibProj/project.properties: -------------------------------------------------------------------------------- 1 | target=android-16 2 | android.library=true 3 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/Plugins/Android/MainLibProj/project.properties.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6156f0fc2bafa4f0c86d61673c0068d0 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/Plugins/Android/libs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6a5a2a157e91440359408416cdc7f4ee 3 | folderAsset: yes 4 | timeCreated: 1435699548 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/Plugins/Android/libs/armeabi-v7a.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5975224251830415896c7dcadfa9f390 3 | folderAsset: yes 4 | timeCreated: 1435699549 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/Plugins/Android/libs/armeabi-v7a/libgpg.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderDarren/ZigZagClone/f77cf408bde4a5aa55e618e1ca5c1f4959a61f2d/TapZag/Assets/RC_Clones/GooglePlayDependencies/Plugins/Android/libs/armeabi-v7a/libgpg.so -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/Plugins/Android/libs/armeabi-v7a/libgpg.so.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 57aa46b63b9654e9d8ce996ff0ceca58 3 | timeCreated: 1446758825 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 | userData: 15 | assetBundleName: 16 | assetBundleVariant: 17 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/Plugins/Android/libs/x86.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c6ceddfb52c0648c7908e3a6b0397082 3 | folderAsset: yes 4 | timeCreated: 1435699549 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/Plugins/Android/libs/x86/libgpg.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderDarren/ZigZagClone/f77cf408bde4a5aa55e618e1ca5c1f4959a61f2d/TapZag/Assets/RC_Clones/GooglePlayDependencies/Plugins/Android/libs/x86/libgpg.so -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/Plugins/Android/libs/x86/libgpg.so.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7e798ba7a1f6f4ed68920a9a7089130b 3 | timeCreated: 1446758825 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 | userData: 15 | assetBundleName: 16 | assetBundleVariant: 17 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/Plugins/iOS.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 37582314a895046329ec0fd6f0296fbf 3 | folderAsset: yes 4 | timeCreated: 1496871860 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/Plugins/iOS/GPGSAppController.h.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 79ed87aa09d0d41f3b23148517526720 3 | timeCreated: 1435699670 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 | userData: 15 | assetBundleName: 16 | assetBundleVariant: 17 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/GooglePlayDependencies/Plugins/iOS/GPGSAppController.mm.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 02db2608742a147c1a6b058913219a4a 3 | timeCreated: 1435699670 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 | userData: 15 | assetBundleName: 16 | assetBundleVariant: 17 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/ZigZagGame.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 04fd6476e9f97ea44ac4edde18da5d05 3 | folderAsset: yes 4 | timeCreated: 1497125210 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/ZigZagGame/animation.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1ed339c07a4116f4da117b16b9eab744 3 | folderAsset: yes 4 | timeCreated: 1496263209 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/ZigZagGame/animation/animators.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2ce8580b06c0d1847af958cf0ae8d0d1 3 | folderAsset: yes 4 | timeCreated: 1496264495 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/ZigZagGame/animation/animators/Fade.controller: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderDarren/ZigZagClone/f77cf408bde4a5aa55e618e1ca5c1f4959a61f2d/TapZag/Assets/RC_Clones/ZigZagGame/animation/animators/Fade.controller -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/ZigZagGame/animation/animators/Fade.controller.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 231e5270fda56fd4b8dcb98733d5fd1b 3 | timeCreated: 1496272713 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | mainObjectFileID: 9100000 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/ZigZagGame/animation/animators/leftPanelPage.controller: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderDarren/ZigZagClone/f77cf408bde4a5aa55e618e1ca5c1f4959a61f2d/TapZag/Assets/RC_Clones/ZigZagGame/animation/animators/leftPanelPage.controller -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/ZigZagGame/animation/animators/leftPanelPage.controller.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 85bcd9de0a5c0784ebcb5bbd4a9747ac 3 | timeCreated: 1496263236 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | mainObjectFileID: 9100000 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/ZigZagGame/animation/animators/rightPanelPage.controller: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderDarren/ZigZagClone/f77cf408bde4a5aa55e618e1ca5c1f4959a61f2d/TapZag/Assets/RC_Clones/ZigZagGame/animation/animators/rightPanelPage.controller -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/ZigZagGame/animation/animators/rightPanelPage.controller.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 79bf02ac45927dd4688b7f6fee91c6c6 3 | timeCreated: 1496264250 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | mainObjectFileID: 9100000 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/ZigZagGame/animation/fadeIn.anim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderDarren/ZigZagClone/f77cf408bde4a5aa55e618e1ca5c1f4959a61f2d/TapZag/Assets/RC_Clones/ZigZagGame/animation/fadeIn.anim -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/ZigZagGame/animation/fadeIn.anim.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 287d84d3847ff7347b0182f0296432c3 3 | timeCreated: 1496272742 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | mainObjectFileID: 7400000 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/ZigZagGame/animation/fadeOut.anim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderDarren/ZigZagClone/f77cf408bde4a5aa55e618e1ca5c1f4959a61f2d/TapZag/Assets/RC_Clones/ZigZagGame/animation/fadeOut.anim -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/ZigZagGame/animation/fadeOut.anim.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 466852425039f6e40ba2a683653fe630 3 | timeCreated: 1496272713 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | mainObjectFileID: 7400000 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/ZigZagGame/animation/leftMenuSwipeDown.anim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderDarren/ZigZagClone/f77cf408bde4a5aa55e618e1ca5c1f4959a61f2d/TapZag/Assets/RC_Clones/ZigZagGame/animation/leftMenuSwipeDown.anim -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/ZigZagGame/animation/leftMenuSwipeDown.anim.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9420b2b0ef48dd04fb38fe85e53678e4 3 | timeCreated: 1496264073 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | mainObjectFileID: 7400000 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/ZigZagGame/animation/leftMenuSwipeUp.anim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderDarren/ZigZagClone/f77cf408bde4a5aa55e618e1ca5c1f4959a61f2d/TapZag/Assets/RC_Clones/ZigZagGame/animation/leftMenuSwipeUp.anim -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/ZigZagGame/animation/leftMenuSwipeUp.anim.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: db67e82123f672e42bc6d90314bbc6e3 3 | timeCreated: 1496263236 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | mainObjectFileID: 7400000 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/ZigZagGame/animation/rightMenuSwipeDown.anim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderDarren/ZigZagClone/f77cf408bde4a5aa55e618e1ca5c1f4959a61f2d/TapZag/Assets/RC_Clones/ZigZagGame/animation/rightMenuSwipeDown.anim -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/ZigZagGame/animation/rightMenuSwipeDown.anim.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3e68d93f8d4ede94ab74ddeb723ed02b 3 | timeCreated: 1496264406 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | mainObjectFileID: 7400000 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/ZigZagGame/animation/rightMenuSwipeUp.anim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderDarren/ZigZagClone/f77cf408bde4a5aa55e618e1ca5c1f4959a61f2d/TapZag/Assets/RC_Clones/ZigZagGame/animation/rightMenuSwipeUp.anim -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/ZigZagGame/animation/rightMenuSwipeUp.anim.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f73054d91cfeea74da8ba3f929853bd5 3 | timeCreated: 1496264250 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | mainObjectFileID: 7400000 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/ZigZagGame/materials.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e682002a36456f04ba12403f8d7a8ac8 3 | folderAsset: yes 4 | timeCreated: 1496158176 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/ZigZagGame/materials/orb.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderDarren/ZigZagClone/f77cf408bde4a5aa55e618e1ca5c1f4959a61f2d/TapZag/Assets/RC_Clones/ZigZagGame/materials/orb.mat -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/ZigZagGame/materials/orb.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: abd7fe0b67a05c64dab7a1c36190dd69 3 | timeCreated: 1496194345 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | mainObjectFileID: 2100000 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/ZigZagGame/materials/pickup.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderDarren/ZigZagClone/f77cf408bde4a5aa55e618e1ca5c1f4959a61f2d/TapZag/Assets/RC_Clones/ZigZagGame/materials/pickup.mat -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/ZigZagGame/materials/pickup.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cc0338344324b6349859e4bd42e38856 3 | timeCreated: 1496158727 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | mainObjectFileID: 2100000 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/ZigZagGame/materials/player.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderDarren/ZigZagClone/f77cf408bde4a5aa55e618e1ca5c1f4959a61f2d/TapZag/Assets/RC_Clones/ZigZagGame/materials/player.mat -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/ZigZagGame/materials/player.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5e43e864480003d448d0e4cb57618585 3 | timeCreated: 1496158727 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | mainObjectFileID: 2100000 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/ZigZagGame/materials/shadow.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderDarren/ZigZagClone/f77cf408bde4a5aa55e618e1ca5c1f4959a61f2d/TapZag/Assets/RC_Clones/ZigZagGame/materials/shadow.mat -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/ZigZagGame/materials/shadow.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 27ee5be75ffb56d42b54bedb28cf0d9d 3 | timeCreated: 1496180023 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | mainObjectFileID: 2100000 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/ZigZagGame/materials/sky.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderDarren/ZigZagClone/f77cf408bde4a5aa55e618e1ca5c1f4959a61f2d/TapZag/Assets/RC_Clones/ZigZagGame/materials/sky.mat -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/ZigZagGame/materials/sky.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a6cad9a66334a314c8555b000f5eb002 3 | timeCreated: 1496158364 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | mainObjectFileID: 2100000 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/ZigZagGame/materials/wall.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderDarren/ZigZagClone/f77cf408bde4a5aa55e618e1ca5c1f4959a61f2d/TapZag/Assets/RC_Clones/ZigZagGame/materials/wall.mat -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/ZigZagGame/materials/wall.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5b45d38a122d2a441ba78d54e84f99de 3 | timeCreated: 1496158487 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | mainObjectFileID: 2100000 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/ZigZagGame/models.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 422a225ad0845cc409a8e7fb2f2ef8cc 3 | folderAsset: yes 4 | timeCreated: 1496178283 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/ZigZagGame/models/Materials.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5cd147f27959eb448b56aafe9d9d973d 3 | folderAsset: yes 4 | timeCreated: 1497114692 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/ZigZagGame/models/Materials/Material.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderDarren/ZigZagClone/f77cf408bde4a5aa55e618e1ca5c1f4959a61f2d/TapZag/Assets/RC_Clones/ZigZagGame/models/Materials/Material.mat -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/ZigZagGame/models/Materials/Material.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f68d32342282b7746b5713d42a87a5b1 3 | timeCreated: 1497114692 4 | licenseType: Free 5 | NativeFormatImporter: 6 | mainObjectFileID: 2100000 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/ZigZagGame/models/pickup.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderDarren/ZigZagClone/f77cf408bde4a5aa55e618e1ca5c1f4959a61f2d/TapZag/Assets/RC_Clones/ZigZagGame/models/pickup.fbx -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/ZigZagGame/physic materials.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5338ca981d5fbf04ba309cf0dff89d28 3 | folderAsset: yes 4 | timeCreated: 1496783659 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/ZigZagGame/physic materials/PlayerPhysics.physicMaterial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderDarren/ZigZagClone/f77cf408bde4a5aa55e618e1ca5c1f4959a61f2d/TapZag/Assets/RC_Clones/ZigZagGame/physic materials/PlayerPhysics.physicMaterial -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/ZigZagGame/physic materials/PlayerPhysics.physicMaterial.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: af44763ff303c9140a77f915321753b4 3 | timeCreated: 1496503994 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | mainObjectFileID: 13400000 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/ZigZagGame/prefabs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ddf9443bf409b034580e4ec0e7987e10 3 | folderAsset: yes 4 | timeCreated: 1496158176 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/ZigZagGame/prefabs/LaunchPad.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderDarren/ZigZagClone/f77cf408bde4a5aa55e618e1ca5c1f4959a61f2d/TapZag/Assets/RC_Clones/ZigZagGame/prefabs/LaunchPad.prefab -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/ZigZagGame/prefabs/LaunchPad.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7acf8cd3519da2d4fbae48ebcf6ff2fe 3 | timeCreated: 1496171589 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | mainObjectFileID: 100100000 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/ZigZagGame/prefabs/Orb.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderDarren/ZigZagClone/f77cf408bde4a5aa55e618e1ca5c1f4959a61f2d/TapZag/Assets/RC_Clones/ZigZagGame/prefabs/Orb.prefab -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/ZigZagGame/prefabs/Orb.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 87f2cd1b8c2334b42847453e2882048a 3 | timeCreated: 1496194434 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | mainObjectFileID: 100100000 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/ZigZagGame/prefabs/Player.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderDarren/ZigZagClone/f77cf408bde4a5aa55e618e1ca5c1f4959a61f2d/TapZag/Assets/RC_Clones/ZigZagGame/prefabs/Player.prefab -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/ZigZagGame/prefabs/Player.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a3980b49007869a499f9f53fa8c48730 3 | timeCreated: 1496233155 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | mainObjectFileID: 100100000 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/ZigZagGame/prefabs/Wall.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderDarren/ZigZagClone/f77cf408bde4a5aa55e618e1ca5c1f4959a61f2d/TapZag/Assets/RC_Clones/ZigZagGame/prefabs/Wall.prefab -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/ZigZagGame/prefabs/Wall.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5cd78246c106cfb4d86d0738123797d3 3 | timeCreated: 1496159956 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | mainObjectFileID: 100100000 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/ZigZagGame/prefabs/pickup.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderDarren/ZigZagClone/f77cf408bde4a5aa55e618e1ca5c1f4959a61f2d/TapZag/Assets/RC_Clones/ZigZagGame/prefabs/pickup.prefab -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/ZigZagGame/prefabs/pickup.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8ae38c8ccae7f2a4db1d767313713f70 3 | timeCreated: 1496178290 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | mainObjectFileID: 100100000 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/ZigZagGame/scenes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3bdaeeeb76aedf54b8755052d1abf93f 3 | folderAsset: yes 4 | timeCreated: 1496158176 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/ZigZagGame/scenes/game.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderDarren/ZigZagClone/f77cf408bde4a5aa55e618e1ca5c1f4959a61f2d/TapZag/Assets/RC_Clones/ZigZagGame/scenes/game.unity -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/ZigZagGame/scenes/game.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f6532f02a9b24ed4da655eaf50c98141 3 | timeCreated: 1496158218 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/ZigZagGame/scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 619a8f4d873d42f4c95a5c266e38232b 3 | folderAsset: yes 4 | timeCreated: 1496158176 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/ZigZagGame/scripts/data.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dfce4e7f4b734ee40ac02b1cff51be68 3 | folderAsset: yes 4 | timeCreated: 1496258839 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/ZigZagGame/scripts/data/DataStorage.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6db492d6bd7e5474cbc496f7c1b2c13a 3 | timeCreated: 1496343338 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/ZigZagGame/scripts/data/GPGSIds.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a0e69c4ca76e8f3438c27cd5ce1c12fb 3 | timeCreated: 1496433422 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/ZigZagGame/scripts/data/ProgressManager.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cde521e9949daf6438965d17dab1ac60 3 | timeCreated: 1496258872 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/ZigZagGame/scripts/data/SessionManager.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a2207e44a4f4c4e44a099d9c447d4b8d 3 | timeCreated: 1496343338 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/ZigZagGame/scripts/game.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: aa40d0bb1ac4628478588f93a2641003 3 | folderAsset: yes 4 | timeCreated: 1496258844 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/ZigZagGame/scripts/game/AudioManager.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8d8170844e9885f478023bfe9a6b1416 3 | timeCreated: 1496352390 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/ZigZagGame/scripts/game/CameraController.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d3cbd5644cac1a249b7c21bef812e4bb 3 | timeCreated: 1496259156 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/ZigZagGame/scripts/game/GameManager.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 879070de612de4848b00a894e6b9647c 3 | timeCreated: 1496169315 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/ZigZagGame/scripts/game/Orb.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bb18d96edf1da4f4c958e310b73c70d4 3 | timeCreated: 1496192601 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/ZigZagGame/scripts/game/Pickup.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c7cf9d8961379c04581a52bfa07b7a62 3 | timeCreated: 1496178046 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/ZigZagGame/scripts/game/Pool.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0d4384f16ea0e7747860a38edf08af84 3 | timeCreated: 1496160109 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/ZigZagGame/scripts/game/SceneLoader.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 278431c5bb09f764cabd0b89904d1684 3 | timeCreated: 1496341437 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/ZigZagGame/scripts/game/Shadow.cs: -------------------------------------------------------------------------------- 1 | using System.Collections; 2 | using System.Collections.Generic; 3 | using UnityEngine; 4 | 5 | namespace RC_Projects { 6 | namespace ZigZag { 7 | 8 | public class Shadow : MonoBehaviour { 9 | 10 | public Transform plane; 11 | 12 | RaycastHit hit; 13 | 14 | void Update() { 15 | if (Physics.Raycast(transform.position, Vector3.down, out hit, 50)) { 16 | plane.position = hit.point + Vector3.up * 0.02f; 17 | plane.gameObject.SetActive(true); 18 | } 19 | else { 20 | plane.gameObject.SetActive(false); 21 | } 22 | } 23 | } 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/ZigZagGame/scripts/game/Shadow.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d55bf8921e521de49a516167dbf75d68 3 | timeCreated: 1496245384 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/ZigZagGame/scripts/game/TapController.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4a1682e7505129a46a648baed5e0b3bf 3 | timeCreated: 1496168519 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/ZigZagGame/scripts/game/Types.cs: -------------------------------------------------------------------------------- 1 | namespace RC_Projects { 2 | namespace ZigZag { 3 | 4 | /// 5 | /// Place app-shared custom types here 6 | /// 7 | namespace Types { 8 | public enum PageType { 9 | None, 10 | MenuLeft, 11 | MenuRight, 12 | Fade, 13 | Hud, 14 | GameOver 15 | } 16 | 17 | public enum SoundType { 18 | Click, 19 | Die, 20 | Pickup, 21 | Tap 22 | } 23 | } 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/ZigZagGame/scripts/game/Types.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b5b610b88ce6da94d9f6626b7f26fcfb 3 | timeCreated: 1496336837 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/ZigZagGame/scripts/game/Wall.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2d623c67c29e6da47af9ef2f4979f5a6 3 | timeCreated: 1496163122 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/ZigZagGame/scripts/game/WallSpawner.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9c5df7d08e2d17848b16f82e20281503 3 | timeCreated: 1496159997 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/ZigZagGame/scripts/menu.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9910982736effd64ba5fa166388d81ca 3 | folderAsset: yes 4 | timeCreated: 1496265037 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/ZigZagGame/scripts/menu/AudioToggleEvent.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: df8a658d2d4c137488580e9128717db7 3 | timeCreated: 1496272321 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/ZigZagGame/scripts/menu/ButtonEvent.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3314be385b014c64c83158b5b3425d53 3 | timeCreated: 1496268108 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/ZigZagGame/scripts/menu/OpenAchievementsEvent.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 80c76a271fd3b67458d17792b2e8e8c7 3 | timeCreated: 1496272333 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/ZigZagGame/scripts/menu/OpenLeaderboardsEvent.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2cdce06a71bc6f7408e1db3c4ff8d3aa 3 | timeCreated: 1496272345 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/ZigZagGame/scripts/menu/PageController.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9c649fa154c82be4cad1cf9cc84f2086 3 | timeCreated: 1496261252 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/ZigZagGame/scripts/menu/PageManager.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 85431b362caaa494eac47eaa59160903 3 | timeCreated: 1496336941 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/ZigZagGame/scripts/menu/StartGameEvent.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | 3 | namespace RC_Projects { 4 | namespace ZigZag { 5 | 6 | /// 7 | /// Child of ButtonEvent, a custom world space UI event class 8 | /// 9 | public class StartGameEvent : ButtonEvent { 10 | 11 | /// 12 | /// If clicked, request to start the game 13 | /// 14 | public override void OnClick() { 15 | if (!game.GameOver) return; 16 | base.OnClick(); 17 | game.StartGame(); 18 | } 19 | } 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/ZigZagGame/scripts/menu/StartGameEvent.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 96158c3adf1c78b4eb10382b4c27b686 3 | timeCreated: 1496265438 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/ZigZagGame/scripts/menu/StatText.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 935fff2eadf877947b2bb307dcf60b48 3 | timeCreated: 1496348153 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/ZigZagGame/scripts/menu/WorldSpaceEvents.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e738ce678a2edf442b650db8806447a8 3 | timeCreated: 1496268098 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/ZigZagGame/shaders.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 48a4dd092f056e446965ba1b1a7c529b 3 | folderAsset: yes 4 | timeCreated: 1496783667 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/ZigZagGame/shaders/BasicSurface.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 78a77f98146026b4e88c72bba144ce2a 3 | timeCreated: 1496783706 4 | licenseType: Pro 5 | ShaderImporter: 6 | defaultTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/ZigZagGame/shaders/BasicUnlit.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 508c3f81219f3cb4abd19c2035a41c83 3 | timeCreated: 1496783686 4 | licenseType: Pro 5 | ShaderImporter: 6 | defaultTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/ZigZagGame/sounds.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a1781da96ddcc3447be965cf6804651e 3 | folderAsset: yes 4 | timeCreated: 1496351798 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/ZigZagGame/sounds/click.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderDarren/ZigZagClone/f77cf408bde4a5aa55e618e1ca5c1f4959a61f2d/TapZag/Assets/RC_Clones/ZigZagGame/sounds/click.wav -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/ZigZagGame/sounds/click.wav.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 556c96c873ffb2247ba7ebdffad021d4 3 | timeCreated: 1496352324 4 | licenseType: Pro 5 | AudioImporter: 6 | serializedVersion: 6 7 | defaultSettings: 8 | loadType: 0 9 | sampleRateSetting: 0 10 | sampleRateOverride: 44100 11 | compressionFormat: 1 12 | quality: 1 13 | conversionMode: 0 14 | platformSettingOverrides: {} 15 | forceToMono: 0 16 | normalize: 1 17 | preloadAudioData: 1 18 | loadInBackground: 0 19 | 3D: 1 20 | userData: 21 | assetBundleName: 22 | assetBundleVariant: 23 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/ZigZagGame/sounds/die.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderDarren/ZigZagClone/f77cf408bde4a5aa55e618e1ca5c1f4959a61f2d/TapZag/Assets/RC_Clones/ZigZagGame/sounds/die.wav -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/ZigZagGame/sounds/die.wav.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9f7b052d2f42dc94a82c10d90ef1334a 3 | timeCreated: 1496352071 4 | licenseType: Pro 5 | AudioImporter: 6 | serializedVersion: 6 7 | defaultSettings: 8 | loadType: 0 9 | sampleRateSetting: 0 10 | sampleRateOverride: 44100 11 | compressionFormat: 1 12 | quality: 1 13 | conversionMode: 0 14 | platformSettingOverrides: {} 15 | forceToMono: 0 16 | normalize: 1 17 | preloadAudioData: 1 18 | loadInBackground: 0 19 | 3D: 1 20 | userData: 21 | assetBundleName: 22 | assetBundleVariant: 23 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/ZigZagGame/sounds/pickup.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderDarren/ZigZagClone/f77cf408bde4a5aa55e618e1ca5c1f4959a61f2d/TapZag/Assets/RC_Clones/ZigZagGame/sounds/pickup.wav -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/ZigZagGame/sounds/pickup.wav.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2d413542a122caa4095563a60ed84690 3 | timeCreated: 1496352286 4 | licenseType: Pro 5 | AudioImporter: 6 | serializedVersion: 6 7 | defaultSettings: 8 | loadType: 0 9 | sampleRateSetting: 0 10 | sampleRateOverride: 44100 11 | compressionFormat: 1 12 | quality: 1 13 | conversionMode: 0 14 | platformSettingOverrides: {} 15 | forceToMono: 0 16 | normalize: 1 17 | preloadAudioData: 1 18 | loadInBackground: 0 19 | 3D: 1 20 | userData: 21 | assetBundleName: 22 | assetBundleVariant: 23 | -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/ZigZagGame/sounds/tap.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderDarren/ZigZagClone/f77cf408bde4a5aa55e618e1ca5c1f4959a61f2d/TapZag/Assets/RC_Clones/ZigZagGame/sounds/tap.wav -------------------------------------------------------------------------------- /TapZag/Assets/RC_Clones/ZigZagGame/sounds/tap.wav.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 80011acaa0d85d64b9547ece608990b3 3 | timeCreated: 1496351874 4 | licenseType: Pro 5 | AudioImporter: 6 | serializedVersion: 6 7 | defaultSettings: 8 | loadType: 0 9 | sampleRateSetting: 0 10 | sampleRateOverride: 44100 11 | compressionFormat: 1 12 | quality: 1 13 | conversionMode: 0 14 | platformSettingOverrides: {} 15 | forceToMono: 0 16 | normalize: 1 17 | preloadAudioData: 1 18 | loadInBackground: 0 19 | 3D: 1 20 | userData: 21 | assetBundleName: 22 | assetBundleVariant: 23 | -------------------------------------------------------------------------------- /TapZag/Capture1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderDarren/ZigZagClone/f77cf408bde4a5aa55e618e1ca5c1f4959a61f2d/TapZag/Capture1.PNG -------------------------------------------------------------------------------- /TapZag/Capture2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderDarren/ZigZagClone/f77cf408bde4a5aa55e618e1ca5c1f4959a61f2d/TapZag/Capture2.PNG -------------------------------------------------------------------------------- /TapZag/Capture3.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderDarren/ZigZagClone/f77cf408bde4a5aa55e618e1ca5c1f4959a61f2d/TapZag/Capture3.PNG -------------------------------------------------------------------------------- /TapZag/Capture4.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderDarren/ZigZagClone/f77cf408bde4a5aa55e618e1ca5c1f4959a61f2d/TapZag/Capture4.PNG -------------------------------------------------------------------------------- /TapZag/Capture5.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderDarren/ZigZagClone/f77cf408bde4a5aa55e618e1ca5c1f4959a61f2d/TapZag/Capture5.PNG -------------------------------------------------------------------------------- /TapZag/ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderDarren/ZigZagClone/f77cf408bde4a5aa55e618e1ca5c1f4959a61f2d/TapZag/ProjectSettings/AudioManager.asset -------------------------------------------------------------------------------- /TapZag/ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderDarren/ZigZagClone/f77cf408bde4a5aa55e618e1ca5c1f4959a61f2d/TapZag/ProjectSettings/ClusterInputManager.asset -------------------------------------------------------------------------------- /TapZag/ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderDarren/ZigZagClone/f77cf408bde4a5aa55e618e1ca5c1f4959a61f2d/TapZag/ProjectSettings/DynamicsManager.asset -------------------------------------------------------------------------------- /TapZag/ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderDarren/ZigZagClone/f77cf408bde4a5aa55e618e1ca5c1f4959a61f2d/TapZag/ProjectSettings/EditorBuildSettings.asset -------------------------------------------------------------------------------- /TapZag/ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderDarren/ZigZagClone/f77cf408bde4a5aa55e618e1ca5c1f4959a61f2d/TapZag/ProjectSettings/EditorSettings.asset -------------------------------------------------------------------------------- /TapZag/ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderDarren/ZigZagClone/f77cf408bde4a5aa55e618e1ca5c1f4959a61f2d/TapZag/ProjectSettings/GraphicsSettings.asset -------------------------------------------------------------------------------- /TapZag/ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderDarren/ZigZagClone/f77cf408bde4a5aa55e618e1ca5c1f4959a61f2d/TapZag/ProjectSettings/InputManager.asset -------------------------------------------------------------------------------- /TapZag/ProjectSettings/NavMeshAreas.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderDarren/ZigZagClone/f77cf408bde4a5aa55e618e1ca5c1f4959a61f2d/TapZag/ProjectSettings/NavMeshAreas.asset -------------------------------------------------------------------------------- /TapZag/ProjectSettings/NetworkManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderDarren/ZigZagClone/f77cf408bde4a5aa55e618e1ca5c1f4959a61f2d/TapZag/ProjectSettings/NetworkManager.asset -------------------------------------------------------------------------------- /TapZag/ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderDarren/ZigZagClone/f77cf408bde4a5aa55e618e1ca5c1f4959a61f2d/TapZag/ProjectSettings/Physics2DSettings.asset -------------------------------------------------------------------------------- /TapZag/ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderDarren/ZigZagClone/f77cf408bde4a5aa55e618e1ca5c1f4959a61f2d/TapZag/ProjectSettings/ProjectSettings.asset -------------------------------------------------------------------------------- /TapZag/ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- 1 | m_EditorVersion: 5.6.0f3 2 | -------------------------------------------------------------------------------- /TapZag/ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderDarren/ZigZagClone/f77cf408bde4a5aa55e618e1ca5c1f4959a61f2d/TapZag/ProjectSettings/QualitySettings.asset -------------------------------------------------------------------------------- /TapZag/ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderDarren/ZigZagClone/f77cf408bde4a5aa55e618e1ca5c1f4959a61f2d/TapZag/ProjectSettings/TagManager.asset -------------------------------------------------------------------------------- /TapZag/ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderDarren/ZigZagClone/f77cf408bde4a5aa55e618e1ca5c1f4959a61f2d/TapZag/ProjectSettings/TimeManager.asset -------------------------------------------------------------------------------- /TapZag/ProjectSettings/UnityConnectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderDarren/ZigZagClone/f77cf408bde4a5aa55e618e1ca5c1f4959a61f2d/TapZag/ProjectSettings/UnityConnectSettings.asset -------------------------------------------------------------------------------- /TapZag/ProjectSettings/my-icons-collection/license/license.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderDarren/ZigZagClone/f77cf408bde4a5aa55e618e1ca5c1f4959a61f2d/TapZag/ProjectSettings/my-icons-collection/license/license.pdf -------------------------------------------------------------------------------- /TapZag/ProjectSettings/my-icons-collection/png/achievement.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderDarren/ZigZagClone/f77cf408bde4a5aa55e618e1ca5c1f4959a61f2d/TapZag/ProjectSettings/my-icons-collection/png/achievement.png -------------------------------------------------------------------------------- /TapZag/ProjectSettings/my-icons-collection/png/leaderboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderDarren/ZigZagClone/f77cf408bde4a5aa55e618e1ca5c1f4959a61f2d/TapZag/ProjectSettings/my-icons-collection/png/leaderboard.png -------------------------------------------------------------------------------- /TapZag/ProjectSettings/my-icons-collection/png/volume_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderDarren/ZigZagClone/f77cf408bde4a5aa55e618e1ca5c1f4959a61f2d/TapZag/ProjectSettings/my-icons-collection/png/volume_off.png -------------------------------------------------------------------------------- /TapZag/ProjectSettings/my-icons-collection/png/volume_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderDarren/ZigZagClone/f77cf408bde4a5aa55e618e1ca5c1f4959a61f2d/TapZag/ProjectSettings/my-icons-collection/png/volume_on.png -------------------------------------------------------------------------------- /TapZag/UWP/project.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "Microsoft.NETCore.UniversalWindowsPlatform": "5.0.0" 4 | }, 5 | "frameworks": { 6 | "uap10.0": {} 7 | }, 8 | "runtimes": { 9 | "win10-arm": {}, 10 | "win10-arm-aot": {}, 11 | "win10-x86": {}, 12 | "win10-x86-aot": {}, 13 | "win10-x64": {}, 14 | "win10-x64-aot": {} 15 | } 16 | } -------------------------------------------------------------------------------- /TapZag/ZigZagClone.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderDarren/ZigZagClone/f77cf408bde4a5aa55e618e1ca5c1f4959a61f2d/TapZag/ZigZagClone.pdf -------------------------------------------------------------------------------- /TapZag/feature.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderDarren/ZigZagClone/f77cf408bde4a5aa55e618e1ca5c1f4959a61f2d/TapZag/feature.PNG -------------------------------------------------------------------------------- /TapZag/icon.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderDarren/ZigZagClone/f77cf408bde4a5aa55e618e1ca5c1f4959a61f2d/TapZag/icon.PNG -------------------------------------------------------------------------------- /TapZag/my-icons-collection.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderDarren/ZigZagClone/f77cf408bde4a5aa55e618e1ca5c1f4959a61f2d/TapZag/my-icons-collection.zip -------------------------------------------------------------------------------- /TapZag/user.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderDarren/ZigZagClone/f77cf408bde4a5aa55e618e1ca5c1f4959a61f2d/TapZag/user.keystore -------------------------------------------------------------------------------- /ZigZagStandalone/ZigZag.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderDarren/ZigZagClone/f77cf408bde4a5aa55e618e1ca5c1f4959a61f2d/ZigZagStandalone/ZigZag.exe -------------------------------------------------------------------------------- /ZigZagStandalone/ZigZag_Data/Managed/Assembly-CSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderDarren/ZigZagClone/f77cf408bde4a5aa55e618e1ca5c1f4959a61f2d/ZigZagStandalone/ZigZag_Data/Managed/Assembly-CSharp.dll -------------------------------------------------------------------------------- /ZigZagStandalone/ZigZag_Data/Managed/Mono.Security.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderDarren/ZigZagClone/f77cf408bde4a5aa55e618e1ca5c1f4959a61f2d/ZigZagStandalone/ZigZag_Data/Managed/Mono.Security.dll -------------------------------------------------------------------------------- /ZigZagStandalone/ZigZag_Data/Managed/System.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderDarren/ZigZagClone/f77cf408bde4a5aa55e618e1ca5c1f4959a61f2d/ZigZagStandalone/ZigZag_Data/Managed/System.Core.dll -------------------------------------------------------------------------------- /ZigZagStandalone/ZigZag_Data/Managed/System.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderDarren/ZigZagClone/f77cf408bde4a5aa55e618e1ca5c1f4959a61f2d/ZigZagStandalone/ZigZag_Data/Managed/System.dll -------------------------------------------------------------------------------- /ZigZagStandalone/ZigZag_Data/Managed/UnityEngine.Networking.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderDarren/ZigZagClone/f77cf408bde4a5aa55e618e1ca5c1f4959a61f2d/ZigZagStandalone/ZigZag_Data/Managed/UnityEngine.Networking.dll -------------------------------------------------------------------------------- /ZigZagStandalone/ZigZag_Data/Managed/UnityEngine.UI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderDarren/ZigZagClone/f77cf408bde4a5aa55e618e1ca5c1f4959a61f2d/ZigZagStandalone/ZigZag_Data/Managed/UnityEngine.UI.dll -------------------------------------------------------------------------------- /ZigZagStandalone/ZigZag_Data/Managed/UnityEngine.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderDarren/ZigZagClone/f77cf408bde4a5aa55e618e1ca5c1f4959a61f2d/ZigZagStandalone/ZigZag_Data/Managed/UnityEngine.dll -------------------------------------------------------------------------------- /ZigZagStandalone/ZigZag_Data/Managed/UnityEngine.dll.mdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderDarren/ZigZagClone/f77cf408bde4a5aa55e618e1ca5c1f4959a61f2d/ZigZagStandalone/ZigZag_Data/Managed/UnityEngine.dll.mdb -------------------------------------------------------------------------------- /ZigZagStandalone/ZigZag_Data/Managed/mscorlib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderDarren/ZigZagClone/f77cf408bde4a5aa55e618e1ca5c1f4959a61f2d/ZigZagStandalone/ZigZag_Data/Managed/mscorlib.dll -------------------------------------------------------------------------------- /ZigZagStandalone/ZigZag_Data/Mono/MonoPosixHelper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderDarren/ZigZagClone/f77cf408bde4a5aa55e618e1ca5c1f4959a61f2d/ZigZagStandalone/ZigZag_Data/Mono/MonoPosixHelper.dll -------------------------------------------------------------------------------- /ZigZagStandalone/ZigZag_Data/Mono/etc/mono/browscap.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderDarren/ZigZagClone/f77cf408bde4a5aa55e618e1ca5c1f4959a61f2d/ZigZagStandalone/ZigZag_Data/Mono/etc/mono/browscap.ini -------------------------------------------------------------------------------- /ZigZagStandalone/ZigZag_Data/Mono/mono.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderDarren/ZigZagClone/f77cf408bde4a5aa55e618e1ca5c1f4959a61f2d/ZigZagStandalone/ZigZag_Data/Mono/mono.dll -------------------------------------------------------------------------------- /ZigZagStandalone/ZigZag_Data/Resources/unity default resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderDarren/ZigZagClone/f77cf408bde4a5aa55e618e1ca5c1f4959a61f2d/ZigZagStandalone/ZigZag_Data/Resources/unity default resources -------------------------------------------------------------------------------- /ZigZagStandalone/ZigZag_Data/Resources/unity_builtin_extra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderDarren/ZigZagClone/f77cf408bde4a5aa55e618e1ca5c1f4959a61f2d/ZigZagStandalone/ZigZag_Data/Resources/unity_builtin_extra -------------------------------------------------------------------------------- /ZigZagStandalone/ZigZag_Data/app.info: -------------------------------------------------------------------------------- 1 | Renaissance Coders 2 | Zig Tap Zag -------------------------------------------------------------------------------- /ZigZagStandalone/ZigZag_Data/globalgamemanagers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderDarren/ZigZagClone/f77cf408bde4a5aa55e618e1ca5c1f4959a61f2d/ZigZagStandalone/ZigZag_Data/globalgamemanagers -------------------------------------------------------------------------------- /ZigZagStandalone/ZigZag_Data/globalgamemanagers.assets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderDarren/ZigZagClone/f77cf408bde4a5aa55e618e1ca5c1f4959a61f2d/ZigZagStandalone/ZigZag_Data/globalgamemanagers.assets -------------------------------------------------------------------------------- /ZigZagStandalone/ZigZag_Data/level0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderDarren/ZigZagClone/f77cf408bde4a5aa55e618e1ca5c1f4959a61f2d/ZigZagStandalone/ZigZag_Data/level0 -------------------------------------------------------------------------------- /ZigZagStandalone/ZigZag_Data/sharedassets0.assets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderDarren/ZigZagClone/f77cf408bde4a5aa55e618e1ca5c1f4959a61f2d/ZigZagStandalone/ZigZag_Data/sharedassets0.assets -------------------------------------------------------------------------------- /ZigZagStandalone/ZigZag_Data/sharedassets0.assets.resS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderDarren/ZigZagClone/f77cf408bde4a5aa55e618e1ca5c1f4959a61f2d/ZigZagStandalone/ZigZag_Data/sharedassets0.assets.resS -------------------------------------------------------------------------------- /ZigZagStandalone/ZigZag_Data/sharedassets0.resource: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderDarren/ZigZagClone/f77cf408bde4a5aa55e618e1ca5c1f4959a61f2d/ZigZagStandalone/ZigZag_Data/sharedassets0.resource --------------------------------------------------------------------------------