├── .gitattributes ├── .gitignore ├── Genshin-Cheetos.sln ├── Genshin-Cheetos.user ├── Genshin-Cheetos.vcxproj ├── Genshin-Cheetos.vcxproj.filters ├── Genshin-Cheetos.vcxproj.user ├── LICENSE ├── README.md ├── configs └── Configs.h ├── features └── Modules.cpp ├── hooks ├── FontData.h ├── Present.cpp ├── WndProc.cpp └── hooks.cpp ├── imgui ├── imconfig.h ├── imgui.cpp ├── imgui.h ├── imgui_demo.cpp ├── imgui_draw.cpp ├── imgui_impl_dx11.cpp ├── imgui_impl_dx11.h ├── imgui_impl_win32.cpp ├── imgui_impl_win32.h ├── imgui_internal.h ├── imgui_tables.cpp ├── imgui_widgets.cpp ├── imstb_rectpack.h ├── imstb_textedit.h └── imstb_truetype.h ├── libmem++ ├── libmem.cpp └── libmem.hpp ├── pattern scanner ├── Memory Pattern Scanner.cpp ├── Memory Pattern Scanner.h ├── Patcher.cpp ├── Patcher.h ├── Pattern Scanner.cpp ├── Pattern Scanner.h └── Patterns list.h └── src ├── ColorUtil.cpp ├── ColorUtil.h ├── base.cpp ├── base.h ├── main.cpp ├── pch.cpp └── pch.h /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KillSKID/Genshin-Cheetos/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KillSKID/Genshin-Cheetos/HEAD/.gitignore -------------------------------------------------------------------------------- /Genshin-Cheetos.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KillSKID/Genshin-Cheetos/HEAD/Genshin-Cheetos.sln -------------------------------------------------------------------------------- /Genshin-Cheetos.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KillSKID/Genshin-Cheetos/HEAD/Genshin-Cheetos.user -------------------------------------------------------------------------------- /Genshin-Cheetos.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KillSKID/Genshin-Cheetos/HEAD/Genshin-Cheetos.vcxproj -------------------------------------------------------------------------------- /Genshin-Cheetos.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KillSKID/Genshin-Cheetos/HEAD/Genshin-Cheetos.vcxproj.filters -------------------------------------------------------------------------------- /Genshin-Cheetos.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KillSKID/Genshin-Cheetos/HEAD/Genshin-Cheetos.vcxproj.user -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KillSKID/Genshin-Cheetos/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KillSKID/Genshin-Cheetos/HEAD/README.md -------------------------------------------------------------------------------- /configs/Configs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KillSKID/Genshin-Cheetos/HEAD/configs/Configs.h -------------------------------------------------------------------------------- /features/Modules.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KillSKID/Genshin-Cheetos/HEAD/features/Modules.cpp -------------------------------------------------------------------------------- /hooks/FontData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KillSKID/Genshin-Cheetos/HEAD/hooks/FontData.h -------------------------------------------------------------------------------- /hooks/Present.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KillSKID/Genshin-Cheetos/HEAD/hooks/Present.cpp -------------------------------------------------------------------------------- /hooks/WndProc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KillSKID/Genshin-Cheetos/HEAD/hooks/WndProc.cpp -------------------------------------------------------------------------------- /hooks/hooks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KillSKID/Genshin-Cheetos/HEAD/hooks/hooks.cpp -------------------------------------------------------------------------------- /imgui/imconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KillSKID/Genshin-Cheetos/HEAD/imgui/imconfig.h -------------------------------------------------------------------------------- /imgui/imgui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KillSKID/Genshin-Cheetos/HEAD/imgui/imgui.cpp -------------------------------------------------------------------------------- /imgui/imgui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KillSKID/Genshin-Cheetos/HEAD/imgui/imgui.h -------------------------------------------------------------------------------- /imgui/imgui_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KillSKID/Genshin-Cheetos/HEAD/imgui/imgui_demo.cpp -------------------------------------------------------------------------------- /imgui/imgui_draw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KillSKID/Genshin-Cheetos/HEAD/imgui/imgui_draw.cpp -------------------------------------------------------------------------------- /imgui/imgui_impl_dx11.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KillSKID/Genshin-Cheetos/HEAD/imgui/imgui_impl_dx11.cpp -------------------------------------------------------------------------------- /imgui/imgui_impl_dx11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KillSKID/Genshin-Cheetos/HEAD/imgui/imgui_impl_dx11.h -------------------------------------------------------------------------------- /imgui/imgui_impl_win32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KillSKID/Genshin-Cheetos/HEAD/imgui/imgui_impl_win32.cpp -------------------------------------------------------------------------------- /imgui/imgui_impl_win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KillSKID/Genshin-Cheetos/HEAD/imgui/imgui_impl_win32.h -------------------------------------------------------------------------------- /imgui/imgui_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KillSKID/Genshin-Cheetos/HEAD/imgui/imgui_internal.h -------------------------------------------------------------------------------- /imgui/imgui_tables.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KillSKID/Genshin-Cheetos/HEAD/imgui/imgui_tables.cpp -------------------------------------------------------------------------------- /imgui/imgui_widgets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KillSKID/Genshin-Cheetos/HEAD/imgui/imgui_widgets.cpp -------------------------------------------------------------------------------- /imgui/imstb_rectpack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KillSKID/Genshin-Cheetos/HEAD/imgui/imstb_rectpack.h -------------------------------------------------------------------------------- /imgui/imstb_textedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KillSKID/Genshin-Cheetos/HEAD/imgui/imstb_textedit.h -------------------------------------------------------------------------------- /imgui/imstb_truetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KillSKID/Genshin-Cheetos/HEAD/imgui/imstb_truetype.h -------------------------------------------------------------------------------- /libmem++/libmem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KillSKID/Genshin-Cheetos/HEAD/libmem++/libmem.cpp -------------------------------------------------------------------------------- /libmem++/libmem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KillSKID/Genshin-Cheetos/HEAD/libmem++/libmem.hpp -------------------------------------------------------------------------------- /pattern scanner/Memory Pattern Scanner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KillSKID/Genshin-Cheetos/HEAD/pattern scanner/Memory Pattern Scanner.cpp -------------------------------------------------------------------------------- /pattern scanner/Memory Pattern Scanner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KillSKID/Genshin-Cheetos/HEAD/pattern scanner/Memory Pattern Scanner.h -------------------------------------------------------------------------------- /pattern scanner/Patcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KillSKID/Genshin-Cheetos/HEAD/pattern scanner/Patcher.cpp -------------------------------------------------------------------------------- /pattern scanner/Patcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KillSKID/Genshin-Cheetos/HEAD/pattern scanner/Patcher.h -------------------------------------------------------------------------------- /pattern scanner/Pattern Scanner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KillSKID/Genshin-Cheetos/HEAD/pattern scanner/Pattern Scanner.cpp -------------------------------------------------------------------------------- /pattern scanner/Pattern Scanner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KillSKID/Genshin-Cheetos/HEAD/pattern scanner/Pattern Scanner.h -------------------------------------------------------------------------------- /pattern scanner/Patterns list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KillSKID/Genshin-Cheetos/HEAD/pattern scanner/Patterns list.h -------------------------------------------------------------------------------- /src/ColorUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KillSKID/Genshin-Cheetos/HEAD/src/ColorUtil.cpp -------------------------------------------------------------------------------- /src/ColorUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KillSKID/Genshin-Cheetos/HEAD/src/ColorUtil.h -------------------------------------------------------------------------------- /src/base.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KillSKID/Genshin-Cheetos/HEAD/src/base.cpp -------------------------------------------------------------------------------- /src/base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KillSKID/Genshin-Cheetos/HEAD/src/base.h -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KillSKID/Genshin-Cheetos/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/pch.cpp: -------------------------------------------------------------------------------- 1 | #include "pch.h" -------------------------------------------------------------------------------- /src/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KillSKID/Genshin-Cheetos/HEAD/src/pch.h --------------------------------------------------------------------------------