├── .gitignore ├── AndroidStudio └── SimpleNativeLibrary │ ├── .gitignore │ ├── .idea │ ├── gradle.xml │ ├── misc.xml │ ├── modules.xml │ └── runConfigurations.xml │ ├── app │ ├── .gitignore │ ├── CMakeLists.txt │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── meach │ │ │ └── simplenativelibrary │ │ │ └── ExampleInstrumentedTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── cpp │ │ │ └── native-lib.cpp │ │ └── res │ │ │ ├── drawable-v24 │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── drawable │ │ │ └── ic_launcher_background.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── example │ │ └── meach │ │ └── simplenativelibrary │ │ └── ExampleUnitTest.java │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── README.md ├── Unity └── SimpleNativeLibrary │ ├── Assets │ ├── Plugins.meta │ ├── Scene.meta │ ├── Scene │ │ ├── scene.unity │ │ └── scene.unity.meta │ ├── UseNativeLibrary.cs │ └── UseNativeLibrary.cs.meta │ ├── ProjectSettings │ ├── AudioManager.asset │ ├── ClusterInputManager.asset │ ├── DynamicsManager.asset │ ├── EditorBuildSettings.asset │ ├── EditorSettings.asset │ ├── GraphicsSettings.asset │ ├── InputManager.asset │ ├── NavMeshAreas.asset │ ├── NetworkManager.asset │ ├── Physics2DSettings.asset │ ├── ProjectSettings.asset │ ├── ProjectVersion.txt │ ├── QualitySettings.asset │ ├── TagManager.asset │ ├── TimeManager.asset │ └── UnityConnectSettings.asset │ ├── SimpleNativeLibrary.csproj │ ├── SimpleNativeLibrary.sln │ └── UnityPackageManager │ └── manifest.json └── VisualStudio └── SimpleNativeLibrary ├── SimpleNativeLibrary.sln └── SimpleNativeLibrary ├── ReadMe.txt ├── SimpleNativeLibrary.cpp ├── SimpleNativeLibrary.vcxproj └── SimpleNativeLibrary.vcxproj.filters /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meach/UnitySimpleNativeLibrary/HEAD/.gitignore -------------------------------------------------------------------------------- /AndroidStudio/SimpleNativeLibrary/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meach/UnitySimpleNativeLibrary/HEAD/AndroidStudio/SimpleNativeLibrary/.gitignore -------------------------------------------------------------------------------- /AndroidStudio/SimpleNativeLibrary/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meach/UnitySimpleNativeLibrary/HEAD/AndroidStudio/SimpleNativeLibrary/.idea/gradle.xml -------------------------------------------------------------------------------- /AndroidStudio/SimpleNativeLibrary/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meach/UnitySimpleNativeLibrary/HEAD/AndroidStudio/SimpleNativeLibrary/.idea/misc.xml -------------------------------------------------------------------------------- /AndroidStudio/SimpleNativeLibrary/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meach/UnitySimpleNativeLibrary/HEAD/AndroidStudio/SimpleNativeLibrary/.idea/modules.xml -------------------------------------------------------------------------------- /AndroidStudio/SimpleNativeLibrary/.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meach/UnitySimpleNativeLibrary/HEAD/AndroidStudio/SimpleNativeLibrary/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /AndroidStudio/SimpleNativeLibrary/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /AndroidStudio/SimpleNativeLibrary/app/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meach/UnitySimpleNativeLibrary/HEAD/AndroidStudio/SimpleNativeLibrary/app/CMakeLists.txt -------------------------------------------------------------------------------- /AndroidStudio/SimpleNativeLibrary/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meach/UnitySimpleNativeLibrary/HEAD/AndroidStudio/SimpleNativeLibrary/app/build.gradle -------------------------------------------------------------------------------- /AndroidStudio/SimpleNativeLibrary/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meach/UnitySimpleNativeLibrary/HEAD/AndroidStudio/SimpleNativeLibrary/app/proguard-rules.pro -------------------------------------------------------------------------------- /AndroidStudio/SimpleNativeLibrary/app/src/androidTest/java/com/example/meach/simplenativelibrary/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meach/UnitySimpleNativeLibrary/HEAD/AndroidStudio/SimpleNativeLibrary/app/src/androidTest/java/com/example/meach/simplenativelibrary/ExampleInstrumentedTest.java -------------------------------------------------------------------------------- /AndroidStudio/SimpleNativeLibrary/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meach/UnitySimpleNativeLibrary/HEAD/AndroidStudio/SimpleNativeLibrary/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /AndroidStudio/SimpleNativeLibrary/app/src/main/cpp/native-lib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meach/UnitySimpleNativeLibrary/HEAD/AndroidStudio/SimpleNativeLibrary/app/src/main/cpp/native-lib.cpp -------------------------------------------------------------------------------- /AndroidStudio/SimpleNativeLibrary/app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meach/UnitySimpleNativeLibrary/HEAD/AndroidStudio/SimpleNativeLibrary/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /AndroidStudio/SimpleNativeLibrary/app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meach/UnitySimpleNativeLibrary/HEAD/AndroidStudio/SimpleNativeLibrary/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /AndroidStudio/SimpleNativeLibrary/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meach/UnitySimpleNativeLibrary/HEAD/AndroidStudio/SimpleNativeLibrary/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /AndroidStudio/SimpleNativeLibrary/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meach/UnitySimpleNativeLibrary/HEAD/AndroidStudio/SimpleNativeLibrary/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /AndroidStudio/SimpleNativeLibrary/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meach/UnitySimpleNativeLibrary/HEAD/AndroidStudio/SimpleNativeLibrary/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /AndroidStudio/SimpleNativeLibrary/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meach/UnitySimpleNativeLibrary/HEAD/AndroidStudio/SimpleNativeLibrary/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /AndroidStudio/SimpleNativeLibrary/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meach/UnitySimpleNativeLibrary/HEAD/AndroidStudio/SimpleNativeLibrary/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /AndroidStudio/SimpleNativeLibrary/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meach/UnitySimpleNativeLibrary/HEAD/AndroidStudio/SimpleNativeLibrary/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /AndroidStudio/SimpleNativeLibrary/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meach/UnitySimpleNativeLibrary/HEAD/AndroidStudio/SimpleNativeLibrary/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /AndroidStudio/SimpleNativeLibrary/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meach/UnitySimpleNativeLibrary/HEAD/AndroidStudio/SimpleNativeLibrary/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /AndroidStudio/SimpleNativeLibrary/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meach/UnitySimpleNativeLibrary/HEAD/AndroidStudio/SimpleNativeLibrary/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /AndroidStudio/SimpleNativeLibrary/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meach/UnitySimpleNativeLibrary/HEAD/AndroidStudio/SimpleNativeLibrary/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /AndroidStudio/SimpleNativeLibrary/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meach/UnitySimpleNativeLibrary/HEAD/AndroidStudio/SimpleNativeLibrary/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /AndroidStudio/SimpleNativeLibrary/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meach/UnitySimpleNativeLibrary/HEAD/AndroidStudio/SimpleNativeLibrary/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /AndroidStudio/SimpleNativeLibrary/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meach/UnitySimpleNativeLibrary/HEAD/AndroidStudio/SimpleNativeLibrary/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /AndroidStudio/SimpleNativeLibrary/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meach/UnitySimpleNativeLibrary/HEAD/AndroidStudio/SimpleNativeLibrary/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /AndroidStudio/SimpleNativeLibrary/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meach/UnitySimpleNativeLibrary/HEAD/AndroidStudio/SimpleNativeLibrary/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /AndroidStudio/SimpleNativeLibrary/app/src/test/java/com/example/meach/simplenativelibrary/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meach/UnitySimpleNativeLibrary/HEAD/AndroidStudio/SimpleNativeLibrary/app/src/test/java/com/example/meach/simplenativelibrary/ExampleUnitTest.java -------------------------------------------------------------------------------- /AndroidStudio/SimpleNativeLibrary/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meach/UnitySimpleNativeLibrary/HEAD/AndroidStudio/SimpleNativeLibrary/build.gradle -------------------------------------------------------------------------------- /AndroidStudio/SimpleNativeLibrary/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meach/UnitySimpleNativeLibrary/HEAD/AndroidStudio/SimpleNativeLibrary/gradle.properties -------------------------------------------------------------------------------- /AndroidStudio/SimpleNativeLibrary/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meach/UnitySimpleNativeLibrary/HEAD/AndroidStudio/SimpleNativeLibrary/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /AndroidStudio/SimpleNativeLibrary/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meach/UnitySimpleNativeLibrary/HEAD/AndroidStudio/SimpleNativeLibrary/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /AndroidStudio/SimpleNativeLibrary/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meach/UnitySimpleNativeLibrary/HEAD/AndroidStudio/SimpleNativeLibrary/gradlew -------------------------------------------------------------------------------- /AndroidStudio/SimpleNativeLibrary/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meach/UnitySimpleNativeLibrary/HEAD/AndroidStudio/SimpleNativeLibrary/gradlew.bat -------------------------------------------------------------------------------- /AndroidStudio/SimpleNativeLibrary/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meach/UnitySimpleNativeLibrary/HEAD/README.md -------------------------------------------------------------------------------- /Unity/SimpleNativeLibrary/Assets/Plugins.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meach/UnitySimpleNativeLibrary/HEAD/Unity/SimpleNativeLibrary/Assets/Plugins.meta -------------------------------------------------------------------------------- /Unity/SimpleNativeLibrary/Assets/Scene.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meach/UnitySimpleNativeLibrary/HEAD/Unity/SimpleNativeLibrary/Assets/Scene.meta -------------------------------------------------------------------------------- /Unity/SimpleNativeLibrary/Assets/Scene/scene.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meach/UnitySimpleNativeLibrary/HEAD/Unity/SimpleNativeLibrary/Assets/Scene/scene.unity -------------------------------------------------------------------------------- /Unity/SimpleNativeLibrary/Assets/Scene/scene.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meach/UnitySimpleNativeLibrary/HEAD/Unity/SimpleNativeLibrary/Assets/Scene/scene.unity.meta -------------------------------------------------------------------------------- /Unity/SimpleNativeLibrary/Assets/UseNativeLibrary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meach/UnitySimpleNativeLibrary/HEAD/Unity/SimpleNativeLibrary/Assets/UseNativeLibrary.cs -------------------------------------------------------------------------------- /Unity/SimpleNativeLibrary/Assets/UseNativeLibrary.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meach/UnitySimpleNativeLibrary/HEAD/Unity/SimpleNativeLibrary/Assets/UseNativeLibrary.cs.meta -------------------------------------------------------------------------------- /Unity/SimpleNativeLibrary/ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meach/UnitySimpleNativeLibrary/HEAD/Unity/SimpleNativeLibrary/ProjectSettings/AudioManager.asset -------------------------------------------------------------------------------- /Unity/SimpleNativeLibrary/ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meach/UnitySimpleNativeLibrary/HEAD/Unity/SimpleNativeLibrary/ProjectSettings/ClusterInputManager.asset -------------------------------------------------------------------------------- /Unity/SimpleNativeLibrary/ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meach/UnitySimpleNativeLibrary/HEAD/Unity/SimpleNativeLibrary/ProjectSettings/DynamicsManager.asset -------------------------------------------------------------------------------- /Unity/SimpleNativeLibrary/ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meach/UnitySimpleNativeLibrary/HEAD/Unity/SimpleNativeLibrary/ProjectSettings/EditorBuildSettings.asset -------------------------------------------------------------------------------- /Unity/SimpleNativeLibrary/ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meach/UnitySimpleNativeLibrary/HEAD/Unity/SimpleNativeLibrary/ProjectSettings/EditorSettings.asset -------------------------------------------------------------------------------- /Unity/SimpleNativeLibrary/ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meach/UnitySimpleNativeLibrary/HEAD/Unity/SimpleNativeLibrary/ProjectSettings/GraphicsSettings.asset -------------------------------------------------------------------------------- /Unity/SimpleNativeLibrary/ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meach/UnitySimpleNativeLibrary/HEAD/Unity/SimpleNativeLibrary/ProjectSettings/InputManager.asset -------------------------------------------------------------------------------- /Unity/SimpleNativeLibrary/ProjectSettings/NavMeshAreas.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meach/UnitySimpleNativeLibrary/HEAD/Unity/SimpleNativeLibrary/ProjectSettings/NavMeshAreas.asset -------------------------------------------------------------------------------- /Unity/SimpleNativeLibrary/ProjectSettings/NetworkManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meach/UnitySimpleNativeLibrary/HEAD/Unity/SimpleNativeLibrary/ProjectSettings/NetworkManager.asset -------------------------------------------------------------------------------- /Unity/SimpleNativeLibrary/ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meach/UnitySimpleNativeLibrary/HEAD/Unity/SimpleNativeLibrary/ProjectSettings/Physics2DSettings.asset -------------------------------------------------------------------------------- /Unity/SimpleNativeLibrary/ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meach/UnitySimpleNativeLibrary/HEAD/Unity/SimpleNativeLibrary/ProjectSettings/ProjectSettings.asset -------------------------------------------------------------------------------- /Unity/SimpleNativeLibrary/ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- 1 | m_EditorVersion: 2017.2.0f3 2 | -------------------------------------------------------------------------------- /Unity/SimpleNativeLibrary/ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meach/UnitySimpleNativeLibrary/HEAD/Unity/SimpleNativeLibrary/ProjectSettings/QualitySettings.asset -------------------------------------------------------------------------------- /Unity/SimpleNativeLibrary/ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meach/UnitySimpleNativeLibrary/HEAD/Unity/SimpleNativeLibrary/ProjectSettings/TagManager.asset -------------------------------------------------------------------------------- /Unity/SimpleNativeLibrary/ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meach/UnitySimpleNativeLibrary/HEAD/Unity/SimpleNativeLibrary/ProjectSettings/TimeManager.asset -------------------------------------------------------------------------------- /Unity/SimpleNativeLibrary/ProjectSettings/UnityConnectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meach/UnitySimpleNativeLibrary/HEAD/Unity/SimpleNativeLibrary/ProjectSettings/UnityConnectSettings.asset -------------------------------------------------------------------------------- /Unity/SimpleNativeLibrary/SimpleNativeLibrary.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meach/UnitySimpleNativeLibrary/HEAD/Unity/SimpleNativeLibrary/SimpleNativeLibrary.csproj -------------------------------------------------------------------------------- /Unity/SimpleNativeLibrary/SimpleNativeLibrary.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meach/UnitySimpleNativeLibrary/HEAD/Unity/SimpleNativeLibrary/SimpleNativeLibrary.sln -------------------------------------------------------------------------------- /Unity/SimpleNativeLibrary/UnityPackageManager/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | } 4 | } 5 | -------------------------------------------------------------------------------- /VisualStudio/SimpleNativeLibrary/SimpleNativeLibrary.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meach/UnitySimpleNativeLibrary/HEAD/VisualStudio/SimpleNativeLibrary/SimpleNativeLibrary.sln -------------------------------------------------------------------------------- /VisualStudio/SimpleNativeLibrary/SimpleNativeLibrary/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meach/UnitySimpleNativeLibrary/HEAD/VisualStudio/SimpleNativeLibrary/SimpleNativeLibrary/ReadMe.txt -------------------------------------------------------------------------------- /VisualStudio/SimpleNativeLibrary/SimpleNativeLibrary/SimpleNativeLibrary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meach/UnitySimpleNativeLibrary/HEAD/VisualStudio/SimpleNativeLibrary/SimpleNativeLibrary/SimpleNativeLibrary.cpp -------------------------------------------------------------------------------- /VisualStudio/SimpleNativeLibrary/SimpleNativeLibrary/SimpleNativeLibrary.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meach/UnitySimpleNativeLibrary/HEAD/VisualStudio/SimpleNativeLibrary/SimpleNativeLibrary/SimpleNativeLibrary.vcxproj -------------------------------------------------------------------------------- /VisualStudio/SimpleNativeLibrary/SimpleNativeLibrary/SimpleNativeLibrary.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meach/UnitySimpleNativeLibrary/HEAD/VisualStudio/SimpleNativeLibrary/SimpleNativeLibrary/SimpleNativeLibrary.vcxproj.filters --------------------------------------------------------------------------------