├── .gitattributes ├── .gitignore ├── EchoPatch.sln ├── EchoPatch ├── EchoPatch.ini ├── EchoPatch.vcxproj └── EchoPatch.vcxproj.filters ├── LICENSE ├── README.md ├── assets ├── 4K_HUD_Normal.png ├── 4K_HUD_Scaled.png ├── EchoPatch_Logo.png ├── HD_Render_Off.png ├── HD_Render_On.png ├── Letterbox_Off.png ├── Letterbox_On.png └── WeaponCapacity.png ├── include ├── MinHook.hpp ├── SDL3 │ ├── SDL.h │ ├── SDL_assert.h │ ├── SDL_asyncio.h │ ├── SDL_atomic.h │ ├── SDL_audio.h │ ├── SDL_begin_code.h │ ├── SDL_bits.h │ ├── SDL_blendmode.h │ ├── SDL_camera.h │ ├── SDL_clipboard.h │ ├── SDL_close_code.h │ ├── SDL_copying.h │ ├── SDL_cpuinfo.h │ ├── SDL_dialog.h │ ├── SDL_egl.h │ ├── SDL_endian.h │ ├── SDL_error.h │ ├── SDL_events.h │ ├── SDL_filesystem.h │ ├── SDL_gamepad.h │ ├── SDL_gpu.h │ ├── SDL_guid.h │ ├── SDL_haptic.h │ ├── SDL_hidapi.h │ ├── SDL_hints.h │ ├── SDL_init.h │ ├── SDL_intrin.h │ ├── SDL_iostream.h │ ├── SDL_joystick.h │ ├── SDL_keyboard.h │ ├── SDL_keycode.h │ ├── SDL_loadso.h │ ├── SDL_locale.h │ ├── SDL_log.h │ ├── SDL_main.h │ ├── SDL_main_impl.h │ ├── SDL_messagebox.h │ ├── SDL_metal.h │ ├── SDL_misc.h │ ├── SDL_mouse.h │ ├── SDL_mutex.h │ ├── SDL_oldnames.h │ ├── SDL_opengl.h │ ├── SDL_opengl_glext.h │ ├── SDL_opengles.h │ ├── SDL_opengles2.h │ ├── SDL_opengles2_gl2.h │ ├── SDL_opengles2_gl2ext.h │ ├── SDL_opengles2_gl2platform.h │ ├── SDL_opengles2_khrplatform.h │ ├── SDL_pen.h │ ├── SDL_pixels.h │ ├── SDL_platform.h │ ├── SDL_platform_defines.h │ ├── SDL_power.h │ ├── SDL_process.h │ ├── SDL_properties.h │ ├── SDL_rect.h │ ├── SDL_render.h │ ├── SDL_revision.h │ ├── SDL_scancode.h │ ├── SDL_sensor.h │ ├── SDL_stdinc.h │ ├── SDL_storage.h │ ├── SDL_surface.h │ ├── SDL_system.h │ ├── SDL_test.h │ ├── SDL_test_assert.h │ ├── SDL_test_common.h │ ├── SDL_test_compare.h │ ├── SDL_test_crc32.h │ ├── SDL_test_font.h │ ├── SDL_test_fuzzer.h │ ├── SDL_test_harness.h │ ├── SDL_test_log.h │ ├── SDL_test_md5.h │ ├── SDL_test_memory.h │ ├── SDL_thread.h │ ├── SDL_time.h │ ├── SDL_timer.h │ ├── SDL_touch.h │ ├── SDL_tray.h │ ├── SDL_version.h │ ├── SDL_video.h │ └── SDL_vulkan.h └── ini.hpp ├── lib ├── SDL3-static.lib └── libMinHook.x86.lib └── src ├── Client ├── Client.cpp └── Client.hpp ├── ClientFX ├── ClientFX.cpp └── ClientFX.hpp ├── Controller ├── Controller.cpp └── Controller.hpp ├── Core ├── Core.cpp ├── Core.hpp ├── DInputProxy.cpp └── DInputProxy.hpp ├── FpsLimiter.hpp ├── Server ├── Server.cpp └── Server.hpp ├── dinput8.def ├── dllmain.cpp └── helper.hpp /.gitattributes: -------------------------------------------------------------------------------- 1 | include/SDL3/* linguist-vendored -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wemino/EchoPatch/HEAD/.gitignore -------------------------------------------------------------------------------- /EchoPatch.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wemino/EchoPatch/HEAD/EchoPatch.sln -------------------------------------------------------------------------------- /EchoPatch/EchoPatch.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wemino/EchoPatch/HEAD/EchoPatch/EchoPatch.ini -------------------------------------------------------------------------------- /EchoPatch/EchoPatch.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wemino/EchoPatch/HEAD/EchoPatch/EchoPatch.vcxproj -------------------------------------------------------------------------------- /EchoPatch/EchoPatch.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wemino/EchoPatch/HEAD/EchoPatch/EchoPatch.vcxproj.filters -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wemino/EchoPatch/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wemino/EchoPatch/HEAD/README.md -------------------------------------------------------------------------------- /assets/4K_HUD_Normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wemino/EchoPatch/HEAD/assets/4K_HUD_Normal.png -------------------------------------------------------------------------------- /assets/4K_HUD_Scaled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wemino/EchoPatch/HEAD/assets/4K_HUD_Scaled.png -------------------------------------------------------------------------------- /assets/EchoPatch_Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wemino/EchoPatch/HEAD/assets/EchoPatch_Logo.png -------------------------------------------------------------------------------- /assets/HD_Render_Off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wemino/EchoPatch/HEAD/assets/HD_Render_Off.png -------------------------------------------------------------------------------- /assets/HD_Render_On.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wemino/EchoPatch/HEAD/assets/HD_Render_On.png -------------------------------------------------------------------------------- /assets/Letterbox_Off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wemino/EchoPatch/HEAD/assets/Letterbox_Off.png -------------------------------------------------------------------------------- /assets/Letterbox_On.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wemino/EchoPatch/HEAD/assets/Letterbox_On.png -------------------------------------------------------------------------------- /assets/WeaponCapacity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wemino/EchoPatch/HEAD/assets/WeaponCapacity.png -------------------------------------------------------------------------------- /include/MinHook.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wemino/EchoPatch/HEAD/include/MinHook.hpp -------------------------------------------------------------------------------- /include/SDL3/SDL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wemino/EchoPatch/HEAD/include/SDL3/SDL.h -------------------------------------------------------------------------------- /include/SDL3/SDL_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wemino/EchoPatch/HEAD/include/SDL3/SDL_assert.h -------------------------------------------------------------------------------- /include/SDL3/SDL_asyncio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wemino/EchoPatch/HEAD/include/SDL3/SDL_asyncio.h -------------------------------------------------------------------------------- /include/SDL3/SDL_atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wemino/EchoPatch/HEAD/include/SDL3/SDL_atomic.h -------------------------------------------------------------------------------- /include/SDL3/SDL_audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wemino/EchoPatch/HEAD/include/SDL3/SDL_audio.h -------------------------------------------------------------------------------- /include/SDL3/SDL_begin_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wemino/EchoPatch/HEAD/include/SDL3/SDL_begin_code.h -------------------------------------------------------------------------------- /include/SDL3/SDL_bits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wemino/EchoPatch/HEAD/include/SDL3/SDL_bits.h -------------------------------------------------------------------------------- /include/SDL3/SDL_blendmode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wemino/EchoPatch/HEAD/include/SDL3/SDL_blendmode.h -------------------------------------------------------------------------------- /include/SDL3/SDL_camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wemino/EchoPatch/HEAD/include/SDL3/SDL_camera.h -------------------------------------------------------------------------------- /include/SDL3/SDL_clipboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wemino/EchoPatch/HEAD/include/SDL3/SDL_clipboard.h -------------------------------------------------------------------------------- /include/SDL3/SDL_close_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wemino/EchoPatch/HEAD/include/SDL3/SDL_close_code.h -------------------------------------------------------------------------------- /include/SDL3/SDL_copying.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wemino/EchoPatch/HEAD/include/SDL3/SDL_copying.h -------------------------------------------------------------------------------- /include/SDL3/SDL_cpuinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wemino/EchoPatch/HEAD/include/SDL3/SDL_cpuinfo.h -------------------------------------------------------------------------------- /include/SDL3/SDL_dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wemino/EchoPatch/HEAD/include/SDL3/SDL_dialog.h -------------------------------------------------------------------------------- /include/SDL3/SDL_egl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wemino/EchoPatch/HEAD/include/SDL3/SDL_egl.h -------------------------------------------------------------------------------- /include/SDL3/SDL_endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wemino/EchoPatch/HEAD/include/SDL3/SDL_endian.h -------------------------------------------------------------------------------- /include/SDL3/SDL_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wemino/EchoPatch/HEAD/include/SDL3/SDL_error.h -------------------------------------------------------------------------------- /include/SDL3/SDL_events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wemino/EchoPatch/HEAD/include/SDL3/SDL_events.h -------------------------------------------------------------------------------- /include/SDL3/SDL_filesystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wemino/EchoPatch/HEAD/include/SDL3/SDL_filesystem.h -------------------------------------------------------------------------------- /include/SDL3/SDL_gamepad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wemino/EchoPatch/HEAD/include/SDL3/SDL_gamepad.h -------------------------------------------------------------------------------- /include/SDL3/SDL_gpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wemino/EchoPatch/HEAD/include/SDL3/SDL_gpu.h -------------------------------------------------------------------------------- /include/SDL3/SDL_guid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wemino/EchoPatch/HEAD/include/SDL3/SDL_guid.h -------------------------------------------------------------------------------- /include/SDL3/SDL_haptic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wemino/EchoPatch/HEAD/include/SDL3/SDL_haptic.h -------------------------------------------------------------------------------- /include/SDL3/SDL_hidapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wemino/EchoPatch/HEAD/include/SDL3/SDL_hidapi.h -------------------------------------------------------------------------------- /include/SDL3/SDL_hints.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wemino/EchoPatch/HEAD/include/SDL3/SDL_hints.h -------------------------------------------------------------------------------- /include/SDL3/SDL_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wemino/EchoPatch/HEAD/include/SDL3/SDL_init.h -------------------------------------------------------------------------------- /include/SDL3/SDL_intrin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wemino/EchoPatch/HEAD/include/SDL3/SDL_intrin.h -------------------------------------------------------------------------------- /include/SDL3/SDL_iostream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wemino/EchoPatch/HEAD/include/SDL3/SDL_iostream.h -------------------------------------------------------------------------------- /include/SDL3/SDL_joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wemino/EchoPatch/HEAD/include/SDL3/SDL_joystick.h -------------------------------------------------------------------------------- /include/SDL3/SDL_keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wemino/EchoPatch/HEAD/include/SDL3/SDL_keyboard.h -------------------------------------------------------------------------------- /include/SDL3/SDL_keycode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wemino/EchoPatch/HEAD/include/SDL3/SDL_keycode.h -------------------------------------------------------------------------------- /include/SDL3/SDL_loadso.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wemino/EchoPatch/HEAD/include/SDL3/SDL_loadso.h -------------------------------------------------------------------------------- /include/SDL3/SDL_locale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wemino/EchoPatch/HEAD/include/SDL3/SDL_locale.h -------------------------------------------------------------------------------- /include/SDL3/SDL_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wemino/EchoPatch/HEAD/include/SDL3/SDL_log.h -------------------------------------------------------------------------------- /include/SDL3/SDL_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wemino/EchoPatch/HEAD/include/SDL3/SDL_main.h -------------------------------------------------------------------------------- /include/SDL3/SDL_main_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wemino/EchoPatch/HEAD/include/SDL3/SDL_main_impl.h -------------------------------------------------------------------------------- /include/SDL3/SDL_messagebox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wemino/EchoPatch/HEAD/include/SDL3/SDL_messagebox.h -------------------------------------------------------------------------------- /include/SDL3/SDL_metal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wemino/EchoPatch/HEAD/include/SDL3/SDL_metal.h -------------------------------------------------------------------------------- /include/SDL3/SDL_misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wemino/EchoPatch/HEAD/include/SDL3/SDL_misc.h -------------------------------------------------------------------------------- /include/SDL3/SDL_mouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wemino/EchoPatch/HEAD/include/SDL3/SDL_mouse.h -------------------------------------------------------------------------------- /include/SDL3/SDL_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wemino/EchoPatch/HEAD/include/SDL3/SDL_mutex.h -------------------------------------------------------------------------------- /include/SDL3/SDL_oldnames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wemino/EchoPatch/HEAD/include/SDL3/SDL_oldnames.h -------------------------------------------------------------------------------- /include/SDL3/SDL_opengl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wemino/EchoPatch/HEAD/include/SDL3/SDL_opengl.h -------------------------------------------------------------------------------- /include/SDL3/SDL_opengl_glext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wemino/EchoPatch/HEAD/include/SDL3/SDL_opengl_glext.h -------------------------------------------------------------------------------- /include/SDL3/SDL_opengles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wemino/EchoPatch/HEAD/include/SDL3/SDL_opengles.h -------------------------------------------------------------------------------- /include/SDL3/SDL_opengles2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wemino/EchoPatch/HEAD/include/SDL3/SDL_opengles2.h -------------------------------------------------------------------------------- /include/SDL3/SDL_opengles2_gl2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wemino/EchoPatch/HEAD/include/SDL3/SDL_opengles2_gl2.h -------------------------------------------------------------------------------- /include/SDL3/SDL_opengles2_gl2ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wemino/EchoPatch/HEAD/include/SDL3/SDL_opengles2_gl2ext.h -------------------------------------------------------------------------------- /include/SDL3/SDL_opengles2_gl2platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wemino/EchoPatch/HEAD/include/SDL3/SDL_opengles2_gl2platform.h -------------------------------------------------------------------------------- /include/SDL3/SDL_opengles2_khrplatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wemino/EchoPatch/HEAD/include/SDL3/SDL_opengles2_khrplatform.h -------------------------------------------------------------------------------- /include/SDL3/SDL_pen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wemino/EchoPatch/HEAD/include/SDL3/SDL_pen.h -------------------------------------------------------------------------------- /include/SDL3/SDL_pixels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wemino/EchoPatch/HEAD/include/SDL3/SDL_pixels.h -------------------------------------------------------------------------------- /include/SDL3/SDL_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wemino/EchoPatch/HEAD/include/SDL3/SDL_platform.h -------------------------------------------------------------------------------- /include/SDL3/SDL_platform_defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wemino/EchoPatch/HEAD/include/SDL3/SDL_platform_defines.h -------------------------------------------------------------------------------- /include/SDL3/SDL_power.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wemino/EchoPatch/HEAD/include/SDL3/SDL_power.h -------------------------------------------------------------------------------- /include/SDL3/SDL_process.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wemino/EchoPatch/HEAD/include/SDL3/SDL_process.h -------------------------------------------------------------------------------- /include/SDL3/SDL_properties.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wemino/EchoPatch/HEAD/include/SDL3/SDL_properties.h -------------------------------------------------------------------------------- /include/SDL3/SDL_rect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wemino/EchoPatch/HEAD/include/SDL3/SDL_rect.h -------------------------------------------------------------------------------- /include/SDL3/SDL_render.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wemino/EchoPatch/HEAD/include/SDL3/SDL_render.h -------------------------------------------------------------------------------- /include/SDL3/SDL_revision.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wemino/EchoPatch/HEAD/include/SDL3/SDL_revision.h -------------------------------------------------------------------------------- /include/SDL3/SDL_scancode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wemino/EchoPatch/HEAD/include/SDL3/SDL_scancode.h -------------------------------------------------------------------------------- /include/SDL3/SDL_sensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wemino/EchoPatch/HEAD/include/SDL3/SDL_sensor.h -------------------------------------------------------------------------------- /include/SDL3/SDL_stdinc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wemino/EchoPatch/HEAD/include/SDL3/SDL_stdinc.h -------------------------------------------------------------------------------- /include/SDL3/SDL_storage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wemino/EchoPatch/HEAD/include/SDL3/SDL_storage.h -------------------------------------------------------------------------------- /include/SDL3/SDL_surface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wemino/EchoPatch/HEAD/include/SDL3/SDL_surface.h -------------------------------------------------------------------------------- /include/SDL3/SDL_system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wemino/EchoPatch/HEAD/include/SDL3/SDL_system.h -------------------------------------------------------------------------------- /include/SDL3/SDL_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wemino/EchoPatch/HEAD/include/SDL3/SDL_test.h -------------------------------------------------------------------------------- /include/SDL3/SDL_test_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wemino/EchoPatch/HEAD/include/SDL3/SDL_test_assert.h -------------------------------------------------------------------------------- /include/SDL3/SDL_test_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wemino/EchoPatch/HEAD/include/SDL3/SDL_test_common.h -------------------------------------------------------------------------------- /include/SDL3/SDL_test_compare.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wemino/EchoPatch/HEAD/include/SDL3/SDL_test_compare.h -------------------------------------------------------------------------------- /include/SDL3/SDL_test_crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wemino/EchoPatch/HEAD/include/SDL3/SDL_test_crc32.h -------------------------------------------------------------------------------- /include/SDL3/SDL_test_font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wemino/EchoPatch/HEAD/include/SDL3/SDL_test_font.h -------------------------------------------------------------------------------- /include/SDL3/SDL_test_fuzzer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wemino/EchoPatch/HEAD/include/SDL3/SDL_test_fuzzer.h -------------------------------------------------------------------------------- /include/SDL3/SDL_test_harness.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wemino/EchoPatch/HEAD/include/SDL3/SDL_test_harness.h -------------------------------------------------------------------------------- /include/SDL3/SDL_test_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wemino/EchoPatch/HEAD/include/SDL3/SDL_test_log.h -------------------------------------------------------------------------------- /include/SDL3/SDL_test_md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wemino/EchoPatch/HEAD/include/SDL3/SDL_test_md5.h -------------------------------------------------------------------------------- /include/SDL3/SDL_test_memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wemino/EchoPatch/HEAD/include/SDL3/SDL_test_memory.h -------------------------------------------------------------------------------- /include/SDL3/SDL_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wemino/EchoPatch/HEAD/include/SDL3/SDL_thread.h -------------------------------------------------------------------------------- /include/SDL3/SDL_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wemino/EchoPatch/HEAD/include/SDL3/SDL_time.h -------------------------------------------------------------------------------- /include/SDL3/SDL_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wemino/EchoPatch/HEAD/include/SDL3/SDL_timer.h -------------------------------------------------------------------------------- /include/SDL3/SDL_touch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wemino/EchoPatch/HEAD/include/SDL3/SDL_touch.h -------------------------------------------------------------------------------- /include/SDL3/SDL_tray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wemino/EchoPatch/HEAD/include/SDL3/SDL_tray.h -------------------------------------------------------------------------------- /include/SDL3/SDL_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wemino/EchoPatch/HEAD/include/SDL3/SDL_version.h -------------------------------------------------------------------------------- /include/SDL3/SDL_video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wemino/EchoPatch/HEAD/include/SDL3/SDL_video.h -------------------------------------------------------------------------------- /include/SDL3/SDL_vulkan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wemino/EchoPatch/HEAD/include/SDL3/SDL_vulkan.h -------------------------------------------------------------------------------- /include/ini.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wemino/EchoPatch/HEAD/include/ini.hpp -------------------------------------------------------------------------------- /lib/SDL3-static.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wemino/EchoPatch/HEAD/lib/SDL3-static.lib -------------------------------------------------------------------------------- /lib/libMinHook.x86.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wemino/EchoPatch/HEAD/lib/libMinHook.x86.lib -------------------------------------------------------------------------------- /src/Client/Client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wemino/EchoPatch/HEAD/src/Client/Client.cpp -------------------------------------------------------------------------------- /src/Client/Client.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wemino/EchoPatch/HEAD/src/Client/Client.hpp -------------------------------------------------------------------------------- /src/ClientFX/ClientFX.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wemino/EchoPatch/HEAD/src/ClientFX/ClientFX.cpp -------------------------------------------------------------------------------- /src/ClientFX/ClientFX.hpp: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | void ApplyClientFXPatch(); -------------------------------------------------------------------------------- /src/Controller/Controller.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wemino/EchoPatch/HEAD/src/Controller/Controller.cpp -------------------------------------------------------------------------------- /src/Controller/Controller.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wemino/EchoPatch/HEAD/src/Controller/Controller.hpp -------------------------------------------------------------------------------- /src/Core/Core.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wemino/EchoPatch/HEAD/src/Core/Core.cpp -------------------------------------------------------------------------------- /src/Core/Core.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wemino/EchoPatch/HEAD/src/Core/Core.hpp -------------------------------------------------------------------------------- /src/Core/DInputProxy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wemino/EchoPatch/HEAD/src/Core/DInputProxy.cpp -------------------------------------------------------------------------------- /src/Core/DInputProxy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wemino/EchoPatch/HEAD/src/Core/DInputProxy.hpp -------------------------------------------------------------------------------- /src/FpsLimiter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wemino/EchoPatch/HEAD/src/FpsLimiter.hpp -------------------------------------------------------------------------------- /src/Server/Server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wemino/EchoPatch/HEAD/src/Server/Server.cpp -------------------------------------------------------------------------------- /src/Server/Server.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wemino/EchoPatch/HEAD/src/Server/Server.hpp -------------------------------------------------------------------------------- /src/dinput8.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wemino/EchoPatch/HEAD/src/dinput8.def -------------------------------------------------------------------------------- /src/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wemino/EchoPatch/HEAD/src/dllmain.cpp -------------------------------------------------------------------------------- /src/helper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wemino/EchoPatch/HEAD/src/helper.hpp --------------------------------------------------------------------------------