├── .gitignore ├── .vscode ├── c_cpp_properties.json ├── settings.json └── tasks.json ├── Android.mk ├── Application.mk ├── LICENSE ├── README.md ├── copy.ps1 ├── cover.png ├── default-config.json ├── mod.json ├── module.json ├── qpm.json ├── src ├── main.cpp ├── presencemanager.cpp └── presencemanager.hpp └── startlogging.bat /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/Quest-Discord-Presence/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/Quest-Discord-Presence/HEAD/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/Quest-Discord-Presence/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/Quest-Discord-Presence/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/Quest-Discord-Presence/HEAD/Android.mk -------------------------------------------------------------------------------- /Application.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/Quest-Discord-Presence/HEAD/Application.mk -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/Quest-Discord-Presence/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/Quest-Discord-Presence/HEAD/README.md -------------------------------------------------------------------------------- /copy.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/Quest-Discord-Presence/HEAD/copy.ps1 -------------------------------------------------------------------------------- /cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/Quest-Discord-Presence/HEAD/cover.png -------------------------------------------------------------------------------- /default-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/Quest-Discord-Presence/HEAD/default-config.json -------------------------------------------------------------------------------- /mod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/Quest-Discord-Presence/HEAD/mod.json -------------------------------------------------------------------------------- /module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/Quest-Discord-Presence/HEAD/module.json -------------------------------------------------------------------------------- /qpm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/Quest-Discord-Presence/HEAD/qpm.json -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/Quest-Discord-Presence/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/presencemanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/Quest-Discord-Presence/HEAD/src/presencemanager.cpp -------------------------------------------------------------------------------- /src/presencemanager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/Quest-Discord-Presence/HEAD/src/presencemanager.hpp -------------------------------------------------------------------------------- /startlogging.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lauriethefish/Quest-Discord-Presence/HEAD/startlogging.bat --------------------------------------------------------------------------------