├── .clang-format ├── .editorconfig ├── .gitignore ├── .vscode └── c_cpp_properties.json ├── CodSnippets ├── doubletaps.cpp └── look-for-crate-brushmodel.cpp ├── DLL ├── DetectingGames │ ├── detecting-games.cpp │ └── detecting-games.md ├── HookingFunctions │ ├── hooking-functions.cpp │ └── hooking-functions.md ├── Images │ ├── ida-binary-search-results.png │ ├── ida-binary-search.png │ ├── ida-functions-window.png │ └── ida-hex-view.png ├── RenderingHUD │ ├── rendering-hud.cpp │ └── rendering-hud.md ├── finding-functions.md └── making-dll.md ├── DevelopmentWorkflow └── development-workflow.md ├── GettingStarted ├── GettingStarted │ ├── .clang-format │ ├── .editorconfig │ ├── .gitignore │ ├── .vscode │ │ └── c_cpp_properties.json │ ├── GettingStarted.sln │ ├── GettingStarted.vcxproj │ ├── config.xml │ └── src │ │ └── main.cpp ├── Images │ └── xnotify.png └── getting-started.md ├── LICENSE ├── Prerequisites ├── Images │ ├── ida-xex-prompt.png │ ├── ida.png │ ├── vs-create-project.png │ └── xdk-install-prompt.png ├── assembly.md ├── coding.md ├── console-setup.md ├── install-env.md ├── optional.md └── prerequisites.md ├── README.md ├── home.md └── random-notes.md /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementDreptin/ModdingResources/HEAD/.clang-format -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementDreptin/ModdingResources/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementDreptin/ModdingResources/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementDreptin/ModdingResources/HEAD/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /CodSnippets/doubletaps.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementDreptin/ModdingResources/HEAD/CodSnippets/doubletaps.cpp -------------------------------------------------------------------------------- /CodSnippets/look-for-crate-brushmodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementDreptin/ModdingResources/HEAD/CodSnippets/look-for-crate-brushmodel.cpp -------------------------------------------------------------------------------- /DLL/DetectingGames/detecting-games.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementDreptin/ModdingResources/HEAD/DLL/DetectingGames/detecting-games.cpp -------------------------------------------------------------------------------- /DLL/DetectingGames/detecting-games.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementDreptin/ModdingResources/HEAD/DLL/DetectingGames/detecting-games.md -------------------------------------------------------------------------------- /DLL/HookingFunctions/hooking-functions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementDreptin/ModdingResources/HEAD/DLL/HookingFunctions/hooking-functions.cpp -------------------------------------------------------------------------------- /DLL/HookingFunctions/hooking-functions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementDreptin/ModdingResources/HEAD/DLL/HookingFunctions/hooking-functions.md -------------------------------------------------------------------------------- /DLL/Images/ida-binary-search-results.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementDreptin/ModdingResources/HEAD/DLL/Images/ida-binary-search-results.png -------------------------------------------------------------------------------- /DLL/Images/ida-binary-search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementDreptin/ModdingResources/HEAD/DLL/Images/ida-binary-search.png -------------------------------------------------------------------------------- /DLL/Images/ida-functions-window.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementDreptin/ModdingResources/HEAD/DLL/Images/ida-functions-window.png -------------------------------------------------------------------------------- /DLL/Images/ida-hex-view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementDreptin/ModdingResources/HEAD/DLL/Images/ida-hex-view.png -------------------------------------------------------------------------------- /DLL/RenderingHUD/rendering-hud.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementDreptin/ModdingResources/HEAD/DLL/RenderingHUD/rendering-hud.cpp -------------------------------------------------------------------------------- /DLL/RenderingHUD/rendering-hud.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementDreptin/ModdingResources/HEAD/DLL/RenderingHUD/rendering-hud.md -------------------------------------------------------------------------------- /DLL/finding-functions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementDreptin/ModdingResources/HEAD/DLL/finding-functions.md -------------------------------------------------------------------------------- /DLL/making-dll.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementDreptin/ModdingResources/HEAD/DLL/making-dll.md -------------------------------------------------------------------------------- /DevelopmentWorkflow/development-workflow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementDreptin/ModdingResources/HEAD/DevelopmentWorkflow/development-workflow.md -------------------------------------------------------------------------------- /GettingStarted/GettingStarted/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementDreptin/ModdingResources/HEAD/GettingStarted/GettingStarted/.clang-format -------------------------------------------------------------------------------- /GettingStarted/GettingStarted/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementDreptin/ModdingResources/HEAD/GettingStarted/GettingStarted/.editorconfig -------------------------------------------------------------------------------- /GettingStarted/GettingStarted/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementDreptin/ModdingResources/HEAD/GettingStarted/GettingStarted/.gitignore -------------------------------------------------------------------------------- /GettingStarted/GettingStarted/.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementDreptin/ModdingResources/HEAD/GettingStarted/GettingStarted/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /GettingStarted/GettingStarted/GettingStarted.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementDreptin/ModdingResources/HEAD/GettingStarted/GettingStarted/GettingStarted.sln -------------------------------------------------------------------------------- /GettingStarted/GettingStarted/GettingStarted.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementDreptin/ModdingResources/HEAD/GettingStarted/GettingStarted/GettingStarted.vcxproj -------------------------------------------------------------------------------- /GettingStarted/GettingStarted/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementDreptin/ModdingResources/HEAD/GettingStarted/GettingStarted/config.xml -------------------------------------------------------------------------------- /GettingStarted/GettingStarted/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementDreptin/ModdingResources/HEAD/GettingStarted/GettingStarted/src/main.cpp -------------------------------------------------------------------------------- /GettingStarted/Images/xnotify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementDreptin/ModdingResources/HEAD/GettingStarted/Images/xnotify.png -------------------------------------------------------------------------------- /GettingStarted/getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementDreptin/ModdingResources/HEAD/GettingStarted/getting-started.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementDreptin/ModdingResources/HEAD/LICENSE -------------------------------------------------------------------------------- /Prerequisites/Images/ida-xex-prompt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementDreptin/ModdingResources/HEAD/Prerequisites/Images/ida-xex-prompt.png -------------------------------------------------------------------------------- /Prerequisites/Images/ida.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementDreptin/ModdingResources/HEAD/Prerequisites/Images/ida.png -------------------------------------------------------------------------------- /Prerequisites/Images/vs-create-project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementDreptin/ModdingResources/HEAD/Prerequisites/Images/vs-create-project.png -------------------------------------------------------------------------------- /Prerequisites/Images/xdk-install-prompt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementDreptin/ModdingResources/HEAD/Prerequisites/Images/xdk-install-prompt.png -------------------------------------------------------------------------------- /Prerequisites/assembly.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementDreptin/ModdingResources/HEAD/Prerequisites/assembly.md -------------------------------------------------------------------------------- /Prerequisites/coding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementDreptin/ModdingResources/HEAD/Prerequisites/coding.md -------------------------------------------------------------------------------- /Prerequisites/console-setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementDreptin/ModdingResources/HEAD/Prerequisites/console-setup.md -------------------------------------------------------------------------------- /Prerequisites/install-env.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementDreptin/ModdingResources/HEAD/Prerequisites/install-env.md -------------------------------------------------------------------------------- /Prerequisites/optional.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementDreptin/ModdingResources/HEAD/Prerequisites/optional.md -------------------------------------------------------------------------------- /Prerequisites/prerequisites.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementDreptin/ModdingResources/HEAD/Prerequisites/prerequisites.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementDreptin/ModdingResources/HEAD/README.md -------------------------------------------------------------------------------- /home.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementDreptin/ModdingResources/HEAD/home.md -------------------------------------------------------------------------------- /random-notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClementDreptin/ModdingResources/HEAD/random-notes.md --------------------------------------------------------------------------------