├── .gitattributes ├── .gitignore ├── .gitmodules ├── .idea ├── codeStyles │ └── Project.xml ├── inspectionProfiles │ └── Project_Default.xml └── misc.xml ├── README.md ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── module.gradle ├── module ├── .gitignore ├── build.gradle ├── magisk_module │ ├── .gitattributes │ ├── META-INF │ │ └── com │ │ │ └── google │ │ │ └── android │ │ │ ├── update-binary │ │ │ └── updater-script │ ├── customize.sh │ ├── module.prop │ ├── uninstall.sh │ └── verify.sh └── src │ └── main │ ├── AndroidManifest.xml │ └── cpp │ ├── CMakeLists.txt │ ├── hook_main.cpp │ ├── hook_main.h │ ├── il2cppapi │ ├── 2017.1.0f3 │ │ ├── il2cpp-api-functions.h │ │ └── il2cpp-class.h │ ├── 2017.1.3f1 │ │ ├── il2cpp-api-functions.h │ │ └── il2cpp-class.h │ ├── 2017.2.0f3 │ │ ├── il2cpp-api-functions.h │ │ └── il2cpp-class.h │ ├── 2017.2.1f1 │ │ ├── il2cpp-api-functions.h │ │ └── il2cpp-class.h │ ├── 2018.1.0f2 │ │ ├── il2cpp-api-functions.h │ │ └── il2cpp-class.h │ ├── 2018.2.0f2 │ │ ├── il2cpp-api-functions.h │ │ └── il2cpp-class.h │ ├── 2018.3.0f2 │ │ ├── il2cpp-api-functions.h │ │ └── il2cpp-class.h │ ├── 2018.3.8f1 │ │ ├── il2cpp-api-functions.h │ │ └── il2cpp-class.h │ ├── 2019.1.0f2 │ │ ├── il2cpp-api-functions.h │ │ └── il2cpp-class.h │ ├── 2019.3.0f6 │ │ ├── il2cpp-api-functions.h │ │ └── il2cpp-class.h │ ├── 2019.3.7f1 │ │ ├── il2cpp-api-functions.h │ │ └── il2cpp-class.h │ ├── 2019.4.15f1 │ │ ├── il2cpp-api-functions.h │ │ └── il2cpp-class.h │ ├── 2019.4.21f1 │ │ ├── il2cpp-api-functions.h │ │ └── il2cpp-class.h │ ├── 2020.1.0f1 │ │ ├── il2cpp-api-functions.h │ │ └── il2cpp-class.h │ ├── 2020.1.11f1 │ │ ├── il2cpp-api-functions.h │ │ └── il2cpp-class.h │ ├── 2020.2.0f1 │ │ ├── il2cpp-api-functions.h │ │ └── il2cpp-class.h │ ├── 2020.2.4f1 │ │ ├── il2cpp-api-functions.h │ │ └── il2cpp-class.h │ ├── 2021.1.0f1 │ │ ├── il2cpp-api-functions.h │ │ └── il2cpp-class.h │ ├── 5.3.0f4 │ │ ├── il2cpp-api-functions.h │ │ └── il2cpp-class.h │ ├── 5.3.2f1 │ │ ├── il2cpp-api-functions.h │ │ └── il2cpp-class.h │ ├── 5.3.3f1 │ │ ├── il2cpp-api-functions.h │ │ └── il2cpp-class.h │ ├── 5.3.5f1 │ │ ├── il2cpp-api-functions.h │ │ └── il2cpp-class.h │ ├── 5.3.6f1 │ │ ├── il2cpp-api-functions.h │ │ └── il2cpp-class.h │ ├── 5.3.7f1 │ │ ├── il2cpp-api-functions.h │ │ └── il2cpp-class.h │ ├── 5.4.0f3 │ │ ├── il2cpp-api-functions.h │ │ └── il2cpp-class.h │ ├── 5.4.1f1 │ │ ├── il2cpp-api-functions.h │ │ └── il2cpp-class.h │ ├── 5.4.4f1 │ │ ├── il2cpp-api-functions.h │ │ └── il2cpp-class.h │ ├── 5.5.0f3 │ │ ├── il2cpp-api-functions.h │ │ └── il2cpp-class.h │ ├── 5.5.1f1 │ │ ├── il2cpp-api-functions.h │ │ └── il2cpp-class.h │ └── 5.6.0f3 │ │ ├── il2cpp-api-functions.h │ │ └── il2cpp-class.h │ ├── include │ ├── config.h │ └── zygisk.hpp │ ├── main.cpp │ └── template │ └── config.cpp └── settings.gradle /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotori2/riru_unity_example/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotori2/riru_unity_example/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotori2/riru_unity_example/HEAD/.idea/codeStyles/Project.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotori2/riru_unity_example/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotori2/riru_unity_example/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotori2/riru_unity_example/HEAD/README.md -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotori2/riru_unity_example/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotori2/riru_unity_example/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotori2/riru_unity_example/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotori2/riru_unity_example/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotori2/riru_unity_example/HEAD/gradlew.bat -------------------------------------------------------------------------------- /module.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotori2/riru_unity_example/HEAD/module.gradle -------------------------------------------------------------------------------- /module/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotori2/riru_unity_example/HEAD/module/.gitignore -------------------------------------------------------------------------------- /module/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotori2/riru_unity_example/HEAD/module/build.gradle -------------------------------------------------------------------------------- /module/magisk_module/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotori2/riru_unity_example/HEAD/module/magisk_module/.gitattributes -------------------------------------------------------------------------------- /module/magisk_module/META-INF/com/google/android/update-binary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotori2/riru_unity_example/HEAD/module/magisk_module/META-INF/com/google/android/update-binary -------------------------------------------------------------------------------- /module/magisk_module/META-INF/com/google/android/updater-script: -------------------------------------------------------------------------------- 1 | #MAGISK 2 | -------------------------------------------------------------------------------- /module/magisk_module/customize.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotori2/riru_unity_example/HEAD/module/magisk_module/customize.sh -------------------------------------------------------------------------------- /module/magisk_module/module.prop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotori2/riru_unity_example/HEAD/module/magisk_module/module.prop -------------------------------------------------------------------------------- /module/magisk_module/uninstall.sh: -------------------------------------------------------------------------------- 1 | #!/sbin/sh 2 | MODDIR=${0%/*} -------------------------------------------------------------------------------- /module/magisk_module/verify.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotori2/riru_unity_example/HEAD/module/magisk_module/verify.sh -------------------------------------------------------------------------------- /module/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /module/src/main/cpp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotori2/riru_unity_example/HEAD/module/src/main/cpp/CMakeLists.txt -------------------------------------------------------------------------------- /module/src/main/cpp/hook_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotori2/riru_unity_example/HEAD/module/src/main/cpp/hook_main.cpp -------------------------------------------------------------------------------- /module/src/main/cpp/hook_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotori2/riru_unity_example/HEAD/module/src/main/cpp/hook_main.h -------------------------------------------------------------------------------- /module/src/main/cpp/il2cppapi/2017.1.0f3/il2cpp-api-functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotori2/riru_unity_example/HEAD/module/src/main/cpp/il2cppapi/2017.1.0f3/il2cpp-api-functions.h -------------------------------------------------------------------------------- /module/src/main/cpp/il2cppapi/2017.1.0f3/il2cpp-class.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotori2/riru_unity_example/HEAD/module/src/main/cpp/il2cppapi/2017.1.0f3/il2cpp-class.h -------------------------------------------------------------------------------- /module/src/main/cpp/il2cppapi/2017.1.3f1/il2cpp-api-functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotori2/riru_unity_example/HEAD/module/src/main/cpp/il2cppapi/2017.1.3f1/il2cpp-api-functions.h -------------------------------------------------------------------------------- /module/src/main/cpp/il2cppapi/2017.1.3f1/il2cpp-class.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotori2/riru_unity_example/HEAD/module/src/main/cpp/il2cppapi/2017.1.3f1/il2cpp-class.h -------------------------------------------------------------------------------- /module/src/main/cpp/il2cppapi/2017.2.0f3/il2cpp-api-functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotori2/riru_unity_example/HEAD/module/src/main/cpp/il2cppapi/2017.2.0f3/il2cpp-api-functions.h -------------------------------------------------------------------------------- /module/src/main/cpp/il2cppapi/2017.2.0f3/il2cpp-class.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotori2/riru_unity_example/HEAD/module/src/main/cpp/il2cppapi/2017.2.0f3/il2cpp-class.h -------------------------------------------------------------------------------- /module/src/main/cpp/il2cppapi/2017.2.1f1/il2cpp-api-functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotori2/riru_unity_example/HEAD/module/src/main/cpp/il2cppapi/2017.2.1f1/il2cpp-api-functions.h -------------------------------------------------------------------------------- /module/src/main/cpp/il2cppapi/2017.2.1f1/il2cpp-class.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotori2/riru_unity_example/HEAD/module/src/main/cpp/il2cppapi/2017.2.1f1/il2cpp-class.h -------------------------------------------------------------------------------- /module/src/main/cpp/il2cppapi/2018.1.0f2/il2cpp-api-functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotori2/riru_unity_example/HEAD/module/src/main/cpp/il2cppapi/2018.1.0f2/il2cpp-api-functions.h -------------------------------------------------------------------------------- /module/src/main/cpp/il2cppapi/2018.1.0f2/il2cpp-class.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotori2/riru_unity_example/HEAD/module/src/main/cpp/il2cppapi/2018.1.0f2/il2cpp-class.h -------------------------------------------------------------------------------- /module/src/main/cpp/il2cppapi/2018.2.0f2/il2cpp-api-functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotori2/riru_unity_example/HEAD/module/src/main/cpp/il2cppapi/2018.2.0f2/il2cpp-api-functions.h -------------------------------------------------------------------------------- /module/src/main/cpp/il2cppapi/2018.2.0f2/il2cpp-class.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotori2/riru_unity_example/HEAD/module/src/main/cpp/il2cppapi/2018.2.0f2/il2cpp-class.h -------------------------------------------------------------------------------- /module/src/main/cpp/il2cppapi/2018.3.0f2/il2cpp-api-functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotori2/riru_unity_example/HEAD/module/src/main/cpp/il2cppapi/2018.3.0f2/il2cpp-api-functions.h -------------------------------------------------------------------------------- /module/src/main/cpp/il2cppapi/2018.3.0f2/il2cpp-class.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotori2/riru_unity_example/HEAD/module/src/main/cpp/il2cppapi/2018.3.0f2/il2cpp-class.h -------------------------------------------------------------------------------- /module/src/main/cpp/il2cppapi/2018.3.8f1/il2cpp-api-functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotori2/riru_unity_example/HEAD/module/src/main/cpp/il2cppapi/2018.3.8f1/il2cpp-api-functions.h -------------------------------------------------------------------------------- /module/src/main/cpp/il2cppapi/2018.3.8f1/il2cpp-class.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotori2/riru_unity_example/HEAD/module/src/main/cpp/il2cppapi/2018.3.8f1/il2cpp-class.h -------------------------------------------------------------------------------- /module/src/main/cpp/il2cppapi/2019.1.0f2/il2cpp-api-functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotori2/riru_unity_example/HEAD/module/src/main/cpp/il2cppapi/2019.1.0f2/il2cpp-api-functions.h -------------------------------------------------------------------------------- /module/src/main/cpp/il2cppapi/2019.1.0f2/il2cpp-class.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotori2/riru_unity_example/HEAD/module/src/main/cpp/il2cppapi/2019.1.0f2/il2cpp-class.h -------------------------------------------------------------------------------- /module/src/main/cpp/il2cppapi/2019.3.0f6/il2cpp-api-functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotori2/riru_unity_example/HEAD/module/src/main/cpp/il2cppapi/2019.3.0f6/il2cpp-api-functions.h -------------------------------------------------------------------------------- /module/src/main/cpp/il2cppapi/2019.3.0f6/il2cpp-class.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotori2/riru_unity_example/HEAD/module/src/main/cpp/il2cppapi/2019.3.0f6/il2cpp-class.h -------------------------------------------------------------------------------- /module/src/main/cpp/il2cppapi/2019.3.7f1/il2cpp-api-functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotori2/riru_unity_example/HEAD/module/src/main/cpp/il2cppapi/2019.3.7f1/il2cpp-api-functions.h -------------------------------------------------------------------------------- /module/src/main/cpp/il2cppapi/2019.3.7f1/il2cpp-class.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotori2/riru_unity_example/HEAD/module/src/main/cpp/il2cppapi/2019.3.7f1/il2cpp-class.h -------------------------------------------------------------------------------- /module/src/main/cpp/il2cppapi/2019.4.15f1/il2cpp-api-functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotori2/riru_unity_example/HEAD/module/src/main/cpp/il2cppapi/2019.4.15f1/il2cpp-api-functions.h -------------------------------------------------------------------------------- /module/src/main/cpp/il2cppapi/2019.4.15f1/il2cpp-class.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotori2/riru_unity_example/HEAD/module/src/main/cpp/il2cppapi/2019.4.15f1/il2cpp-class.h -------------------------------------------------------------------------------- /module/src/main/cpp/il2cppapi/2019.4.21f1/il2cpp-api-functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotori2/riru_unity_example/HEAD/module/src/main/cpp/il2cppapi/2019.4.21f1/il2cpp-api-functions.h -------------------------------------------------------------------------------- /module/src/main/cpp/il2cppapi/2019.4.21f1/il2cpp-class.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotori2/riru_unity_example/HEAD/module/src/main/cpp/il2cppapi/2019.4.21f1/il2cpp-class.h -------------------------------------------------------------------------------- /module/src/main/cpp/il2cppapi/2020.1.0f1/il2cpp-api-functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotori2/riru_unity_example/HEAD/module/src/main/cpp/il2cppapi/2020.1.0f1/il2cpp-api-functions.h -------------------------------------------------------------------------------- /module/src/main/cpp/il2cppapi/2020.1.0f1/il2cpp-class.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotori2/riru_unity_example/HEAD/module/src/main/cpp/il2cppapi/2020.1.0f1/il2cpp-class.h -------------------------------------------------------------------------------- /module/src/main/cpp/il2cppapi/2020.1.11f1/il2cpp-api-functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotori2/riru_unity_example/HEAD/module/src/main/cpp/il2cppapi/2020.1.11f1/il2cpp-api-functions.h -------------------------------------------------------------------------------- /module/src/main/cpp/il2cppapi/2020.1.11f1/il2cpp-class.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotori2/riru_unity_example/HEAD/module/src/main/cpp/il2cppapi/2020.1.11f1/il2cpp-class.h -------------------------------------------------------------------------------- /module/src/main/cpp/il2cppapi/2020.2.0f1/il2cpp-api-functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotori2/riru_unity_example/HEAD/module/src/main/cpp/il2cppapi/2020.2.0f1/il2cpp-api-functions.h -------------------------------------------------------------------------------- /module/src/main/cpp/il2cppapi/2020.2.0f1/il2cpp-class.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotori2/riru_unity_example/HEAD/module/src/main/cpp/il2cppapi/2020.2.0f1/il2cpp-class.h -------------------------------------------------------------------------------- /module/src/main/cpp/il2cppapi/2020.2.4f1/il2cpp-api-functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotori2/riru_unity_example/HEAD/module/src/main/cpp/il2cppapi/2020.2.4f1/il2cpp-api-functions.h -------------------------------------------------------------------------------- /module/src/main/cpp/il2cppapi/2020.2.4f1/il2cpp-class.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotori2/riru_unity_example/HEAD/module/src/main/cpp/il2cppapi/2020.2.4f1/il2cpp-class.h -------------------------------------------------------------------------------- /module/src/main/cpp/il2cppapi/2021.1.0f1/il2cpp-api-functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotori2/riru_unity_example/HEAD/module/src/main/cpp/il2cppapi/2021.1.0f1/il2cpp-api-functions.h -------------------------------------------------------------------------------- /module/src/main/cpp/il2cppapi/2021.1.0f1/il2cpp-class.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotori2/riru_unity_example/HEAD/module/src/main/cpp/il2cppapi/2021.1.0f1/il2cpp-class.h -------------------------------------------------------------------------------- /module/src/main/cpp/il2cppapi/5.3.0f4/il2cpp-api-functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotori2/riru_unity_example/HEAD/module/src/main/cpp/il2cppapi/5.3.0f4/il2cpp-api-functions.h -------------------------------------------------------------------------------- /module/src/main/cpp/il2cppapi/5.3.0f4/il2cpp-class.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotori2/riru_unity_example/HEAD/module/src/main/cpp/il2cppapi/5.3.0f4/il2cpp-class.h -------------------------------------------------------------------------------- /module/src/main/cpp/il2cppapi/5.3.2f1/il2cpp-api-functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotori2/riru_unity_example/HEAD/module/src/main/cpp/il2cppapi/5.3.2f1/il2cpp-api-functions.h -------------------------------------------------------------------------------- /module/src/main/cpp/il2cppapi/5.3.2f1/il2cpp-class.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotori2/riru_unity_example/HEAD/module/src/main/cpp/il2cppapi/5.3.2f1/il2cpp-class.h -------------------------------------------------------------------------------- /module/src/main/cpp/il2cppapi/5.3.3f1/il2cpp-api-functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotori2/riru_unity_example/HEAD/module/src/main/cpp/il2cppapi/5.3.3f1/il2cpp-api-functions.h -------------------------------------------------------------------------------- /module/src/main/cpp/il2cppapi/5.3.3f1/il2cpp-class.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotori2/riru_unity_example/HEAD/module/src/main/cpp/il2cppapi/5.3.3f1/il2cpp-class.h -------------------------------------------------------------------------------- /module/src/main/cpp/il2cppapi/5.3.5f1/il2cpp-api-functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotori2/riru_unity_example/HEAD/module/src/main/cpp/il2cppapi/5.3.5f1/il2cpp-api-functions.h -------------------------------------------------------------------------------- /module/src/main/cpp/il2cppapi/5.3.5f1/il2cpp-class.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotori2/riru_unity_example/HEAD/module/src/main/cpp/il2cppapi/5.3.5f1/il2cpp-class.h -------------------------------------------------------------------------------- /module/src/main/cpp/il2cppapi/5.3.6f1/il2cpp-api-functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotori2/riru_unity_example/HEAD/module/src/main/cpp/il2cppapi/5.3.6f1/il2cpp-api-functions.h -------------------------------------------------------------------------------- /module/src/main/cpp/il2cppapi/5.3.6f1/il2cpp-class.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotori2/riru_unity_example/HEAD/module/src/main/cpp/il2cppapi/5.3.6f1/il2cpp-class.h -------------------------------------------------------------------------------- /module/src/main/cpp/il2cppapi/5.3.7f1/il2cpp-api-functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotori2/riru_unity_example/HEAD/module/src/main/cpp/il2cppapi/5.3.7f1/il2cpp-api-functions.h -------------------------------------------------------------------------------- /module/src/main/cpp/il2cppapi/5.3.7f1/il2cpp-class.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotori2/riru_unity_example/HEAD/module/src/main/cpp/il2cppapi/5.3.7f1/il2cpp-class.h -------------------------------------------------------------------------------- /module/src/main/cpp/il2cppapi/5.4.0f3/il2cpp-api-functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotori2/riru_unity_example/HEAD/module/src/main/cpp/il2cppapi/5.4.0f3/il2cpp-api-functions.h -------------------------------------------------------------------------------- /module/src/main/cpp/il2cppapi/5.4.0f3/il2cpp-class.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotori2/riru_unity_example/HEAD/module/src/main/cpp/il2cppapi/5.4.0f3/il2cpp-class.h -------------------------------------------------------------------------------- /module/src/main/cpp/il2cppapi/5.4.1f1/il2cpp-api-functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotori2/riru_unity_example/HEAD/module/src/main/cpp/il2cppapi/5.4.1f1/il2cpp-api-functions.h -------------------------------------------------------------------------------- /module/src/main/cpp/il2cppapi/5.4.1f1/il2cpp-class.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotori2/riru_unity_example/HEAD/module/src/main/cpp/il2cppapi/5.4.1f1/il2cpp-class.h -------------------------------------------------------------------------------- /module/src/main/cpp/il2cppapi/5.4.4f1/il2cpp-api-functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotori2/riru_unity_example/HEAD/module/src/main/cpp/il2cppapi/5.4.4f1/il2cpp-api-functions.h -------------------------------------------------------------------------------- /module/src/main/cpp/il2cppapi/5.4.4f1/il2cpp-class.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotori2/riru_unity_example/HEAD/module/src/main/cpp/il2cppapi/5.4.4f1/il2cpp-class.h -------------------------------------------------------------------------------- /module/src/main/cpp/il2cppapi/5.5.0f3/il2cpp-api-functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotori2/riru_unity_example/HEAD/module/src/main/cpp/il2cppapi/5.5.0f3/il2cpp-api-functions.h -------------------------------------------------------------------------------- /module/src/main/cpp/il2cppapi/5.5.0f3/il2cpp-class.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotori2/riru_unity_example/HEAD/module/src/main/cpp/il2cppapi/5.5.0f3/il2cpp-class.h -------------------------------------------------------------------------------- /module/src/main/cpp/il2cppapi/5.5.1f1/il2cpp-api-functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotori2/riru_unity_example/HEAD/module/src/main/cpp/il2cppapi/5.5.1f1/il2cpp-api-functions.h -------------------------------------------------------------------------------- /module/src/main/cpp/il2cppapi/5.5.1f1/il2cpp-class.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotori2/riru_unity_example/HEAD/module/src/main/cpp/il2cppapi/5.5.1f1/il2cpp-class.h -------------------------------------------------------------------------------- /module/src/main/cpp/il2cppapi/5.6.0f3/il2cpp-api-functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotori2/riru_unity_example/HEAD/module/src/main/cpp/il2cppapi/5.6.0f3/il2cpp-api-functions.h -------------------------------------------------------------------------------- /module/src/main/cpp/il2cppapi/5.6.0f3/il2cpp-class.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotori2/riru_unity_example/HEAD/module/src/main/cpp/il2cppapi/5.6.0f3/il2cpp-class.h -------------------------------------------------------------------------------- /module/src/main/cpp/include/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotori2/riru_unity_example/HEAD/module/src/main/cpp/include/config.h -------------------------------------------------------------------------------- /module/src/main/cpp/include/zygisk.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotori2/riru_unity_example/HEAD/module/src/main/cpp/include/zygisk.hpp -------------------------------------------------------------------------------- /module/src/main/cpp/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotori2/riru_unity_example/HEAD/module/src/main/cpp/main.cpp -------------------------------------------------------------------------------- /module/src/main/cpp/template/config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotori2/riru_unity_example/HEAD/module/src/main/cpp/template/config.cpp -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':module' 2 | 3 | rootProject.name = "Zygisk-UnityHook" --------------------------------------------------------------------------------