├── .gitignore ├── .travis.yml ├── CheatEngine ├── README.md ├── integration │ ├── premake4.lua │ └── src │ │ ├── main.cpp │ │ └── main_target.cpp ├── premake4.lua ├── src │ ├── CheatEngine.cpp │ ├── CheatEngine.h │ ├── Matches.cpp │ ├── Matches.h │ ├── MemoryPage.h │ ├── OS.h │ ├── PageMatches.h │ ├── Process.h │ ├── ValueType.h │ ├── ValueTypes.cpp │ ├── ValueTypes.h │ ├── helper.cpp │ ├── helper.h │ ├── main.cpp │ ├── platform.h │ └── platform │ │ ├── linux │ │ ├── LinuxMemoryPage.cpp │ │ ├── LinuxMemoryPage.h │ │ ├── LinuxOS.cpp │ │ ├── LinuxOS.h │ │ ├── LinuxProcess.cpp │ │ ├── LinuxProcess.h │ │ ├── LinuxProcessLocker.cpp │ │ └── LinuxProcessLocker.h │ │ └── win32 │ │ ├── WindowsOS.cpp │ │ ├── WindowsOS.h │ │ ├── WindowsProcess.cpp │ │ └── WindowsProcess.h └── tests │ ├── premake4.lua │ └── src │ ├── CheatEngineTests.cpp │ ├── FakeProcess.h │ ├── FakeProcessTests.cpp │ ├── LinuxMemoryPageTests.cpp │ ├── LinuxOSTests.cpp │ ├── MatchesTests.cpp │ ├── PageMatchesTests.cpp │ ├── ValueTypesTests.cpp │ ├── catch.hpp │ └── main.cpp ├── FakeGame ├── premake4.lua └── src │ └── main.cpp ├── README.md ├── images ├── minecraft.png └── python.png └── premake4.lua /.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | bin/ 3 | obj/ -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JesseEmond/cheat-and-gin/HEAD/.travis.yml -------------------------------------------------------------------------------- /CheatEngine/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JesseEmond/cheat-and-gin/HEAD/CheatEngine/README.md -------------------------------------------------------------------------------- /CheatEngine/integration/premake4.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JesseEmond/cheat-and-gin/HEAD/CheatEngine/integration/premake4.lua -------------------------------------------------------------------------------- /CheatEngine/integration/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JesseEmond/cheat-and-gin/HEAD/CheatEngine/integration/src/main.cpp -------------------------------------------------------------------------------- /CheatEngine/integration/src/main_target.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JesseEmond/cheat-and-gin/HEAD/CheatEngine/integration/src/main_target.cpp -------------------------------------------------------------------------------- /CheatEngine/premake4.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JesseEmond/cheat-and-gin/HEAD/CheatEngine/premake4.lua -------------------------------------------------------------------------------- /CheatEngine/src/CheatEngine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JesseEmond/cheat-and-gin/HEAD/CheatEngine/src/CheatEngine.cpp -------------------------------------------------------------------------------- /CheatEngine/src/CheatEngine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JesseEmond/cheat-and-gin/HEAD/CheatEngine/src/CheatEngine.h -------------------------------------------------------------------------------- /CheatEngine/src/Matches.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JesseEmond/cheat-and-gin/HEAD/CheatEngine/src/Matches.cpp -------------------------------------------------------------------------------- /CheatEngine/src/Matches.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JesseEmond/cheat-and-gin/HEAD/CheatEngine/src/Matches.h -------------------------------------------------------------------------------- /CheatEngine/src/MemoryPage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JesseEmond/cheat-and-gin/HEAD/CheatEngine/src/MemoryPage.h -------------------------------------------------------------------------------- /CheatEngine/src/OS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JesseEmond/cheat-and-gin/HEAD/CheatEngine/src/OS.h -------------------------------------------------------------------------------- /CheatEngine/src/PageMatches.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JesseEmond/cheat-and-gin/HEAD/CheatEngine/src/PageMatches.h -------------------------------------------------------------------------------- /CheatEngine/src/Process.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JesseEmond/cheat-and-gin/HEAD/CheatEngine/src/Process.h -------------------------------------------------------------------------------- /CheatEngine/src/ValueType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JesseEmond/cheat-and-gin/HEAD/CheatEngine/src/ValueType.h -------------------------------------------------------------------------------- /CheatEngine/src/ValueTypes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JesseEmond/cheat-and-gin/HEAD/CheatEngine/src/ValueTypes.cpp -------------------------------------------------------------------------------- /CheatEngine/src/ValueTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JesseEmond/cheat-and-gin/HEAD/CheatEngine/src/ValueTypes.h -------------------------------------------------------------------------------- /CheatEngine/src/helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JesseEmond/cheat-and-gin/HEAD/CheatEngine/src/helper.cpp -------------------------------------------------------------------------------- /CheatEngine/src/helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JesseEmond/cheat-and-gin/HEAD/CheatEngine/src/helper.h -------------------------------------------------------------------------------- /CheatEngine/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JesseEmond/cheat-and-gin/HEAD/CheatEngine/src/main.cpp -------------------------------------------------------------------------------- /CheatEngine/src/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JesseEmond/cheat-and-gin/HEAD/CheatEngine/src/platform.h -------------------------------------------------------------------------------- /CheatEngine/src/platform/linux/LinuxMemoryPage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JesseEmond/cheat-and-gin/HEAD/CheatEngine/src/platform/linux/LinuxMemoryPage.cpp -------------------------------------------------------------------------------- /CheatEngine/src/platform/linux/LinuxMemoryPage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JesseEmond/cheat-and-gin/HEAD/CheatEngine/src/platform/linux/LinuxMemoryPage.h -------------------------------------------------------------------------------- /CheatEngine/src/platform/linux/LinuxOS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JesseEmond/cheat-and-gin/HEAD/CheatEngine/src/platform/linux/LinuxOS.cpp -------------------------------------------------------------------------------- /CheatEngine/src/platform/linux/LinuxOS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JesseEmond/cheat-and-gin/HEAD/CheatEngine/src/platform/linux/LinuxOS.h -------------------------------------------------------------------------------- /CheatEngine/src/platform/linux/LinuxProcess.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JesseEmond/cheat-and-gin/HEAD/CheatEngine/src/platform/linux/LinuxProcess.cpp -------------------------------------------------------------------------------- /CheatEngine/src/platform/linux/LinuxProcess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JesseEmond/cheat-and-gin/HEAD/CheatEngine/src/platform/linux/LinuxProcess.h -------------------------------------------------------------------------------- /CheatEngine/src/platform/linux/LinuxProcessLocker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JesseEmond/cheat-and-gin/HEAD/CheatEngine/src/platform/linux/LinuxProcessLocker.cpp -------------------------------------------------------------------------------- /CheatEngine/src/platform/linux/LinuxProcessLocker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JesseEmond/cheat-and-gin/HEAD/CheatEngine/src/platform/linux/LinuxProcessLocker.h -------------------------------------------------------------------------------- /CheatEngine/src/platform/win32/WindowsOS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JesseEmond/cheat-and-gin/HEAD/CheatEngine/src/platform/win32/WindowsOS.cpp -------------------------------------------------------------------------------- /CheatEngine/src/platform/win32/WindowsOS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JesseEmond/cheat-and-gin/HEAD/CheatEngine/src/platform/win32/WindowsOS.h -------------------------------------------------------------------------------- /CheatEngine/src/platform/win32/WindowsProcess.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JesseEmond/cheat-and-gin/HEAD/CheatEngine/src/platform/win32/WindowsProcess.cpp -------------------------------------------------------------------------------- /CheatEngine/src/platform/win32/WindowsProcess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JesseEmond/cheat-and-gin/HEAD/CheatEngine/src/platform/win32/WindowsProcess.h -------------------------------------------------------------------------------- /CheatEngine/tests/premake4.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JesseEmond/cheat-and-gin/HEAD/CheatEngine/tests/premake4.lua -------------------------------------------------------------------------------- /CheatEngine/tests/src/CheatEngineTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JesseEmond/cheat-and-gin/HEAD/CheatEngine/tests/src/CheatEngineTests.cpp -------------------------------------------------------------------------------- /CheatEngine/tests/src/FakeProcess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JesseEmond/cheat-and-gin/HEAD/CheatEngine/tests/src/FakeProcess.h -------------------------------------------------------------------------------- /CheatEngine/tests/src/FakeProcessTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JesseEmond/cheat-and-gin/HEAD/CheatEngine/tests/src/FakeProcessTests.cpp -------------------------------------------------------------------------------- /CheatEngine/tests/src/LinuxMemoryPageTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JesseEmond/cheat-and-gin/HEAD/CheatEngine/tests/src/LinuxMemoryPageTests.cpp -------------------------------------------------------------------------------- /CheatEngine/tests/src/LinuxOSTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JesseEmond/cheat-and-gin/HEAD/CheatEngine/tests/src/LinuxOSTests.cpp -------------------------------------------------------------------------------- /CheatEngine/tests/src/MatchesTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JesseEmond/cheat-and-gin/HEAD/CheatEngine/tests/src/MatchesTests.cpp -------------------------------------------------------------------------------- /CheatEngine/tests/src/PageMatchesTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JesseEmond/cheat-and-gin/HEAD/CheatEngine/tests/src/PageMatchesTests.cpp -------------------------------------------------------------------------------- /CheatEngine/tests/src/ValueTypesTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JesseEmond/cheat-and-gin/HEAD/CheatEngine/tests/src/ValueTypesTests.cpp -------------------------------------------------------------------------------- /CheatEngine/tests/src/catch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JesseEmond/cheat-and-gin/HEAD/CheatEngine/tests/src/catch.hpp -------------------------------------------------------------------------------- /CheatEngine/tests/src/main.cpp: -------------------------------------------------------------------------------- 1 | #define CATCH_CONFIG_MAIN 2 | #include "catch.hpp" 3 | -------------------------------------------------------------------------------- /FakeGame/premake4.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JesseEmond/cheat-and-gin/HEAD/FakeGame/premake4.lua -------------------------------------------------------------------------------- /FakeGame/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JesseEmond/cheat-and-gin/HEAD/FakeGame/src/main.cpp -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JesseEmond/cheat-and-gin/HEAD/README.md -------------------------------------------------------------------------------- /images/minecraft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JesseEmond/cheat-and-gin/HEAD/images/minecraft.png -------------------------------------------------------------------------------- /images/python.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JesseEmond/cheat-and-gin/HEAD/images/python.png -------------------------------------------------------------------------------- /premake4.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JesseEmond/cheat-and-gin/HEAD/premake4.lua --------------------------------------------------------------------------------