├── PlugIn ├── Plugins │ └── iOS │ │ ├── App42PushHandlerInternal.h │ │ └── App42PushHandlerInternal.m ├── PushResponse.cs └── PushScript.cs ├── README.md └── Sample ├── Assembly-CSharp-firstpass-vs.csproj ├── Assembly-CSharp-firstpass.csproj ├── Assembly-CSharp-firstpass.pidb ├── Assembly-CSharp-vs.csproj ├── Assembly-CSharp.csproj ├── Assembly-CSharp.pidb ├── Assembly-UnityScript-firstpass-vs.unityproj ├── Assembly-UnityScript-firstpass.pidb ├── Assembly-UnityScript-firstpass.unityproj ├── Assembly-UnityScript-vs.unityproj ├── Assembly-UnityScript.pidb ├── Assembly-UnityScript.unityproj ├── Assets ├── App42-Unity3D-SDK-4.1.2.dll ├── NewBehaviourScript.js ├── Plugins │ └── iOS │ │ ├── App42PushHandlerInternal.h │ │ └── App42PushHandlerInternal.m ├── PushResponse.cs ├── PushSample.unity ├── PushScript.cs └── Standard Assets │ └── Scripts │ └── Camera Scripts │ └── SmoothFollow.js ├── Library ├── AnnotationManager ├── AssetImportState ├── AssetServerCacheV3 ├── AssetVersioning.db ├── BuildPlayer.prefs ├── BuildSettings.asset ├── EditorUserBuildSettings.asset ├── EditorUserSettings.asset ├── FailedAssetImports.txt ├── InspectorExpandedItems.asset ├── MonoManager.asset ├── ProjectSettings.asset ├── ScriptAssemblies │ ├── Assembly-CSharp.dll │ ├── Assembly-CSharp.dll.mdb │ ├── Assembly-UnityScript-firstpass.dll │ ├── Assembly-UnityScript-firstpass.dll.mdb │ ├── Assembly-UnityScript.dll │ ├── Assembly-UnityScript.dll.mdb │ └── CompilationCompleted.txt ├── ScriptMapper ├── assetDatabase3 ├── expandedItems ├── guidmapper └── metadata │ ├── 30 │ └── 30322a377039849f1b328f0ca4fad577 │ ├── 31 │ └── 31cbe64ef752540bc87fe9ad43d8f318 │ ├── 42 │ └── 4295177b0a88140dda5a666f59a8f5ae │ ├── 68 │ └── 68e004d3102c941efa14825c75774858 │ ├── 79 │ └── 79d9b4b8aac434e0f88d6cfb8bf833b5 │ ├── 88 │ └── 885b1972ad11a921d000d37b8d76c639 │ ├── 00 │ ├── 00000000000000001000000000000000 │ ├── 00000000000000002000000000000000 │ ├── 00000000000000003000000000000000 │ ├── 00000000000000004000000000000000 │ ├── 00000000000000004100000000000000 │ ├── 00000000000000005000000000000000 │ ├── 00000000000000006000000000000000 │ ├── 00000000000000007000000000000000 │ ├── 00000000000000008000000000000000 │ ├── 00000000000000009000000000000000 │ ├── 0000000000000000a000000000000000 │ ├── 0000000000000000b000000000000000 │ └── 0000000000000000c000000000000000 │ ├── 1d │ └── 1d72419cb61a443fea41f24fc8feb7cb │ ├── 4d │ └── 4d11055d07bfb4c3f87ba989ec7c4a87 │ ├── a7 │ └── a71017ad2ecca4ebd8e362649989686c │ ├── b2 │ └── b2f12500f6b724a98b65fe76250a08ae │ ├── c0 │ └── c0bf60e72d90c4c5b96f5b9b79cb6c08 │ ├── e6 │ └── e6a2bbfca5d2a4a78aa3070cfd7fd260 │ └── f7 │ └── f7c9477295a314fe98e3b7509cdbad7d ├── ProjectSettings ├── AudioManager.asset ├── DynamicsManager.asset ├── EditorBuildSettings.asset ├── EditorSettings.asset ├── InputManager.asset ├── NavMeshLayers.asset ├── NetworkManager.asset ├── ProjectSettings.asset ├── QualitySettings.asset ├── TagManager.asset └── TimeManager.asset ├── Sample-csharp.sln ├── Sample.sln ├── Sample.userprefs ├── Temp ├── CaseSensitiveTest └── UnityLockfile ├── UnityPushiOSSample-csharp.sln ├── UnityPushiOSSample.sln └── UnityPushiOSSample.userprefs /PlugIn/Plugins/iOS/App42PushHandlerInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shephertz/App42iOSUnity3DPushPlugin/HEAD/PlugIn/Plugins/iOS/App42PushHandlerInternal.h -------------------------------------------------------------------------------- /PlugIn/Plugins/iOS/App42PushHandlerInternal.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shephertz/App42iOSUnity3DPushPlugin/HEAD/PlugIn/Plugins/iOS/App42PushHandlerInternal.m -------------------------------------------------------------------------------- /PlugIn/PushResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shephertz/App42iOSUnity3DPushPlugin/HEAD/PlugIn/PushResponse.cs -------------------------------------------------------------------------------- /PlugIn/PushScript.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shephertz/App42iOSUnity3DPushPlugin/HEAD/PlugIn/PushScript.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shephertz/App42iOSUnity3DPushPlugin/HEAD/README.md -------------------------------------------------------------------------------- /Sample/Assembly-CSharp-firstpass-vs.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shephertz/App42iOSUnity3DPushPlugin/HEAD/Sample/Assembly-CSharp-firstpass-vs.csproj -------------------------------------------------------------------------------- /Sample/Assembly-CSharp-firstpass.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shephertz/App42iOSUnity3DPushPlugin/HEAD/Sample/Assembly-CSharp-firstpass.csproj -------------------------------------------------------------------------------- /Sample/Assembly-CSharp-firstpass.pidb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shephertz/App42iOSUnity3DPushPlugin/HEAD/Sample/Assembly-CSharp-firstpass.pidb -------------------------------------------------------------------------------- /Sample/Assembly-CSharp-vs.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shephertz/App42iOSUnity3DPushPlugin/HEAD/Sample/Assembly-CSharp-vs.csproj -------------------------------------------------------------------------------- /Sample/Assembly-CSharp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shephertz/App42iOSUnity3DPushPlugin/HEAD/Sample/Assembly-CSharp.csproj -------------------------------------------------------------------------------- /Sample/Assembly-CSharp.pidb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shephertz/App42iOSUnity3DPushPlugin/HEAD/Sample/Assembly-CSharp.pidb -------------------------------------------------------------------------------- /Sample/Assembly-UnityScript-firstpass-vs.unityproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shephertz/App42iOSUnity3DPushPlugin/HEAD/Sample/Assembly-UnityScript-firstpass-vs.unityproj -------------------------------------------------------------------------------- /Sample/Assembly-UnityScript-firstpass.pidb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shephertz/App42iOSUnity3DPushPlugin/HEAD/Sample/Assembly-UnityScript-firstpass.pidb -------------------------------------------------------------------------------- /Sample/Assembly-UnityScript-firstpass.unityproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shephertz/App42iOSUnity3DPushPlugin/HEAD/Sample/Assembly-UnityScript-firstpass.unityproj -------------------------------------------------------------------------------- /Sample/Assembly-UnityScript-vs.unityproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shephertz/App42iOSUnity3DPushPlugin/HEAD/Sample/Assembly-UnityScript-vs.unityproj -------------------------------------------------------------------------------- /Sample/Assembly-UnityScript.pidb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shephertz/App42iOSUnity3DPushPlugin/HEAD/Sample/Assembly-UnityScript.pidb -------------------------------------------------------------------------------- /Sample/Assembly-UnityScript.unityproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shephertz/App42iOSUnity3DPushPlugin/HEAD/Sample/Assembly-UnityScript.unityproj -------------------------------------------------------------------------------- /Sample/Assets/App42-Unity3D-SDK-4.1.2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shephertz/App42iOSUnity3DPushPlugin/HEAD/Sample/Assets/App42-Unity3D-SDK-4.1.2.dll -------------------------------------------------------------------------------- /Sample/Assets/NewBehaviourScript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shephertz/App42iOSUnity3DPushPlugin/HEAD/Sample/Assets/NewBehaviourScript.js -------------------------------------------------------------------------------- /Sample/Assets/Plugins/iOS/App42PushHandlerInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shephertz/App42iOSUnity3DPushPlugin/HEAD/Sample/Assets/Plugins/iOS/App42PushHandlerInternal.h -------------------------------------------------------------------------------- /Sample/Assets/Plugins/iOS/App42PushHandlerInternal.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shephertz/App42iOSUnity3DPushPlugin/HEAD/Sample/Assets/Plugins/iOS/App42PushHandlerInternal.m -------------------------------------------------------------------------------- /Sample/Assets/PushResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shephertz/App42iOSUnity3DPushPlugin/HEAD/Sample/Assets/PushResponse.cs -------------------------------------------------------------------------------- /Sample/Assets/PushSample.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shephertz/App42iOSUnity3DPushPlugin/HEAD/Sample/Assets/PushSample.unity -------------------------------------------------------------------------------- /Sample/Assets/PushScript.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shephertz/App42iOSUnity3DPushPlugin/HEAD/Sample/Assets/PushScript.cs -------------------------------------------------------------------------------- /Sample/Assets/Standard Assets/Scripts/Camera Scripts/SmoothFollow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shephertz/App42iOSUnity3DPushPlugin/HEAD/Sample/Assets/Standard Assets/Scripts/Camera Scripts/SmoothFollow.js -------------------------------------------------------------------------------- /Sample/Library/AnnotationManager: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shephertz/App42iOSUnity3DPushPlugin/HEAD/Sample/Library/AnnotationManager -------------------------------------------------------------------------------- /Sample/Library/AssetImportState: -------------------------------------------------------------------------------- 1 | 9;0;-1 -------------------------------------------------------------------------------- /Sample/Library/AssetServerCacheV3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shephertz/App42iOSUnity3DPushPlugin/HEAD/Sample/Library/AssetServerCacheV3 -------------------------------------------------------------------------------- /Sample/Library/AssetVersioning.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shephertz/App42iOSUnity3DPushPlugin/HEAD/Sample/Library/AssetVersioning.db -------------------------------------------------------------------------------- /Sample/Library/BuildPlayer.prefs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Sample/Library/BuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shephertz/App42iOSUnity3DPushPlugin/HEAD/Sample/Library/BuildSettings.asset -------------------------------------------------------------------------------- /Sample/Library/EditorUserBuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shephertz/App42iOSUnity3DPushPlugin/HEAD/Sample/Library/EditorUserBuildSettings.asset -------------------------------------------------------------------------------- /Sample/Library/EditorUserSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shephertz/App42iOSUnity3DPushPlugin/HEAD/Sample/Library/EditorUserSettings.asset -------------------------------------------------------------------------------- /Sample/Library/FailedAssetImports.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Sample/Library/InspectorExpandedItems.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shephertz/App42iOSUnity3DPushPlugin/HEAD/Sample/Library/InspectorExpandedItems.asset -------------------------------------------------------------------------------- /Sample/Library/MonoManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shephertz/App42iOSUnity3DPushPlugin/HEAD/Sample/Library/MonoManager.asset -------------------------------------------------------------------------------- /Sample/Library/ProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shephertz/App42iOSUnity3DPushPlugin/HEAD/Sample/Library/ProjectSettings.asset -------------------------------------------------------------------------------- /Sample/Library/ScriptAssemblies/Assembly-CSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shephertz/App42iOSUnity3DPushPlugin/HEAD/Sample/Library/ScriptAssemblies/Assembly-CSharp.dll -------------------------------------------------------------------------------- /Sample/Library/ScriptAssemblies/Assembly-CSharp.dll.mdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shephertz/App42iOSUnity3DPushPlugin/HEAD/Sample/Library/ScriptAssemblies/Assembly-CSharp.dll.mdb -------------------------------------------------------------------------------- /Sample/Library/ScriptAssemblies/Assembly-UnityScript-firstpass.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shephertz/App42iOSUnity3DPushPlugin/HEAD/Sample/Library/ScriptAssemblies/Assembly-UnityScript-firstpass.dll -------------------------------------------------------------------------------- /Sample/Library/ScriptAssemblies/Assembly-UnityScript-firstpass.dll.mdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shephertz/App42iOSUnity3DPushPlugin/HEAD/Sample/Library/ScriptAssemblies/Assembly-UnityScript-firstpass.dll.mdb -------------------------------------------------------------------------------- /Sample/Library/ScriptAssemblies/Assembly-UnityScript.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shephertz/App42iOSUnity3DPushPlugin/HEAD/Sample/Library/ScriptAssemblies/Assembly-UnityScript.dll -------------------------------------------------------------------------------- /Sample/Library/ScriptAssemblies/Assembly-UnityScript.dll.mdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shephertz/App42iOSUnity3DPushPlugin/HEAD/Sample/Library/ScriptAssemblies/Assembly-UnityScript.dll.mdb -------------------------------------------------------------------------------- /Sample/Library/ScriptAssemblies/CompilationCompleted.txt: -------------------------------------------------------------------------------- 1 | Completed 2 | -------------------------------------------------------------------------------- /Sample/Library/ScriptMapper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shephertz/App42iOSUnity3DPushPlugin/HEAD/Sample/Library/ScriptMapper -------------------------------------------------------------------------------- /Sample/Library/assetDatabase3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shephertz/App42iOSUnity3DPushPlugin/HEAD/Sample/Library/assetDatabase3 -------------------------------------------------------------------------------- /Sample/Library/expandedItems: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shephertz/App42iOSUnity3DPushPlugin/HEAD/Sample/Library/expandedItems -------------------------------------------------------------------------------- /Sample/Library/guidmapper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shephertz/App42iOSUnity3DPushPlugin/HEAD/Sample/Library/guidmapper -------------------------------------------------------------------------------- /Sample/Library/metadata/00/00000000000000001000000000000000: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shephertz/App42iOSUnity3DPushPlugin/HEAD/Sample/Library/metadata/00/00000000000000001000000000000000 -------------------------------------------------------------------------------- /Sample/Library/metadata/00/00000000000000002000000000000000: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shephertz/App42iOSUnity3DPushPlugin/HEAD/Sample/Library/metadata/00/00000000000000002000000000000000 -------------------------------------------------------------------------------- /Sample/Library/metadata/00/00000000000000003000000000000000: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shephertz/App42iOSUnity3DPushPlugin/HEAD/Sample/Library/metadata/00/00000000000000003000000000000000 -------------------------------------------------------------------------------- /Sample/Library/metadata/00/00000000000000004000000000000000: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shephertz/App42iOSUnity3DPushPlugin/HEAD/Sample/Library/metadata/00/00000000000000004000000000000000 -------------------------------------------------------------------------------- /Sample/Library/metadata/00/00000000000000004100000000000000: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shephertz/App42iOSUnity3DPushPlugin/HEAD/Sample/Library/metadata/00/00000000000000004100000000000000 -------------------------------------------------------------------------------- /Sample/Library/metadata/00/00000000000000005000000000000000: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shephertz/App42iOSUnity3DPushPlugin/HEAD/Sample/Library/metadata/00/00000000000000005000000000000000 -------------------------------------------------------------------------------- /Sample/Library/metadata/00/00000000000000006000000000000000: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shephertz/App42iOSUnity3DPushPlugin/HEAD/Sample/Library/metadata/00/00000000000000006000000000000000 -------------------------------------------------------------------------------- /Sample/Library/metadata/00/00000000000000007000000000000000: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shephertz/App42iOSUnity3DPushPlugin/HEAD/Sample/Library/metadata/00/00000000000000007000000000000000 -------------------------------------------------------------------------------- /Sample/Library/metadata/00/00000000000000008000000000000000: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shephertz/App42iOSUnity3DPushPlugin/HEAD/Sample/Library/metadata/00/00000000000000008000000000000000 -------------------------------------------------------------------------------- /Sample/Library/metadata/00/00000000000000009000000000000000: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shephertz/App42iOSUnity3DPushPlugin/HEAD/Sample/Library/metadata/00/00000000000000009000000000000000 -------------------------------------------------------------------------------- /Sample/Library/metadata/00/0000000000000000a000000000000000: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shephertz/App42iOSUnity3DPushPlugin/HEAD/Sample/Library/metadata/00/0000000000000000a000000000000000 -------------------------------------------------------------------------------- /Sample/Library/metadata/00/0000000000000000b000000000000000: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shephertz/App42iOSUnity3DPushPlugin/HEAD/Sample/Library/metadata/00/0000000000000000b000000000000000 -------------------------------------------------------------------------------- /Sample/Library/metadata/00/0000000000000000c000000000000000: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shephertz/App42iOSUnity3DPushPlugin/HEAD/Sample/Library/metadata/00/0000000000000000c000000000000000 -------------------------------------------------------------------------------- /Sample/Library/metadata/1d/1d72419cb61a443fea41f24fc8feb7cb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shephertz/App42iOSUnity3DPushPlugin/HEAD/Sample/Library/metadata/1d/1d72419cb61a443fea41f24fc8feb7cb -------------------------------------------------------------------------------- /Sample/Library/metadata/30/30322a377039849f1b328f0ca4fad577: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shephertz/App42iOSUnity3DPushPlugin/HEAD/Sample/Library/metadata/30/30322a377039849f1b328f0ca4fad577 -------------------------------------------------------------------------------- /Sample/Library/metadata/31/31cbe64ef752540bc87fe9ad43d8f318: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shephertz/App42iOSUnity3DPushPlugin/HEAD/Sample/Library/metadata/31/31cbe64ef752540bc87fe9ad43d8f318 -------------------------------------------------------------------------------- /Sample/Library/metadata/42/4295177b0a88140dda5a666f59a8f5ae: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shephertz/App42iOSUnity3DPushPlugin/HEAD/Sample/Library/metadata/42/4295177b0a88140dda5a666f59a8f5ae -------------------------------------------------------------------------------- /Sample/Library/metadata/4d/4d11055d07bfb4c3f87ba989ec7c4a87: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shephertz/App42iOSUnity3DPushPlugin/HEAD/Sample/Library/metadata/4d/4d11055d07bfb4c3f87ba989ec7c4a87 -------------------------------------------------------------------------------- /Sample/Library/metadata/68/68e004d3102c941efa14825c75774858: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shephertz/App42iOSUnity3DPushPlugin/HEAD/Sample/Library/metadata/68/68e004d3102c941efa14825c75774858 -------------------------------------------------------------------------------- /Sample/Library/metadata/79/79d9b4b8aac434e0f88d6cfb8bf833b5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shephertz/App42iOSUnity3DPushPlugin/HEAD/Sample/Library/metadata/79/79d9b4b8aac434e0f88d6cfb8bf833b5 -------------------------------------------------------------------------------- /Sample/Library/metadata/88/885b1972ad11a921d000d37b8d76c639: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shephertz/App42iOSUnity3DPushPlugin/HEAD/Sample/Library/metadata/88/885b1972ad11a921d000d37b8d76c639 -------------------------------------------------------------------------------- /Sample/Library/metadata/a7/a71017ad2ecca4ebd8e362649989686c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shephertz/App42iOSUnity3DPushPlugin/HEAD/Sample/Library/metadata/a7/a71017ad2ecca4ebd8e362649989686c -------------------------------------------------------------------------------- /Sample/Library/metadata/b2/b2f12500f6b724a98b65fe76250a08ae: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shephertz/App42iOSUnity3DPushPlugin/HEAD/Sample/Library/metadata/b2/b2f12500f6b724a98b65fe76250a08ae -------------------------------------------------------------------------------- /Sample/Library/metadata/c0/c0bf60e72d90c4c5b96f5b9b79cb6c08: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shephertz/App42iOSUnity3DPushPlugin/HEAD/Sample/Library/metadata/c0/c0bf60e72d90c4c5b96f5b9b79cb6c08 -------------------------------------------------------------------------------- /Sample/Library/metadata/e6/e6a2bbfca5d2a4a78aa3070cfd7fd260: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shephertz/App42iOSUnity3DPushPlugin/HEAD/Sample/Library/metadata/e6/e6a2bbfca5d2a4a78aa3070cfd7fd260 -------------------------------------------------------------------------------- /Sample/Library/metadata/f7/f7c9477295a314fe98e3b7509cdbad7d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shephertz/App42iOSUnity3DPushPlugin/HEAD/Sample/Library/metadata/f7/f7c9477295a314fe98e3b7509cdbad7d -------------------------------------------------------------------------------- /Sample/ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shephertz/App42iOSUnity3DPushPlugin/HEAD/Sample/ProjectSettings/AudioManager.asset -------------------------------------------------------------------------------- /Sample/ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shephertz/App42iOSUnity3DPushPlugin/HEAD/Sample/ProjectSettings/DynamicsManager.asset -------------------------------------------------------------------------------- /Sample/ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shephertz/App42iOSUnity3DPushPlugin/HEAD/Sample/ProjectSettings/EditorBuildSettings.asset -------------------------------------------------------------------------------- /Sample/ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shephertz/App42iOSUnity3DPushPlugin/HEAD/Sample/ProjectSettings/EditorSettings.asset -------------------------------------------------------------------------------- /Sample/ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shephertz/App42iOSUnity3DPushPlugin/HEAD/Sample/ProjectSettings/InputManager.asset -------------------------------------------------------------------------------- /Sample/ProjectSettings/NavMeshLayers.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shephertz/App42iOSUnity3DPushPlugin/HEAD/Sample/ProjectSettings/NavMeshLayers.asset -------------------------------------------------------------------------------- /Sample/ProjectSettings/NetworkManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shephertz/App42iOSUnity3DPushPlugin/HEAD/Sample/ProjectSettings/NetworkManager.asset -------------------------------------------------------------------------------- /Sample/ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shephertz/App42iOSUnity3DPushPlugin/HEAD/Sample/ProjectSettings/ProjectSettings.asset -------------------------------------------------------------------------------- /Sample/ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shephertz/App42iOSUnity3DPushPlugin/HEAD/Sample/ProjectSettings/QualitySettings.asset -------------------------------------------------------------------------------- /Sample/ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shephertz/App42iOSUnity3DPushPlugin/HEAD/Sample/ProjectSettings/TagManager.asset -------------------------------------------------------------------------------- /Sample/ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shephertz/App42iOSUnity3DPushPlugin/HEAD/Sample/ProjectSettings/TimeManager.asset -------------------------------------------------------------------------------- /Sample/Sample-csharp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shephertz/App42iOSUnity3DPushPlugin/HEAD/Sample/Sample-csharp.sln -------------------------------------------------------------------------------- /Sample/Sample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shephertz/App42iOSUnity3DPushPlugin/HEAD/Sample/Sample.sln -------------------------------------------------------------------------------- /Sample/Sample.userprefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shephertz/App42iOSUnity3DPushPlugin/HEAD/Sample/Sample.userprefs -------------------------------------------------------------------------------- /Sample/Temp/CaseSensitiveTest: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Sample/Temp/UnityLockfile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Sample/UnityPushiOSSample-csharp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shephertz/App42iOSUnity3DPushPlugin/HEAD/Sample/UnityPushiOSSample-csharp.sln -------------------------------------------------------------------------------- /Sample/UnityPushiOSSample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shephertz/App42iOSUnity3DPushPlugin/HEAD/Sample/UnityPushiOSSample.sln -------------------------------------------------------------------------------- /Sample/UnityPushiOSSample.userprefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shephertz/App42iOSUnity3DPushPlugin/HEAD/Sample/UnityPushiOSSample.userprefs --------------------------------------------------------------------------------