├── .clang-format ├── .editorconfig ├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .gitmodules ├── .vscode └── c_cpp_properties.json ├── LICENSE ├── README.md ├── X360PluginManager.sln ├── X360PluginManager.vcxproj ├── deps ├── ImGui.vcxproj └── mINI │ ├── mINI.cpp │ ├── mINI.h │ └── mINI.vcxproj ├── resources └── screenshots │ └── example.jpg ├── scripts └── create-release-zip.ps1 └── src ├── Config.cpp ├── Config.h ├── Console.cpp ├── Console.h ├── PluginManager.cpp ├── PluginManager.h ├── UI.cpp ├── UI.h ├── config.ini ├── imgui_impl_dx9.cpp ├── imgui_impl_dx9.h ├── imgui_impl_xbox360.cpp ├── imgui_impl_xbox360.h ├── main.cpp ├── pch.cpp └── pch.h /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementDreptin/X360PluginManager/HEAD/.clang-format -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementDreptin/X360PluginManager/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementDreptin/X360PluginManager/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementDreptin/X360PluginManager/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementDreptin/X360PluginManager/HEAD/.gitmodules -------------------------------------------------------------------------------- /.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementDreptin/X360PluginManager/HEAD/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementDreptin/X360PluginManager/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementDreptin/X360PluginManager/HEAD/README.md -------------------------------------------------------------------------------- /X360PluginManager.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementDreptin/X360PluginManager/HEAD/X360PluginManager.sln -------------------------------------------------------------------------------- /X360PluginManager.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementDreptin/X360PluginManager/HEAD/X360PluginManager.vcxproj -------------------------------------------------------------------------------- /deps/ImGui.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementDreptin/X360PluginManager/HEAD/deps/ImGui.vcxproj -------------------------------------------------------------------------------- /deps/mINI/mINI.cpp: -------------------------------------------------------------------------------- 1 | #define MINI_CASE_SENSITIVE 2 | #include "mINI.h" 3 | -------------------------------------------------------------------------------- /deps/mINI/mINI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementDreptin/X360PluginManager/HEAD/deps/mINI/mINI.h -------------------------------------------------------------------------------- /deps/mINI/mINI.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementDreptin/X360PluginManager/HEAD/deps/mINI/mINI.vcxproj -------------------------------------------------------------------------------- /resources/screenshots/example.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementDreptin/X360PluginManager/HEAD/resources/screenshots/example.jpg -------------------------------------------------------------------------------- /scripts/create-release-zip.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementDreptin/X360PluginManager/HEAD/scripts/create-release-zip.ps1 -------------------------------------------------------------------------------- /src/Config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementDreptin/X360PluginManager/HEAD/src/Config.cpp -------------------------------------------------------------------------------- /src/Config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementDreptin/X360PluginManager/HEAD/src/Config.h -------------------------------------------------------------------------------- /src/Console.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementDreptin/X360PluginManager/HEAD/src/Console.cpp -------------------------------------------------------------------------------- /src/Console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementDreptin/X360PluginManager/HEAD/src/Console.h -------------------------------------------------------------------------------- /src/PluginManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementDreptin/X360PluginManager/HEAD/src/PluginManager.cpp -------------------------------------------------------------------------------- /src/PluginManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementDreptin/X360PluginManager/HEAD/src/PluginManager.h -------------------------------------------------------------------------------- /src/UI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementDreptin/X360PluginManager/HEAD/src/UI.cpp -------------------------------------------------------------------------------- /src/UI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementDreptin/X360PluginManager/HEAD/src/UI.h -------------------------------------------------------------------------------- /src/config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementDreptin/X360PluginManager/HEAD/src/config.ini -------------------------------------------------------------------------------- /src/imgui_impl_dx9.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementDreptin/X360PluginManager/HEAD/src/imgui_impl_dx9.cpp -------------------------------------------------------------------------------- /src/imgui_impl_dx9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementDreptin/X360PluginManager/HEAD/src/imgui_impl_dx9.h -------------------------------------------------------------------------------- /src/imgui_impl_xbox360.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementDreptin/X360PluginManager/HEAD/src/imgui_impl_xbox360.cpp -------------------------------------------------------------------------------- /src/imgui_impl_xbox360.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementDreptin/X360PluginManager/HEAD/src/imgui_impl_xbox360.h -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementDreptin/X360PluginManager/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/pch.cpp: -------------------------------------------------------------------------------- 1 | #include "pch.h" 2 | -------------------------------------------------------------------------------- /src/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementDreptin/X360PluginManager/HEAD/src/pch.h --------------------------------------------------------------------------------