├── .gitattributes ├── .gitignore ├── LICENSE ├── ugly code.sln └── vexternal ├── Roboto-Light.ttf ├── c_input.h ├── c_loot.h ├── c_player.h ├── c_weapon.h ├── driver.h ├── entry.cpp ├── globals.h ├── globalvars.h ├── helper.h ├── imgui.ini ├── include ├── GL │ ├── eglew.h │ ├── glew.h │ ├── glxew.h │ └── wglew.h ├── GLFW │ ├── glfw3.h │ └── glfw3native.h └── imgui │ ├── imconfig.h │ ├── imgui.cpp │ ├── imgui.h │ ├── imgui_custom.cpp │ ├── imgui_custom.h │ ├── imgui_demo.cpp │ ├── imgui_draw.cpp │ ├── imgui_impl_glfw.cpp │ ├── imgui_impl_glfw.h │ ├── imgui_impl_opengl3.cpp │ ├── imgui_impl_opengl3.h │ ├── imgui_internal.h │ ├── imgui_tables.cpp │ ├── imgui_widgets.cpp │ ├── imstb_rectpack.h │ ├── imstb_textedit.h │ └── imstb_truetype.h ├── offsets.h ├── render.h ├── sdk.h ├── strings.h ├── usercmd.h ├── vector.h ├── vexternal.vcxproj ├── vexternal.vcxproj.filters └── vexternal.vcxproj.user /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NekoRem/apex-external/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NekoRem/apex-external/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NekoRem/apex-external/HEAD/LICENSE -------------------------------------------------------------------------------- /ugly code.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NekoRem/apex-external/HEAD/ugly code.sln -------------------------------------------------------------------------------- /vexternal/Roboto-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NekoRem/apex-external/HEAD/vexternal/Roboto-Light.ttf -------------------------------------------------------------------------------- /vexternal/c_input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NekoRem/apex-external/HEAD/vexternal/c_input.h -------------------------------------------------------------------------------- /vexternal/c_loot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NekoRem/apex-external/HEAD/vexternal/c_loot.h -------------------------------------------------------------------------------- /vexternal/c_player.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NekoRem/apex-external/HEAD/vexternal/c_player.h -------------------------------------------------------------------------------- /vexternal/c_weapon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NekoRem/apex-external/HEAD/vexternal/c_weapon.h -------------------------------------------------------------------------------- /vexternal/driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NekoRem/apex-external/HEAD/vexternal/driver.h -------------------------------------------------------------------------------- /vexternal/entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NekoRem/apex-external/HEAD/vexternal/entry.cpp -------------------------------------------------------------------------------- /vexternal/globals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NekoRem/apex-external/HEAD/vexternal/globals.h -------------------------------------------------------------------------------- /vexternal/globalvars.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NekoRem/apex-external/HEAD/vexternal/globalvars.h -------------------------------------------------------------------------------- /vexternal/helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NekoRem/apex-external/HEAD/vexternal/helper.h -------------------------------------------------------------------------------- /vexternal/imgui.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NekoRem/apex-external/HEAD/vexternal/imgui.ini -------------------------------------------------------------------------------- /vexternal/include/GL/eglew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NekoRem/apex-external/HEAD/vexternal/include/GL/eglew.h -------------------------------------------------------------------------------- /vexternal/include/GL/glew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NekoRem/apex-external/HEAD/vexternal/include/GL/glew.h -------------------------------------------------------------------------------- /vexternal/include/GL/glxew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NekoRem/apex-external/HEAD/vexternal/include/GL/glxew.h -------------------------------------------------------------------------------- /vexternal/include/GL/wglew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NekoRem/apex-external/HEAD/vexternal/include/GL/wglew.h -------------------------------------------------------------------------------- /vexternal/include/GLFW/glfw3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NekoRem/apex-external/HEAD/vexternal/include/GLFW/glfw3.h -------------------------------------------------------------------------------- /vexternal/include/GLFW/glfw3native.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NekoRem/apex-external/HEAD/vexternal/include/GLFW/glfw3native.h -------------------------------------------------------------------------------- /vexternal/include/imgui/imconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NekoRem/apex-external/HEAD/vexternal/include/imgui/imconfig.h -------------------------------------------------------------------------------- /vexternal/include/imgui/imgui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NekoRem/apex-external/HEAD/vexternal/include/imgui/imgui.cpp -------------------------------------------------------------------------------- /vexternal/include/imgui/imgui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NekoRem/apex-external/HEAD/vexternal/include/imgui/imgui.h -------------------------------------------------------------------------------- /vexternal/include/imgui/imgui_custom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NekoRem/apex-external/HEAD/vexternal/include/imgui/imgui_custom.cpp -------------------------------------------------------------------------------- /vexternal/include/imgui/imgui_custom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NekoRem/apex-external/HEAD/vexternal/include/imgui/imgui_custom.h -------------------------------------------------------------------------------- /vexternal/include/imgui/imgui_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NekoRem/apex-external/HEAD/vexternal/include/imgui/imgui_demo.cpp -------------------------------------------------------------------------------- /vexternal/include/imgui/imgui_draw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NekoRem/apex-external/HEAD/vexternal/include/imgui/imgui_draw.cpp -------------------------------------------------------------------------------- /vexternal/include/imgui/imgui_impl_glfw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NekoRem/apex-external/HEAD/vexternal/include/imgui/imgui_impl_glfw.cpp -------------------------------------------------------------------------------- /vexternal/include/imgui/imgui_impl_glfw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NekoRem/apex-external/HEAD/vexternal/include/imgui/imgui_impl_glfw.h -------------------------------------------------------------------------------- /vexternal/include/imgui/imgui_impl_opengl3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NekoRem/apex-external/HEAD/vexternal/include/imgui/imgui_impl_opengl3.cpp -------------------------------------------------------------------------------- /vexternal/include/imgui/imgui_impl_opengl3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NekoRem/apex-external/HEAD/vexternal/include/imgui/imgui_impl_opengl3.h -------------------------------------------------------------------------------- /vexternal/include/imgui/imgui_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NekoRem/apex-external/HEAD/vexternal/include/imgui/imgui_internal.h -------------------------------------------------------------------------------- /vexternal/include/imgui/imgui_tables.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NekoRem/apex-external/HEAD/vexternal/include/imgui/imgui_tables.cpp -------------------------------------------------------------------------------- /vexternal/include/imgui/imgui_widgets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NekoRem/apex-external/HEAD/vexternal/include/imgui/imgui_widgets.cpp -------------------------------------------------------------------------------- /vexternal/include/imgui/imstb_rectpack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NekoRem/apex-external/HEAD/vexternal/include/imgui/imstb_rectpack.h -------------------------------------------------------------------------------- /vexternal/include/imgui/imstb_textedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NekoRem/apex-external/HEAD/vexternal/include/imgui/imstb_textedit.h -------------------------------------------------------------------------------- /vexternal/include/imgui/imstb_truetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NekoRem/apex-external/HEAD/vexternal/include/imgui/imstb_truetype.h -------------------------------------------------------------------------------- /vexternal/offsets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NekoRem/apex-external/HEAD/vexternal/offsets.h -------------------------------------------------------------------------------- /vexternal/render.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NekoRem/apex-external/HEAD/vexternal/render.h -------------------------------------------------------------------------------- /vexternal/sdk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NekoRem/apex-external/HEAD/vexternal/sdk.h -------------------------------------------------------------------------------- /vexternal/strings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NekoRem/apex-external/HEAD/vexternal/strings.h -------------------------------------------------------------------------------- /vexternal/usercmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NekoRem/apex-external/HEAD/vexternal/usercmd.h -------------------------------------------------------------------------------- /vexternal/vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NekoRem/apex-external/HEAD/vexternal/vector.h -------------------------------------------------------------------------------- /vexternal/vexternal.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NekoRem/apex-external/HEAD/vexternal/vexternal.vcxproj -------------------------------------------------------------------------------- /vexternal/vexternal.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NekoRem/apex-external/HEAD/vexternal/vexternal.vcxproj.filters -------------------------------------------------------------------------------- /vexternal/vexternal.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NekoRem/apex-external/HEAD/vexternal/vexternal.vcxproj.user --------------------------------------------------------------------------------