├── .gitignore ├── Assets ├── IL2CPPCompatible.cs ├── IL2CPPCompatible.cs.meta ├── IL2CPPStudy.cs ├── IL2CPPStudy.cs.meta ├── Test.unity ├── Test.unity.meta ├── ThreadPoolTest.cs └── ThreadPoolTest.cs.meta └── ProjectSettings ├── AudioManager.asset ├── DynamicsManager.asset ├── EditorBuildSettings.asset ├── EditorSettings.asset ├── GraphicsSettings.asset ├── InputManager.asset ├── NavMeshLayers.asset ├── NetworkManager.asset ├── Physics2DSettings.asset ├── ProjectSettings.asset ├── QualitySettings.asset ├── TagManager.asset └── TimeManager.asset /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoconutIslandStudio/IL2CPP_Test/HEAD/.gitignore -------------------------------------------------------------------------------- /Assets/IL2CPPCompatible.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoconutIslandStudio/IL2CPP_Test/HEAD/Assets/IL2CPPCompatible.cs -------------------------------------------------------------------------------- /Assets/IL2CPPCompatible.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoconutIslandStudio/IL2CPP_Test/HEAD/Assets/IL2CPPCompatible.cs.meta -------------------------------------------------------------------------------- /Assets/IL2CPPStudy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoconutIslandStudio/IL2CPP_Test/HEAD/Assets/IL2CPPStudy.cs -------------------------------------------------------------------------------- /Assets/IL2CPPStudy.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoconutIslandStudio/IL2CPP_Test/HEAD/Assets/IL2CPPStudy.cs.meta -------------------------------------------------------------------------------- /Assets/Test.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoconutIslandStudio/IL2CPP_Test/HEAD/Assets/Test.unity -------------------------------------------------------------------------------- /Assets/Test.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoconutIslandStudio/IL2CPP_Test/HEAD/Assets/Test.unity.meta -------------------------------------------------------------------------------- /Assets/ThreadPoolTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoconutIslandStudio/IL2CPP_Test/HEAD/Assets/ThreadPoolTest.cs -------------------------------------------------------------------------------- /Assets/ThreadPoolTest.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoconutIslandStudio/IL2CPP_Test/HEAD/Assets/ThreadPoolTest.cs.meta -------------------------------------------------------------------------------- /ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoconutIslandStudio/IL2CPP_Test/HEAD/ProjectSettings/AudioManager.asset -------------------------------------------------------------------------------- /ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoconutIslandStudio/IL2CPP_Test/HEAD/ProjectSettings/DynamicsManager.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoconutIslandStudio/IL2CPP_Test/HEAD/ProjectSettings/EditorBuildSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoconutIslandStudio/IL2CPP_Test/HEAD/ProjectSettings/EditorSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoconutIslandStudio/IL2CPP_Test/HEAD/ProjectSettings/GraphicsSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoconutIslandStudio/IL2CPP_Test/HEAD/ProjectSettings/InputManager.asset -------------------------------------------------------------------------------- /ProjectSettings/NavMeshLayers.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoconutIslandStudio/IL2CPP_Test/HEAD/ProjectSettings/NavMeshLayers.asset -------------------------------------------------------------------------------- /ProjectSettings/NetworkManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoconutIslandStudio/IL2CPP_Test/HEAD/ProjectSettings/NetworkManager.asset -------------------------------------------------------------------------------- /ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoconutIslandStudio/IL2CPP_Test/HEAD/ProjectSettings/Physics2DSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoconutIslandStudio/IL2CPP_Test/HEAD/ProjectSettings/ProjectSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoconutIslandStudio/IL2CPP_Test/HEAD/ProjectSettings/QualitySettings.asset -------------------------------------------------------------------------------- /ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoconutIslandStudio/IL2CPP_Test/HEAD/ProjectSettings/TagManager.asset -------------------------------------------------------------------------------- /ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoconutIslandStudio/IL2CPP_Test/HEAD/ProjectSettings/TimeManager.asset --------------------------------------------------------------------------------