├── .gitignore ├── .templatr ├── LICENSE ├── README.md ├── makeTemplate.ps1 └── template ├── .github ├── actions │ └── canary-ndk │ │ └── action.yml └── workflows │ └── build-ndk.yml ├── .gitignore ├── .vscode ├── c_cpp_properties.json ├── launch.json ├── settings.json └── tasks.json ├── CMakeLists.txt ├── README.md ├── cmake ├── git.cmake ├── gtest.cmake ├── qpm.cmake ├── strip.cmake ├── targets │ ├── android-ndk.cmake │ └── quest.cmake ├── utils.cmake └── vcpkg.cmake ├── include ├── _config.hpp └── main.hpp ├── mod.template.json ├── ndkpath.txt ├── qpm.json ├── scripts ├── build.ps1 ├── copy.ps1 ├── createqmod.ps1 ├── ndk-stack.ps1 ├── pull-tombstone.ps1 ├── restart-game.ps1 ├── start-logging.ps1 └── validate-modjson.ps1 └── src └── main.cpp /.gitignore: -------------------------------------------------------------------------------- 1 | quest-mod-template.zip -------------------------------------------------------------------------------- /.templatr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/quest-mod-template/HEAD/.templatr -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/quest-mod-template/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/quest-mod-template/HEAD/README.md -------------------------------------------------------------------------------- /makeTemplate.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/quest-mod-template/HEAD/makeTemplate.ps1 -------------------------------------------------------------------------------- /template/.github/actions/canary-ndk/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/quest-mod-template/HEAD/template/.github/actions/canary-ndk/action.yml -------------------------------------------------------------------------------- /template/.github/workflows/build-ndk.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/quest-mod-template/HEAD/template/.github/workflows/build-ndk.yml -------------------------------------------------------------------------------- /template/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/quest-mod-template/HEAD/template/.gitignore -------------------------------------------------------------------------------- /template/.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/quest-mod-template/HEAD/template/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /template/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/quest-mod-template/HEAD/template/.vscode/launch.json -------------------------------------------------------------------------------- /template/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/quest-mod-template/HEAD/template/.vscode/settings.json -------------------------------------------------------------------------------- /template/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/quest-mod-template/HEAD/template/.vscode/tasks.json -------------------------------------------------------------------------------- /template/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/quest-mod-template/HEAD/template/CMakeLists.txt -------------------------------------------------------------------------------- /template/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/quest-mod-template/HEAD/template/README.md -------------------------------------------------------------------------------- /template/cmake/git.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/quest-mod-template/HEAD/template/cmake/git.cmake -------------------------------------------------------------------------------- /template/cmake/gtest.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/quest-mod-template/HEAD/template/cmake/gtest.cmake -------------------------------------------------------------------------------- /template/cmake/qpm.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/quest-mod-template/HEAD/template/cmake/qpm.cmake -------------------------------------------------------------------------------- /template/cmake/strip.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/quest-mod-template/HEAD/template/cmake/strip.cmake -------------------------------------------------------------------------------- /template/cmake/targets/android-ndk.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/quest-mod-template/HEAD/template/cmake/targets/android-ndk.cmake -------------------------------------------------------------------------------- /template/cmake/targets/quest.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/quest-mod-template/HEAD/template/cmake/targets/quest.cmake -------------------------------------------------------------------------------- /template/cmake/utils.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/quest-mod-template/HEAD/template/cmake/utils.cmake -------------------------------------------------------------------------------- /template/cmake/vcpkg.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/quest-mod-template/HEAD/template/cmake/vcpkg.cmake -------------------------------------------------------------------------------- /template/include/_config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/quest-mod-template/HEAD/template/include/_config.hpp -------------------------------------------------------------------------------- /template/include/main.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/quest-mod-template/HEAD/template/include/main.hpp -------------------------------------------------------------------------------- /template/mod.template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/quest-mod-template/HEAD/template/mod.template.json -------------------------------------------------------------------------------- /template/ndkpath.txt: -------------------------------------------------------------------------------- 1 | #{ndkpath} -------------------------------------------------------------------------------- /template/qpm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/quest-mod-template/HEAD/template/qpm.json -------------------------------------------------------------------------------- /template/scripts/build.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/quest-mod-template/HEAD/template/scripts/build.ps1 -------------------------------------------------------------------------------- /template/scripts/copy.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/quest-mod-template/HEAD/template/scripts/copy.ps1 -------------------------------------------------------------------------------- /template/scripts/createqmod.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/quest-mod-template/HEAD/template/scripts/createqmod.ps1 -------------------------------------------------------------------------------- /template/scripts/ndk-stack.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/quest-mod-template/HEAD/template/scripts/ndk-stack.ps1 -------------------------------------------------------------------------------- /template/scripts/pull-tombstone.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/quest-mod-template/HEAD/template/scripts/pull-tombstone.ps1 -------------------------------------------------------------------------------- /template/scripts/restart-game.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/quest-mod-template/HEAD/template/scripts/restart-game.ps1 -------------------------------------------------------------------------------- /template/scripts/start-logging.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/quest-mod-template/HEAD/template/scripts/start-logging.ps1 -------------------------------------------------------------------------------- /template/scripts/validate-modjson.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/quest-mod-template/HEAD/template/scripts/validate-modjson.ps1 -------------------------------------------------------------------------------- /template/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/quest-mod-template/HEAD/template/src/main.cpp --------------------------------------------------------------------------------