├── .clang-format ├── .editorconfig ├── .github └── workflows │ ├── build-ndk.yml │ └── publish.yml ├── .gitignore ├── .vscode └── c_cpp_properties.json ├── CMakeLists.txt ├── CMakeSettings.json ├── CustomTypes.code-workspace ├── LICENSE ├── README.md ├── cover.png ├── createqmod.ps1 ├── include └── capstone-helpers.hpp ├── mod.template.json ├── qpm.json ├── qpm.shared.json ├── shared ├── coroutine.hpp ├── delegate.hpp ├── logging.hpp ├── macros.hpp ├── register.hpp ├── types.hpp └── util.hpp ├── src ├── NoteData.hpp ├── coroutine.cpp ├── delegate.cpp ├── logging.cpp ├── register.cpp ├── test-coroutine.cpp ├── test.cpp ├── test_small.cpp └── type-registration.cpp └── startAndLog.ps1 /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sc2ad/Il2CppQuestTypePatching/HEAD/.clang-format -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sc2ad/Il2CppQuestTypePatching/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/build-ndk.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sc2ad/Il2CppQuestTypePatching/HEAD/.github/workflows/build-ndk.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sc2ad/Il2CppQuestTypePatching/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sc2ad/Il2CppQuestTypePatching/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sc2ad/Il2CppQuestTypePatching/HEAD/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sc2ad/Il2CppQuestTypePatching/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CMakeSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sc2ad/Il2CppQuestTypePatching/HEAD/CMakeSettings.json -------------------------------------------------------------------------------- /CustomTypes.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sc2ad/Il2CppQuestTypePatching/HEAD/CustomTypes.code-workspace -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sc2ad/Il2CppQuestTypePatching/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sc2ad/Il2CppQuestTypePatching/HEAD/README.md -------------------------------------------------------------------------------- /cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sc2ad/Il2CppQuestTypePatching/HEAD/cover.png -------------------------------------------------------------------------------- /createqmod.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sc2ad/Il2CppQuestTypePatching/HEAD/createqmod.ps1 -------------------------------------------------------------------------------- /include/capstone-helpers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sc2ad/Il2CppQuestTypePatching/HEAD/include/capstone-helpers.hpp -------------------------------------------------------------------------------- /mod.template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sc2ad/Il2CppQuestTypePatching/HEAD/mod.template.json -------------------------------------------------------------------------------- /qpm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sc2ad/Il2CppQuestTypePatching/HEAD/qpm.json -------------------------------------------------------------------------------- /qpm.shared.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sc2ad/Il2CppQuestTypePatching/HEAD/qpm.shared.json -------------------------------------------------------------------------------- /shared/coroutine.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sc2ad/Il2CppQuestTypePatching/HEAD/shared/coroutine.hpp -------------------------------------------------------------------------------- /shared/delegate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sc2ad/Il2CppQuestTypePatching/HEAD/shared/delegate.hpp -------------------------------------------------------------------------------- /shared/logging.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sc2ad/Il2CppQuestTypePatching/HEAD/shared/logging.hpp -------------------------------------------------------------------------------- /shared/macros.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sc2ad/Il2CppQuestTypePatching/HEAD/shared/macros.hpp -------------------------------------------------------------------------------- /shared/register.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sc2ad/Il2CppQuestTypePatching/HEAD/shared/register.hpp -------------------------------------------------------------------------------- /shared/types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sc2ad/Il2CppQuestTypePatching/HEAD/shared/types.hpp -------------------------------------------------------------------------------- /shared/util.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sc2ad/Il2CppQuestTypePatching/HEAD/shared/util.hpp -------------------------------------------------------------------------------- /src/NoteData.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sc2ad/Il2CppQuestTypePatching/HEAD/src/NoteData.hpp -------------------------------------------------------------------------------- /src/coroutine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sc2ad/Il2CppQuestTypePatching/HEAD/src/coroutine.cpp -------------------------------------------------------------------------------- /src/delegate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sc2ad/Il2CppQuestTypePatching/HEAD/src/delegate.cpp -------------------------------------------------------------------------------- /src/logging.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sc2ad/Il2CppQuestTypePatching/HEAD/src/logging.cpp -------------------------------------------------------------------------------- /src/register.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sc2ad/Il2CppQuestTypePatching/HEAD/src/register.cpp -------------------------------------------------------------------------------- /src/test-coroutine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sc2ad/Il2CppQuestTypePatching/HEAD/src/test-coroutine.cpp -------------------------------------------------------------------------------- /src/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sc2ad/Il2CppQuestTypePatching/HEAD/src/test.cpp -------------------------------------------------------------------------------- /src/test_small.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sc2ad/Il2CppQuestTypePatching/HEAD/src/test_small.cpp -------------------------------------------------------------------------------- /src/type-registration.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sc2ad/Il2CppQuestTypePatching/HEAD/src/type-registration.cpp -------------------------------------------------------------------------------- /startAndLog.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sc2ad/Il2CppQuestTypePatching/HEAD/startAndLog.ps1 --------------------------------------------------------------------------------