├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── .vscode ├── c_cpp_properties.json ├── launch.json └── tasks.json ├── CMakeLists.txt ├── README.md ├── src ├── cs2 │ ├── general.cxx │ ├── general.hxx │ └── interfaces │ │ ├── engine_client.hxx │ │ └── input_system.hxx ├── include │ ├── hook_manager.hxx │ ├── imgui │ │ ├── imconfig.h │ │ ├── imgui.cpp │ │ ├── imgui.h │ │ ├── imgui_demo.cpp │ │ ├── imgui_draw.cpp │ │ ├── imgui_impl_dx11.cpp │ │ ├── imgui_impl_dx11.h │ │ ├── imgui_impl_vulkan.cpp │ │ ├── imgui_impl_vulkan.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 │ ├── memory_tools.cxx │ ├── memory_tools.hxx │ ├── 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 │ └── platform.hxx ├── main.cxx ├── neps │ ├── general.cxx │ ├── general.hxx │ ├── globals.hxx │ ├── gui.cxx │ ├── gui.hxx │ ├── hook_callbacks.cxx │ ├── hook_callbacks.hxx │ ├── input_system.cxx │ ├── input_system.hxx │ ├── scipt_manager.cxx │ └── script_manager.hxx ├── pch.cpp └── pch.hpp └── tests └── sanity.py /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degeneratehyperbola/NEPS2/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degeneratehyperbola/NEPS2/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degeneratehyperbola/NEPS2/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degeneratehyperbola/NEPS2/HEAD/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degeneratehyperbola/NEPS2/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degeneratehyperbola/NEPS2/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degeneratehyperbola/NEPS2/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degeneratehyperbola/NEPS2/HEAD/README.md -------------------------------------------------------------------------------- /src/cs2/general.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degeneratehyperbola/NEPS2/HEAD/src/cs2/general.cxx -------------------------------------------------------------------------------- /src/cs2/general.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degeneratehyperbola/NEPS2/HEAD/src/cs2/general.hxx -------------------------------------------------------------------------------- /src/cs2/interfaces/engine_client.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degeneratehyperbola/NEPS2/HEAD/src/cs2/interfaces/engine_client.hxx -------------------------------------------------------------------------------- /src/cs2/interfaces/input_system.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degeneratehyperbola/NEPS2/HEAD/src/cs2/interfaces/input_system.hxx -------------------------------------------------------------------------------- /src/include/hook_manager.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degeneratehyperbola/NEPS2/HEAD/src/include/hook_manager.hxx -------------------------------------------------------------------------------- /src/include/imgui/imconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degeneratehyperbola/NEPS2/HEAD/src/include/imgui/imconfig.h -------------------------------------------------------------------------------- /src/include/imgui/imgui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degeneratehyperbola/NEPS2/HEAD/src/include/imgui/imgui.cpp -------------------------------------------------------------------------------- /src/include/imgui/imgui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degeneratehyperbola/NEPS2/HEAD/src/include/imgui/imgui.h -------------------------------------------------------------------------------- /src/include/imgui/imgui_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degeneratehyperbola/NEPS2/HEAD/src/include/imgui/imgui_demo.cpp -------------------------------------------------------------------------------- /src/include/imgui/imgui_draw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degeneratehyperbola/NEPS2/HEAD/src/include/imgui/imgui_draw.cpp -------------------------------------------------------------------------------- /src/include/imgui/imgui_impl_dx11.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degeneratehyperbola/NEPS2/HEAD/src/include/imgui/imgui_impl_dx11.cpp -------------------------------------------------------------------------------- /src/include/imgui/imgui_impl_dx11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degeneratehyperbola/NEPS2/HEAD/src/include/imgui/imgui_impl_dx11.h -------------------------------------------------------------------------------- /src/include/imgui/imgui_impl_vulkan.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degeneratehyperbola/NEPS2/HEAD/src/include/imgui/imgui_impl_vulkan.cpp -------------------------------------------------------------------------------- /src/include/imgui/imgui_impl_vulkan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degeneratehyperbola/NEPS2/HEAD/src/include/imgui/imgui_impl_vulkan.h -------------------------------------------------------------------------------- /src/include/imgui/imgui_impl_win32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degeneratehyperbola/NEPS2/HEAD/src/include/imgui/imgui_impl_win32.cpp -------------------------------------------------------------------------------- /src/include/imgui/imgui_impl_win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degeneratehyperbola/NEPS2/HEAD/src/include/imgui/imgui_impl_win32.h -------------------------------------------------------------------------------- /src/include/imgui/imgui_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degeneratehyperbola/NEPS2/HEAD/src/include/imgui/imgui_internal.h -------------------------------------------------------------------------------- /src/include/imgui/imgui_tables.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degeneratehyperbola/NEPS2/HEAD/src/include/imgui/imgui_tables.cpp -------------------------------------------------------------------------------- /src/include/imgui/imgui_widgets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degeneratehyperbola/NEPS2/HEAD/src/include/imgui/imgui_widgets.cpp -------------------------------------------------------------------------------- /src/include/imgui/imstb_rectpack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degeneratehyperbola/NEPS2/HEAD/src/include/imgui/imstb_rectpack.h -------------------------------------------------------------------------------- /src/include/imgui/imstb_textedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degeneratehyperbola/NEPS2/HEAD/src/include/imgui/imstb_textedit.h -------------------------------------------------------------------------------- /src/include/imgui/imstb_truetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degeneratehyperbola/NEPS2/HEAD/src/include/imgui/imstb_truetype.h -------------------------------------------------------------------------------- /src/include/memory_tools.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degeneratehyperbola/NEPS2/HEAD/src/include/memory_tools.cxx -------------------------------------------------------------------------------- /src/include/memory_tools.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degeneratehyperbola/NEPS2/HEAD/src/include/memory_tools.hxx -------------------------------------------------------------------------------- /src/include/minhook/MinHook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degeneratehyperbola/NEPS2/HEAD/src/include/minhook/MinHook.h -------------------------------------------------------------------------------- /src/include/minhook/buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degeneratehyperbola/NEPS2/HEAD/src/include/minhook/buffer.c -------------------------------------------------------------------------------- /src/include/minhook/buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degeneratehyperbola/NEPS2/HEAD/src/include/minhook/buffer.h -------------------------------------------------------------------------------- /src/include/minhook/hde/hde32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degeneratehyperbola/NEPS2/HEAD/src/include/minhook/hde/hde32.c -------------------------------------------------------------------------------- /src/include/minhook/hde/hde32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degeneratehyperbola/NEPS2/HEAD/src/include/minhook/hde/hde32.h -------------------------------------------------------------------------------- /src/include/minhook/hde/hde64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degeneratehyperbola/NEPS2/HEAD/src/include/minhook/hde/hde64.c -------------------------------------------------------------------------------- /src/include/minhook/hde/hde64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degeneratehyperbola/NEPS2/HEAD/src/include/minhook/hde/hde64.h -------------------------------------------------------------------------------- /src/include/minhook/hde/pstdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degeneratehyperbola/NEPS2/HEAD/src/include/minhook/hde/pstdint.h -------------------------------------------------------------------------------- /src/include/minhook/hde/table32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degeneratehyperbola/NEPS2/HEAD/src/include/minhook/hde/table32.h -------------------------------------------------------------------------------- /src/include/minhook/hde/table64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degeneratehyperbola/NEPS2/HEAD/src/include/minhook/hde/table64.h -------------------------------------------------------------------------------- /src/include/minhook/hook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degeneratehyperbola/NEPS2/HEAD/src/include/minhook/hook.c -------------------------------------------------------------------------------- /src/include/minhook/trampoline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degeneratehyperbola/NEPS2/HEAD/src/include/minhook/trampoline.c -------------------------------------------------------------------------------- /src/include/minhook/trampoline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degeneratehyperbola/NEPS2/HEAD/src/include/minhook/trampoline.h -------------------------------------------------------------------------------- /src/include/platform.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degeneratehyperbola/NEPS2/HEAD/src/include/platform.hxx -------------------------------------------------------------------------------- /src/main.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degeneratehyperbola/NEPS2/HEAD/src/main.cxx -------------------------------------------------------------------------------- /src/neps/general.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degeneratehyperbola/NEPS2/HEAD/src/neps/general.cxx -------------------------------------------------------------------------------- /src/neps/general.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degeneratehyperbola/NEPS2/HEAD/src/neps/general.hxx -------------------------------------------------------------------------------- /src/neps/globals.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degeneratehyperbola/NEPS2/HEAD/src/neps/globals.hxx -------------------------------------------------------------------------------- /src/neps/gui.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degeneratehyperbola/NEPS2/HEAD/src/neps/gui.cxx -------------------------------------------------------------------------------- /src/neps/gui.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degeneratehyperbola/NEPS2/HEAD/src/neps/gui.hxx -------------------------------------------------------------------------------- /src/neps/hook_callbacks.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degeneratehyperbola/NEPS2/HEAD/src/neps/hook_callbacks.cxx -------------------------------------------------------------------------------- /src/neps/hook_callbacks.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degeneratehyperbola/NEPS2/HEAD/src/neps/hook_callbacks.hxx -------------------------------------------------------------------------------- /src/neps/input_system.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degeneratehyperbola/NEPS2/HEAD/src/neps/input_system.cxx -------------------------------------------------------------------------------- /src/neps/input_system.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degeneratehyperbola/NEPS2/HEAD/src/neps/input_system.hxx -------------------------------------------------------------------------------- /src/neps/scipt_manager.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degeneratehyperbola/NEPS2/HEAD/src/neps/scipt_manager.cxx -------------------------------------------------------------------------------- /src/neps/script_manager.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degeneratehyperbola/NEPS2/HEAD/src/neps/script_manager.hxx -------------------------------------------------------------------------------- /src/pch.cpp: -------------------------------------------------------------------------------- 1 | // Idk why it here 2 | -------------------------------------------------------------------------------- /src/pch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degeneratehyperbola/NEPS2/HEAD/src/pch.hpp -------------------------------------------------------------------------------- /tests/sanity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degeneratehyperbola/NEPS2/HEAD/tests/sanity.py --------------------------------------------------------------------------------