├── .gitignore ├── Cheat ├── Feature │ └── feature.hpp └── cheat.hpp ├── Includings ├── custom_data_types.hpp └── modules.hpp ├── LICENSE ├── Memory ├── Hook │ ├── hook.cpp │ └── hook.hpp ├── Image_x64 │ ├── image_x64.cpp │ └── image_x64.hpp ├── Image_x86 │ ├── image_x86.cpp │ └── image_x86.hpp ├── Process │ ├── process.cpp │ └── process.hpp ├── RegisterDumper │ └── registercontext.hpp └── SharedMemoryInstance │ └── sharedmemoryinstance.hpp ├── Overlay ├── overlay.cpp └── overlay.hpp ├── README.md ├── Testing ├── test_cheat.cpp ├── test_cheat.hpp ├── test_overlay.cpp └── test_overlay.hpp └── res ├── osmium-logo.png ├── project-directx-linking.png ├── project-settings-language.png ├── project-settings.png ├── regdumper-dump-sh.png ├── regdumper-regdata.png └── sh-rw-test.png /.gitignore: -------------------------------------------------------------------------------- 1 | .vs/ 2 | -------------------------------------------------------------------------------- /Cheat/Feature/feature.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cragson/osmium/HEAD/Cheat/Feature/feature.hpp -------------------------------------------------------------------------------- /Cheat/cheat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cragson/osmium/HEAD/Cheat/cheat.hpp -------------------------------------------------------------------------------- /Includings/custom_data_types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cragson/osmium/HEAD/Includings/custom_data_types.hpp -------------------------------------------------------------------------------- /Includings/modules.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cragson/osmium/HEAD/Includings/modules.hpp -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cragson/osmium/HEAD/LICENSE -------------------------------------------------------------------------------- /Memory/Hook/hook.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Memory/Hook/hook.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cragson/osmium/HEAD/Memory/Hook/hook.hpp -------------------------------------------------------------------------------- /Memory/Image_x64/image_x64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cragson/osmium/HEAD/Memory/Image_x64/image_x64.cpp -------------------------------------------------------------------------------- /Memory/Image_x64/image_x64.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cragson/osmium/HEAD/Memory/Image_x64/image_x64.hpp -------------------------------------------------------------------------------- /Memory/Image_x86/image_x86.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cragson/osmium/HEAD/Memory/Image_x86/image_x86.cpp -------------------------------------------------------------------------------- /Memory/Image_x86/image_x86.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cragson/osmium/HEAD/Memory/Image_x86/image_x86.hpp -------------------------------------------------------------------------------- /Memory/Process/process.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cragson/osmium/HEAD/Memory/Process/process.cpp -------------------------------------------------------------------------------- /Memory/Process/process.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cragson/osmium/HEAD/Memory/Process/process.hpp -------------------------------------------------------------------------------- /Memory/RegisterDumper/registercontext.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cragson/osmium/HEAD/Memory/RegisterDumper/registercontext.hpp -------------------------------------------------------------------------------- /Memory/SharedMemoryInstance/sharedmemoryinstance.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cragson/osmium/HEAD/Memory/SharedMemoryInstance/sharedmemoryinstance.hpp -------------------------------------------------------------------------------- /Overlay/overlay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cragson/osmium/HEAD/Overlay/overlay.cpp -------------------------------------------------------------------------------- /Overlay/overlay.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cragson/osmium/HEAD/Overlay/overlay.hpp -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cragson/osmium/HEAD/README.md -------------------------------------------------------------------------------- /Testing/test_cheat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cragson/osmium/HEAD/Testing/test_cheat.cpp -------------------------------------------------------------------------------- /Testing/test_cheat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cragson/osmium/HEAD/Testing/test_cheat.hpp -------------------------------------------------------------------------------- /Testing/test_overlay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cragson/osmium/HEAD/Testing/test_overlay.cpp -------------------------------------------------------------------------------- /Testing/test_overlay.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cragson/osmium/HEAD/Testing/test_overlay.hpp -------------------------------------------------------------------------------- /res/osmium-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cragson/osmium/HEAD/res/osmium-logo.png -------------------------------------------------------------------------------- /res/project-directx-linking.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cragson/osmium/HEAD/res/project-directx-linking.png -------------------------------------------------------------------------------- /res/project-settings-language.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cragson/osmium/HEAD/res/project-settings-language.png -------------------------------------------------------------------------------- /res/project-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cragson/osmium/HEAD/res/project-settings.png -------------------------------------------------------------------------------- /res/regdumper-dump-sh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cragson/osmium/HEAD/res/regdumper-dump-sh.png -------------------------------------------------------------------------------- /res/regdumper-regdata.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cragson/osmium/HEAD/res/regdumper-regdata.png -------------------------------------------------------------------------------- /res/sh-rw-test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cragson/osmium/HEAD/res/sh-rw-test.png --------------------------------------------------------------------------------