├── .gitattributes ├── README.md ├── clientmode ├── Valorant.sln └── Valorant │ ├── DriverController.cpp │ ├── DriverController.h │ ├── Imgui │ ├── imconfig.h │ ├── imgui.cpp │ ├── imgui.h │ ├── imgui_demo.cpp │ ├── imgui_draw.cpp │ ├── imgui_impl_dx9.cpp │ ├── imgui_impl_dx9.h │ ├── imgui_impl_win32.cpp │ ├── imgui_impl_win32.h │ ├── imgui_internal.h │ ├── imgui_widgets.cpp │ ├── imstb_rectpack.h │ ├── imstb_textedit.h │ └── imstb_truetype.h │ ├── Process.cpp │ ├── Valorant.cpp │ ├── Valorant.vcxproj │ ├── Valorant.vcxproj.filters │ ├── Valorant.vcxproj.user │ ├── colors.h │ ├── defs.h │ ├── driver.h │ ├── overlay.h │ ├── process.h │ ├── vector3.h │ └── xor.h └── drivermode ├── zDriver.sln └── zDriver ├── DispatchHook.asm ├── Utils.cpp ├── Utils.h ├── main.cpp ├── main.h ├── zDriver.inf ├── zDriver.vcxproj └── zDriver.vcxproj.filters /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankelitoc/UE4-c-/HEAD/.gitattributes -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankelitoc/UE4-c-/HEAD/README.md -------------------------------------------------------------------------------- /clientmode/Valorant.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankelitoc/UE4-c-/HEAD/clientmode/Valorant.sln -------------------------------------------------------------------------------- /clientmode/Valorant/DriverController.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankelitoc/UE4-c-/HEAD/clientmode/Valorant/DriverController.cpp -------------------------------------------------------------------------------- /clientmode/Valorant/DriverController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankelitoc/UE4-c-/HEAD/clientmode/Valorant/DriverController.h -------------------------------------------------------------------------------- /clientmode/Valorant/Imgui/imconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankelitoc/UE4-c-/HEAD/clientmode/Valorant/Imgui/imconfig.h -------------------------------------------------------------------------------- /clientmode/Valorant/Imgui/imgui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankelitoc/UE4-c-/HEAD/clientmode/Valorant/Imgui/imgui.cpp -------------------------------------------------------------------------------- /clientmode/Valorant/Imgui/imgui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankelitoc/UE4-c-/HEAD/clientmode/Valorant/Imgui/imgui.h -------------------------------------------------------------------------------- /clientmode/Valorant/Imgui/imgui_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankelitoc/UE4-c-/HEAD/clientmode/Valorant/Imgui/imgui_demo.cpp -------------------------------------------------------------------------------- /clientmode/Valorant/Imgui/imgui_draw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankelitoc/UE4-c-/HEAD/clientmode/Valorant/Imgui/imgui_draw.cpp -------------------------------------------------------------------------------- /clientmode/Valorant/Imgui/imgui_impl_dx9.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankelitoc/UE4-c-/HEAD/clientmode/Valorant/Imgui/imgui_impl_dx9.cpp -------------------------------------------------------------------------------- /clientmode/Valorant/Imgui/imgui_impl_dx9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankelitoc/UE4-c-/HEAD/clientmode/Valorant/Imgui/imgui_impl_dx9.h -------------------------------------------------------------------------------- /clientmode/Valorant/Imgui/imgui_impl_win32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankelitoc/UE4-c-/HEAD/clientmode/Valorant/Imgui/imgui_impl_win32.cpp -------------------------------------------------------------------------------- /clientmode/Valorant/Imgui/imgui_impl_win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankelitoc/UE4-c-/HEAD/clientmode/Valorant/Imgui/imgui_impl_win32.h -------------------------------------------------------------------------------- /clientmode/Valorant/Imgui/imgui_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankelitoc/UE4-c-/HEAD/clientmode/Valorant/Imgui/imgui_internal.h -------------------------------------------------------------------------------- /clientmode/Valorant/Imgui/imgui_widgets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankelitoc/UE4-c-/HEAD/clientmode/Valorant/Imgui/imgui_widgets.cpp -------------------------------------------------------------------------------- /clientmode/Valorant/Imgui/imstb_rectpack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankelitoc/UE4-c-/HEAD/clientmode/Valorant/Imgui/imstb_rectpack.h -------------------------------------------------------------------------------- /clientmode/Valorant/Imgui/imstb_textedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankelitoc/UE4-c-/HEAD/clientmode/Valorant/Imgui/imstb_textedit.h -------------------------------------------------------------------------------- /clientmode/Valorant/Imgui/imstb_truetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankelitoc/UE4-c-/HEAD/clientmode/Valorant/Imgui/imstb_truetype.h -------------------------------------------------------------------------------- /clientmode/Valorant/Process.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankelitoc/UE4-c-/HEAD/clientmode/Valorant/Process.cpp -------------------------------------------------------------------------------- /clientmode/Valorant/Valorant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankelitoc/UE4-c-/HEAD/clientmode/Valorant/Valorant.cpp -------------------------------------------------------------------------------- /clientmode/Valorant/Valorant.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankelitoc/UE4-c-/HEAD/clientmode/Valorant/Valorant.vcxproj -------------------------------------------------------------------------------- /clientmode/Valorant/Valorant.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankelitoc/UE4-c-/HEAD/clientmode/Valorant/Valorant.vcxproj.filters -------------------------------------------------------------------------------- /clientmode/Valorant/Valorant.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankelitoc/UE4-c-/HEAD/clientmode/Valorant/Valorant.vcxproj.user -------------------------------------------------------------------------------- /clientmode/Valorant/colors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankelitoc/UE4-c-/HEAD/clientmode/Valorant/colors.h -------------------------------------------------------------------------------- /clientmode/Valorant/defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankelitoc/UE4-c-/HEAD/clientmode/Valorant/defs.h -------------------------------------------------------------------------------- /clientmode/Valorant/driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankelitoc/UE4-c-/HEAD/clientmode/Valorant/driver.h -------------------------------------------------------------------------------- /clientmode/Valorant/overlay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankelitoc/UE4-c-/HEAD/clientmode/Valorant/overlay.h -------------------------------------------------------------------------------- /clientmode/Valorant/process.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankelitoc/UE4-c-/HEAD/clientmode/Valorant/process.h -------------------------------------------------------------------------------- /clientmode/Valorant/vector3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankelitoc/UE4-c-/HEAD/clientmode/Valorant/vector3.h -------------------------------------------------------------------------------- /clientmode/Valorant/xor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankelitoc/UE4-c-/HEAD/clientmode/Valorant/xor.h -------------------------------------------------------------------------------- /drivermode/zDriver.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankelitoc/UE4-c-/HEAD/drivermode/zDriver.sln -------------------------------------------------------------------------------- /drivermode/zDriver/DispatchHook.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankelitoc/UE4-c-/HEAD/drivermode/zDriver/DispatchHook.asm -------------------------------------------------------------------------------- /drivermode/zDriver/Utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankelitoc/UE4-c-/HEAD/drivermode/zDriver/Utils.cpp -------------------------------------------------------------------------------- /drivermode/zDriver/Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankelitoc/UE4-c-/HEAD/drivermode/zDriver/Utils.h -------------------------------------------------------------------------------- /drivermode/zDriver/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankelitoc/UE4-c-/HEAD/drivermode/zDriver/main.cpp -------------------------------------------------------------------------------- /drivermode/zDriver/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankelitoc/UE4-c-/HEAD/drivermode/zDriver/main.h -------------------------------------------------------------------------------- /drivermode/zDriver/zDriver.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankelitoc/UE4-c-/HEAD/drivermode/zDriver/zDriver.inf -------------------------------------------------------------------------------- /drivermode/zDriver/zDriver.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankelitoc/UE4-c-/HEAD/drivermode/zDriver/zDriver.vcxproj -------------------------------------------------------------------------------- /drivermode/zDriver/zDriver.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankelitoc/UE4-c-/HEAD/drivermode/zDriver/zDriver.vcxproj.filters --------------------------------------------------------------------------------