├── Cheat.h ├── Config.h ├── Core.hpp ├── Device.h ├── GlobalSetting.hpp ├── HSR-GC.sln ├── HSR-GC.vcxproj ├── HSR-GC.vcxproj.filters ├── HSR-GC.vcxproj.user ├── README.md ├── Utils.h ├── dependencies ├── Direct3D │ ├── Direct3D.cpp │ └── Direct3D.h ├── ImGui │ ├── backends │ │ ├── imgui_impl_dx11.cpp │ │ ├── imgui_impl_dx11.h │ │ ├── imgui_impl_dx9.cpp │ │ ├── imgui_impl_dx9.h │ │ ├── imgui_impl_win32.cpp │ │ └── imgui_impl_win32.h │ ├── imconfig.h │ ├── imgui.cpp │ ├── imgui.h │ ├── imgui_demo.cpp │ ├── imgui_draw.cpp │ ├── imgui_internal.h │ ├── imgui_tables.cpp │ ├── imgui_widgets.cpp │ ├── imstb_rectpack.h │ ├── imstb_textedit.h │ ├── imstb_truetype.h │ └── misc │ │ └── cpp │ │ ├── imgui_stdlib.cpp │ │ └── imgui_stdlib.h ├── Json │ └── json.hpp └── MinHook │ ├── MinHook.h │ ├── buffer.c │ ├── buffer.h │ ├── hde │ ├── hde32.c │ ├── hde32.h │ ├── hde64.c │ ├── hde64.h │ ├── pstdint.h │ ├── table32.h │ └── table64.h │ ├── hook.c │ ├── trampoline.c │ └── trampoline.h ├── device.cpp ├── globals.cpp └── main.cpp /Cheat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Putra3340/HSR-GC/HEAD/Cheat.h -------------------------------------------------------------------------------- /Config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Putra3340/HSR-GC/HEAD/Config.h -------------------------------------------------------------------------------- /Core.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Putra3340/HSR-GC/HEAD/Core.hpp -------------------------------------------------------------------------------- /Device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Putra3340/HSR-GC/HEAD/Device.h -------------------------------------------------------------------------------- /GlobalSetting.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Putra3340/HSR-GC/HEAD/GlobalSetting.hpp -------------------------------------------------------------------------------- /HSR-GC.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Putra3340/HSR-GC/HEAD/HSR-GC.sln -------------------------------------------------------------------------------- /HSR-GC.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Putra3340/HSR-GC/HEAD/HSR-GC.vcxproj -------------------------------------------------------------------------------- /HSR-GC.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Putra3340/HSR-GC/HEAD/HSR-GC.vcxproj.filters -------------------------------------------------------------------------------- /HSR-GC.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Putra3340/HSR-GC/HEAD/HSR-GC.vcxproj.user -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Putra3340/HSR-GC/HEAD/README.md -------------------------------------------------------------------------------- /Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Putra3340/HSR-GC/HEAD/Utils.h -------------------------------------------------------------------------------- /dependencies/Direct3D/Direct3D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Putra3340/HSR-GC/HEAD/dependencies/Direct3D/Direct3D.cpp -------------------------------------------------------------------------------- /dependencies/Direct3D/Direct3D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Putra3340/HSR-GC/HEAD/dependencies/Direct3D/Direct3D.h -------------------------------------------------------------------------------- /dependencies/ImGui/backends/imgui_impl_dx11.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Putra3340/HSR-GC/HEAD/dependencies/ImGui/backends/imgui_impl_dx11.cpp -------------------------------------------------------------------------------- /dependencies/ImGui/backends/imgui_impl_dx11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Putra3340/HSR-GC/HEAD/dependencies/ImGui/backends/imgui_impl_dx11.h -------------------------------------------------------------------------------- /dependencies/ImGui/backends/imgui_impl_dx9.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Putra3340/HSR-GC/HEAD/dependencies/ImGui/backends/imgui_impl_dx9.cpp -------------------------------------------------------------------------------- /dependencies/ImGui/backends/imgui_impl_dx9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Putra3340/HSR-GC/HEAD/dependencies/ImGui/backends/imgui_impl_dx9.h -------------------------------------------------------------------------------- /dependencies/ImGui/backends/imgui_impl_win32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Putra3340/HSR-GC/HEAD/dependencies/ImGui/backends/imgui_impl_win32.cpp -------------------------------------------------------------------------------- /dependencies/ImGui/backends/imgui_impl_win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Putra3340/HSR-GC/HEAD/dependencies/ImGui/backends/imgui_impl_win32.h -------------------------------------------------------------------------------- /dependencies/ImGui/imconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Putra3340/HSR-GC/HEAD/dependencies/ImGui/imconfig.h -------------------------------------------------------------------------------- /dependencies/ImGui/imgui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Putra3340/HSR-GC/HEAD/dependencies/ImGui/imgui.cpp -------------------------------------------------------------------------------- /dependencies/ImGui/imgui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Putra3340/HSR-GC/HEAD/dependencies/ImGui/imgui.h -------------------------------------------------------------------------------- /dependencies/ImGui/imgui_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Putra3340/HSR-GC/HEAD/dependencies/ImGui/imgui_demo.cpp -------------------------------------------------------------------------------- /dependencies/ImGui/imgui_draw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Putra3340/HSR-GC/HEAD/dependencies/ImGui/imgui_draw.cpp -------------------------------------------------------------------------------- /dependencies/ImGui/imgui_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Putra3340/HSR-GC/HEAD/dependencies/ImGui/imgui_internal.h -------------------------------------------------------------------------------- /dependencies/ImGui/imgui_tables.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Putra3340/HSR-GC/HEAD/dependencies/ImGui/imgui_tables.cpp -------------------------------------------------------------------------------- /dependencies/ImGui/imgui_widgets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Putra3340/HSR-GC/HEAD/dependencies/ImGui/imgui_widgets.cpp -------------------------------------------------------------------------------- /dependencies/ImGui/imstb_rectpack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Putra3340/HSR-GC/HEAD/dependencies/ImGui/imstb_rectpack.h -------------------------------------------------------------------------------- /dependencies/ImGui/imstb_textedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Putra3340/HSR-GC/HEAD/dependencies/ImGui/imstb_textedit.h -------------------------------------------------------------------------------- /dependencies/ImGui/imstb_truetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Putra3340/HSR-GC/HEAD/dependencies/ImGui/imstb_truetype.h -------------------------------------------------------------------------------- /dependencies/ImGui/misc/cpp/imgui_stdlib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Putra3340/HSR-GC/HEAD/dependencies/ImGui/misc/cpp/imgui_stdlib.cpp -------------------------------------------------------------------------------- /dependencies/ImGui/misc/cpp/imgui_stdlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Putra3340/HSR-GC/HEAD/dependencies/ImGui/misc/cpp/imgui_stdlib.h -------------------------------------------------------------------------------- /dependencies/Json/json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Putra3340/HSR-GC/HEAD/dependencies/Json/json.hpp -------------------------------------------------------------------------------- /dependencies/MinHook/MinHook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Putra3340/HSR-GC/HEAD/dependencies/MinHook/MinHook.h -------------------------------------------------------------------------------- /dependencies/MinHook/buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Putra3340/HSR-GC/HEAD/dependencies/MinHook/buffer.c -------------------------------------------------------------------------------- /dependencies/MinHook/buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Putra3340/HSR-GC/HEAD/dependencies/MinHook/buffer.h -------------------------------------------------------------------------------- /dependencies/MinHook/hde/hde32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Putra3340/HSR-GC/HEAD/dependencies/MinHook/hde/hde32.c -------------------------------------------------------------------------------- /dependencies/MinHook/hde/hde32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Putra3340/HSR-GC/HEAD/dependencies/MinHook/hde/hde32.h -------------------------------------------------------------------------------- /dependencies/MinHook/hde/hde64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Putra3340/HSR-GC/HEAD/dependencies/MinHook/hde/hde64.c -------------------------------------------------------------------------------- /dependencies/MinHook/hde/hde64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Putra3340/HSR-GC/HEAD/dependencies/MinHook/hde/hde64.h -------------------------------------------------------------------------------- /dependencies/MinHook/hde/pstdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Putra3340/HSR-GC/HEAD/dependencies/MinHook/hde/pstdint.h -------------------------------------------------------------------------------- /dependencies/MinHook/hde/table32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Putra3340/HSR-GC/HEAD/dependencies/MinHook/hde/table32.h -------------------------------------------------------------------------------- /dependencies/MinHook/hde/table64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Putra3340/HSR-GC/HEAD/dependencies/MinHook/hde/table64.h -------------------------------------------------------------------------------- /dependencies/MinHook/hook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Putra3340/HSR-GC/HEAD/dependencies/MinHook/hook.c -------------------------------------------------------------------------------- /dependencies/MinHook/trampoline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Putra3340/HSR-GC/HEAD/dependencies/MinHook/trampoline.c -------------------------------------------------------------------------------- /dependencies/MinHook/trampoline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Putra3340/HSR-GC/HEAD/dependencies/MinHook/trampoline.h -------------------------------------------------------------------------------- /device.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Putra3340/HSR-GC/HEAD/device.cpp -------------------------------------------------------------------------------- /globals.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Putra3340/HSR-GC/HEAD/globals.cpp -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Putra3340/HSR-GC/HEAD/main.cpp --------------------------------------------------------------------------------