├── .gitignore ├── MenuTemplateCSGO.sln ├── MenuTemplateCSGO.vcxproj ├── MenuTemplateCSGO.vcxproj.filters ├── README.md ├── core ├── features │ ├── features.hpp │ └── skins │ │ ├── parser.cpp │ │ ├── parser.h │ │ └── skins.cpp ├── hooks │ ├── hooks.cpp │ └── hooks.hpp ├── main.cpp └── menu │ ├── archivex.hpp │ ├── cfg.cpp │ ├── imgui │ ├── dx9 │ │ ├── imgui_impl_dx9.cpp │ │ └── imgui_impl_dx9.h │ ├── imconfig.h │ ├── imgui.cpp │ ├── imgui.h │ ├── imgui_draw.cpp │ ├── imgui_internal.h │ ├── stb_rect_pack.h │ ├── stb_textedit.h │ └── stb_truetype.h │ ├── menu.cpp │ ├── menu.h │ ├── menu_helpers.h │ └── tabs │ ├── legit_tab.cpp │ ├── misc_tab.cpp │ ├── rage_tab.cpp │ ├── settings_tab.cpp │ ├── skins_tab.cpp │ └── visuals_tab.cpp ├── dependencies ├── common_includes.hpp ├── interfaces │ ├── I_client_mode.h │ ├── I_client_networkable.hpp │ ├── I_client_renderable.hpp │ ├── I_client_unkown.hpp │ ├── c_csgamerulesproxy.hpp │ ├── c_global_vars_base.hpp │ ├── c_handle.hpp │ ├── c_hud_chat.hpp │ ├── glow_manager.hpp │ ├── i_app_system.hpp │ ├── i_base_client_dll.hpp │ ├── i_client_entity_list.hpp │ ├── i_client_state.hpp │ ├── i_client_thinkable.h │ ├── i_console.hpp │ ├── i_game_event_manager.hpp │ ├── i_input.hpp │ ├── i_input_system.hpp │ ├── i_localize.hpp │ ├── i_material_system.hpp │ ├── i_net_message.hpp │ ├── i_panel.hpp │ ├── i_player_movement.hpp │ ├── i_render_view.hpp │ ├── i_surface.hpp │ ├── i_trace.hpp │ ├── i_weapon_system.hpp │ ├── imageformats.h │ ├── interfaces.cpp │ ├── interfaces.hpp │ ├── iv_debug_overlay.hpp │ ├── iv_engine_client.hpp │ ├── iv_model_info.hpp │ └── iv_model_render.hpp ├── math │ ├── math.cpp │ └── math.hpp ├── minhook │ ├── buffer.c │ ├── buffer.h │ ├── hde │ │ ├── hde32.c │ │ ├── hde32.h │ │ ├── hde64.c │ │ ├── hde64.h │ │ ├── pstdint.h │ │ ├── table32.h │ │ └── table64.h │ ├── hook.c │ ├── minhook.h │ ├── trampoline.c │ └── trampoline.h └── utilities │ ├── console │ ├── console.cpp │ └── console.hpp │ ├── csgo.cpp │ ├── csgo.hpp │ ├── fnv.hpp │ ├── json.hpp │ ├── md5 │ ├── md5.cpp │ └── md5.hpp │ ├── netvars │ ├── netvars.cpp │ └── netvars.hpp │ ├── renderer │ ├── renderer.cpp │ └── renderer.hpp │ ├── settings.cpp │ ├── settings.h │ ├── singleton.hpp │ ├── utilities.cpp │ ├── utilities.hpp │ └── xorstr.h ├── intermediates ├── OverflowCSGO.tlog │ ├── CL.command.1.tlog │ ├── CL.read.1.tlog │ ├── CL.write.1.tlog │ ├── OverflowCSGO.lastbuildstate │ ├── link.command.1.tlog │ ├── link.delete.1.tlog │ ├── link.read.1.tlog │ └── link.write.1.tlog ├── OverflowCSGO.vcxproj.FileListAbsolute.txt ├── aimbot.nativecodeanalysis.sarif ├── buffer.nativecodeanalysis.sarif ├── cfg.nativecodeanalysis.sarif ├── chams.nativecodeanalysis.sarif ├── console.nativecodeanalysis.sarif ├── csgo.nativecodeanalysis.sarif ├── engine_prediction.nativecodeanalysis.sarif ├── esp.nativecodeanalysis.sarif ├── hde32.nativecodeanalysis.sarif ├── hde64.nativecodeanalysis.sarif ├── hook.nativecodeanalysis.sarif ├── hooks.nativecodeanalysis.sarif ├── imgui.nativecodeanalysis.sarif ├── imgui_draw.nativecodeanalysis.sarif ├── imgui_impl_dx9.nativecodeanalysis.sarif ├── interfaces.nativecodeanalysis.sarif ├── knife_hook.nativecodeanalysis.sarif ├── main.nativecodeanalysis.sarif ├── math.nativecodeanalysis.sarif ├── md5.nativecodeanalysis.sarif ├── menu.nativecodeanalysis.sarif ├── menu.new.obj.enc ├── misc.nativecodeanalysis.sarif ├── netvars.nativecodeanalysis.sarif ├── parser.nativecodeanalysis.sarif ├── renderer.nativecodeanalysis.sarif ├── settings.nativecodeanalysis.sarif ├── skins.nativecodeanalysis.sarif ├── trampoline.nativecodeanalysis.sarif ├── triggerbot.nativecodeanalysis.sarif ├── utilities.nativecodeanalysis.sarif ├── vc142.idb ├── vector3d.nativecodeanalysis.sarif └── view_matrix.nativecodeanalysis.sarif └── source-sdk ├── classes ├── c_usercmd.hpp ├── client_class.hpp ├── collideable.hpp ├── convar.hpp ├── entities.hpp ├── net_channel.hpp ├── recv_props.hpp ├── studio.hpp └── view_setup.h ├── math ├── utl_vector.hpp ├── vector2d.hpp ├── vector3d.cpp ├── vector3d.hpp ├── view_matrix.cpp └── view_matrix.hpp ├── misc └── color.hpp ├── sdk.hpp └── structs ├── animstate.hpp ├── dlight.hpp ├── materials.hpp ├── models.hpp ├── vertex_t.hpp └── weaponinfo.hpp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/CSGOMenuTemplate/HEAD/.gitignore -------------------------------------------------------------------------------- /MenuTemplateCSGO.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/CSGOMenuTemplate/HEAD/MenuTemplateCSGO.sln -------------------------------------------------------------------------------- /MenuTemplateCSGO.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/CSGOMenuTemplate/HEAD/MenuTemplateCSGO.vcxproj -------------------------------------------------------------------------------- /MenuTemplateCSGO.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/CSGOMenuTemplate/HEAD/MenuTemplateCSGO.vcxproj.filters -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/CSGOMenuTemplate/HEAD/README.md -------------------------------------------------------------------------------- /core/features/features.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/CSGOMenuTemplate/HEAD/core/features/features.hpp -------------------------------------------------------------------------------- /core/features/skins/parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/CSGOMenuTemplate/HEAD/core/features/skins/parser.cpp -------------------------------------------------------------------------------- /core/features/skins/parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/CSGOMenuTemplate/HEAD/core/features/skins/parser.h -------------------------------------------------------------------------------- /core/features/skins/skins.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/CSGOMenuTemplate/HEAD/core/features/skins/skins.cpp -------------------------------------------------------------------------------- /core/hooks/hooks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/CSGOMenuTemplate/HEAD/core/hooks/hooks.cpp -------------------------------------------------------------------------------- /core/hooks/hooks.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/CSGOMenuTemplate/HEAD/core/hooks/hooks.hpp -------------------------------------------------------------------------------- /core/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/CSGOMenuTemplate/HEAD/core/main.cpp -------------------------------------------------------------------------------- /core/menu/archivex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/CSGOMenuTemplate/HEAD/core/menu/archivex.hpp -------------------------------------------------------------------------------- /core/menu/cfg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/CSGOMenuTemplate/HEAD/core/menu/cfg.cpp -------------------------------------------------------------------------------- /core/menu/imgui/dx9/imgui_impl_dx9.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/CSGOMenuTemplate/HEAD/core/menu/imgui/dx9/imgui_impl_dx9.cpp -------------------------------------------------------------------------------- /core/menu/imgui/dx9/imgui_impl_dx9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/CSGOMenuTemplate/HEAD/core/menu/imgui/dx9/imgui_impl_dx9.h -------------------------------------------------------------------------------- /core/menu/imgui/imconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/CSGOMenuTemplate/HEAD/core/menu/imgui/imconfig.h -------------------------------------------------------------------------------- /core/menu/imgui/imgui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/CSGOMenuTemplate/HEAD/core/menu/imgui/imgui.cpp -------------------------------------------------------------------------------- /core/menu/imgui/imgui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/CSGOMenuTemplate/HEAD/core/menu/imgui/imgui.h -------------------------------------------------------------------------------- /core/menu/imgui/imgui_draw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/CSGOMenuTemplate/HEAD/core/menu/imgui/imgui_draw.cpp -------------------------------------------------------------------------------- /core/menu/imgui/imgui_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/CSGOMenuTemplate/HEAD/core/menu/imgui/imgui_internal.h -------------------------------------------------------------------------------- /core/menu/imgui/stb_rect_pack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/CSGOMenuTemplate/HEAD/core/menu/imgui/stb_rect_pack.h -------------------------------------------------------------------------------- /core/menu/imgui/stb_textedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/CSGOMenuTemplate/HEAD/core/menu/imgui/stb_textedit.h -------------------------------------------------------------------------------- /core/menu/imgui/stb_truetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/CSGOMenuTemplate/HEAD/core/menu/imgui/stb_truetype.h -------------------------------------------------------------------------------- /core/menu/menu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/CSGOMenuTemplate/HEAD/core/menu/menu.cpp -------------------------------------------------------------------------------- /core/menu/menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/CSGOMenuTemplate/HEAD/core/menu/menu.h -------------------------------------------------------------------------------- /core/menu/menu_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/CSGOMenuTemplate/HEAD/core/menu/menu_helpers.h -------------------------------------------------------------------------------- /core/menu/tabs/legit_tab.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/CSGOMenuTemplate/HEAD/core/menu/tabs/legit_tab.cpp -------------------------------------------------------------------------------- /core/menu/tabs/misc_tab.cpp: -------------------------------------------------------------------------------- 1 | #include "../menu.h" 2 | 3 | void Menu::misc_tab() 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /core/menu/tabs/rage_tab.cpp: -------------------------------------------------------------------------------- 1 | #include "../menu.h" 2 | 3 | void Menu::rage_tab() 4 | { 5 | 6 | } -------------------------------------------------------------------------------- /core/menu/tabs/settings_tab.cpp: -------------------------------------------------------------------------------- 1 | #include "../menu.h" 2 | 3 | void Menu::settings_tab() 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /core/menu/tabs/skins_tab.cpp: -------------------------------------------------------------------------------- 1 | #include "../menu.h" 2 | 3 | void Menu::skins_tab() 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /core/menu/tabs/visuals_tab.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/CSGOMenuTemplate/HEAD/core/menu/tabs/visuals_tab.cpp -------------------------------------------------------------------------------- /dependencies/common_includes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/CSGOMenuTemplate/HEAD/dependencies/common_includes.hpp -------------------------------------------------------------------------------- /dependencies/interfaces/I_client_mode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/CSGOMenuTemplate/HEAD/dependencies/interfaces/I_client_mode.h -------------------------------------------------------------------------------- /dependencies/interfaces/I_client_networkable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/CSGOMenuTemplate/HEAD/dependencies/interfaces/I_client_networkable.hpp -------------------------------------------------------------------------------- /dependencies/interfaces/I_client_renderable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/CSGOMenuTemplate/HEAD/dependencies/interfaces/I_client_renderable.hpp -------------------------------------------------------------------------------- /dependencies/interfaces/I_client_unkown.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/CSGOMenuTemplate/HEAD/dependencies/interfaces/I_client_unkown.hpp -------------------------------------------------------------------------------- /dependencies/interfaces/c_csgamerulesproxy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/CSGOMenuTemplate/HEAD/dependencies/interfaces/c_csgamerulesproxy.hpp -------------------------------------------------------------------------------- /dependencies/interfaces/c_global_vars_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/CSGOMenuTemplate/HEAD/dependencies/interfaces/c_global_vars_base.hpp -------------------------------------------------------------------------------- /dependencies/interfaces/c_handle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/CSGOMenuTemplate/HEAD/dependencies/interfaces/c_handle.hpp -------------------------------------------------------------------------------- /dependencies/interfaces/c_hud_chat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/CSGOMenuTemplate/HEAD/dependencies/interfaces/c_hud_chat.hpp -------------------------------------------------------------------------------- /dependencies/interfaces/glow_manager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/CSGOMenuTemplate/HEAD/dependencies/interfaces/glow_manager.hpp -------------------------------------------------------------------------------- /dependencies/interfaces/i_app_system.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/CSGOMenuTemplate/HEAD/dependencies/interfaces/i_app_system.hpp -------------------------------------------------------------------------------- /dependencies/interfaces/i_base_client_dll.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/CSGOMenuTemplate/HEAD/dependencies/interfaces/i_base_client_dll.hpp -------------------------------------------------------------------------------- /dependencies/interfaces/i_client_entity_list.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/CSGOMenuTemplate/HEAD/dependencies/interfaces/i_client_entity_list.hpp -------------------------------------------------------------------------------- /dependencies/interfaces/i_client_state.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/CSGOMenuTemplate/HEAD/dependencies/interfaces/i_client_state.hpp -------------------------------------------------------------------------------- /dependencies/interfaces/i_client_thinkable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/CSGOMenuTemplate/HEAD/dependencies/interfaces/i_client_thinkable.h -------------------------------------------------------------------------------- /dependencies/interfaces/i_console.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/CSGOMenuTemplate/HEAD/dependencies/interfaces/i_console.hpp -------------------------------------------------------------------------------- /dependencies/interfaces/i_game_event_manager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/CSGOMenuTemplate/HEAD/dependencies/interfaces/i_game_event_manager.hpp -------------------------------------------------------------------------------- /dependencies/interfaces/i_input.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/CSGOMenuTemplate/HEAD/dependencies/interfaces/i_input.hpp -------------------------------------------------------------------------------- /dependencies/interfaces/i_input_system.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/CSGOMenuTemplate/HEAD/dependencies/interfaces/i_input_system.hpp -------------------------------------------------------------------------------- /dependencies/interfaces/i_localize.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/CSGOMenuTemplate/HEAD/dependencies/interfaces/i_localize.hpp -------------------------------------------------------------------------------- /dependencies/interfaces/i_material_system.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/CSGOMenuTemplate/HEAD/dependencies/interfaces/i_material_system.hpp -------------------------------------------------------------------------------- /dependencies/interfaces/i_net_message.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/CSGOMenuTemplate/HEAD/dependencies/interfaces/i_net_message.hpp -------------------------------------------------------------------------------- /dependencies/interfaces/i_panel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/CSGOMenuTemplate/HEAD/dependencies/interfaces/i_panel.hpp -------------------------------------------------------------------------------- /dependencies/interfaces/i_player_movement.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/CSGOMenuTemplate/HEAD/dependencies/interfaces/i_player_movement.hpp -------------------------------------------------------------------------------- /dependencies/interfaces/i_render_view.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/CSGOMenuTemplate/HEAD/dependencies/interfaces/i_render_view.hpp -------------------------------------------------------------------------------- /dependencies/interfaces/i_surface.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/CSGOMenuTemplate/HEAD/dependencies/interfaces/i_surface.hpp -------------------------------------------------------------------------------- /dependencies/interfaces/i_trace.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/CSGOMenuTemplate/HEAD/dependencies/interfaces/i_trace.hpp -------------------------------------------------------------------------------- /dependencies/interfaces/i_weapon_system.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/CSGOMenuTemplate/HEAD/dependencies/interfaces/i_weapon_system.hpp -------------------------------------------------------------------------------- /dependencies/interfaces/imageformats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/CSGOMenuTemplate/HEAD/dependencies/interfaces/imageformats.h -------------------------------------------------------------------------------- /dependencies/interfaces/interfaces.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/CSGOMenuTemplate/HEAD/dependencies/interfaces/interfaces.cpp -------------------------------------------------------------------------------- /dependencies/interfaces/interfaces.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/CSGOMenuTemplate/HEAD/dependencies/interfaces/interfaces.hpp -------------------------------------------------------------------------------- /dependencies/interfaces/iv_debug_overlay.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/CSGOMenuTemplate/HEAD/dependencies/interfaces/iv_debug_overlay.hpp -------------------------------------------------------------------------------- /dependencies/interfaces/iv_engine_client.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/CSGOMenuTemplate/HEAD/dependencies/interfaces/iv_engine_client.hpp -------------------------------------------------------------------------------- /dependencies/interfaces/iv_model_info.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/CSGOMenuTemplate/HEAD/dependencies/interfaces/iv_model_info.hpp -------------------------------------------------------------------------------- /dependencies/interfaces/iv_model_render.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/CSGOMenuTemplate/HEAD/dependencies/interfaces/iv_model_render.hpp -------------------------------------------------------------------------------- /dependencies/math/math.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/CSGOMenuTemplate/HEAD/dependencies/math/math.cpp -------------------------------------------------------------------------------- /dependencies/math/math.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/CSGOMenuTemplate/HEAD/dependencies/math/math.hpp -------------------------------------------------------------------------------- /dependencies/minhook/buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/CSGOMenuTemplate/HEAD/dependencies/minhook/buffer.c -------------------------------------------------------------------------------- /dependencies/minhook/buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/CSGOMenuTemplate/HEAD/dependencies/minhook/buffer.h -------------------------------------------------------------------------------- /dependencies/minhook/hde/hde32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/CSGOMenuTemplate/HEAD/dependencies/minhook/hde/hde32.c -------------------------------------------------------------------------------- /dependencies/minhook/hde/hde32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/CSGOMenuTemplate/HEAD/dependencies/minhook/hde/hde32.h -------------------------------------------------------------------------------- /dependencies/minhook/hde/hde64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/CSGOMenuTemplate/HEAD/dependencies/minhook/hde/hde64.c -------------------------------------------------------------------------------- /dependencies/minhook/hde/hde64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/CSGOMenuTemplate/HEAD/dependencies/minhook/hde/hde64.h -------------------------------------------------------------------------------- /dependencies/minhook/hde/pstdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/CSGOMenuTemplate/HEAD/dependencies/minhook/hde/pstdint.h -------------------------------------------------------------------------------- /dependencies/minhook/hde/table32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/CSGOMenuTemplate/HEAD/dependencies/minhook/hde/table32.h -------------------------------------------------------------------------------- /dependencies/minhook/hde/table64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/CSGOMenuTemplate/HEAD/dependencies/minhook/hde/table64.h -------------------------------------------------------------------------------- /dependencies/minhook/hook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/CSGOMenuTemplate/HEAD/dependencies/minhook/hook.c -------------------------------------------------------------------------------- /dependencies/minhook/minhook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/CSGOMenuTemplate/HEAD/dependencies/minhook/minhook.h -------------------------------------------------------------------------------- /dependencies/minhook/trampoline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/CSGOMenuTemplate/HEAD/dependencies/minhook/trampoline.c -------------------------------------------------------------------------------- /dependencies/minhook/trampoline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/CSGOMenuTemplate/HEAD/dependencies/minhook/trampoline.h -------------------------------------------------------------------------------- /dependencies/utilities/console/console.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/CSGOMenuTemplate/HEAD/dependencies/utilities/console/console.cpp -------------------------------------------------------------------------------- /dependencies/utilities/console/console.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/CSGOMenuTemplate/HEAD/dependencies/utilities/console/console.hpp -------------------------------------------------------------------------------- /dependencies/utilities/csgo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/CSGOMenuTemplate/HEAD/dependencies/utilities/csgo.cpp -------------------------------------------------------------------------------- /dependencies/utilities/csgo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/CSGOMenuTemplate/HEAD/dependencies/utilities/csgo.hpp -------------------------------------------------------------------------------- /dependencies/utilities/fnv.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/CSGOMenuTemplate/HEAD/dependencies/utilities/fnv.hpp -------------------------------------------------------------------------------- /dependencies/utilities/json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/CSGOMenuTemplate/HEAD/dependencies/utilities/json.hpp -------------------------------------------------------------------------------- /dependencies/utilities/md5/md5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/CSGOMenuTemplate/HEAD/dependencies/utilities/md5/md5.cpp -------------------------------------------------------------------------------- /dependencies/utilities/md5/md5.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/CSGOMenuTemplate/HEAD/dependencies/utilities/md5/md5.hpp -------------------------------------------------------------------------------- /dependencies/utilities/netvars/netvars.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/CSGOMenuTemplate/HEAD/dependencies/utilities/netvars/netvars.cpp -------------------------------------------------------------------------------- /dependencies/utilities/netvars/netvars.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/CSGOMenuTemplate/HEAD/dependencies/utilities/netvars/netvars.hpp -------------------------------------------------------------------------------- /dependencies/utilities/renderer/renderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/CSGOMenuTemplate/HEAD/dependencies/utilities/renderer/renderer.cpp -------------------------------------------------------------------------------- /dependencies/utilities/renderer/renderer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/CSGOMenuTemplate/HEAD/dependencies/utilities/renderer/renderer.hpp -------------------------------------------------------------------------------- /dependencies/utilities/settings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/CSGOMenuTemplate/HEAD/dependencies/utilities/settings.cpp -------------------------------------------------------------------------------- /dependencies/utilities/settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/CSGOMenuTemplate/HEAD/dependencies/utilities/settings.h -------------------------------------------------------------------------------- /dependencies/utilities/singleton.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/CSGOMenuTemplate/HEAD/dependencies/utilities/singleton.hpp -------------------------------------------------------------------------------- /dependencies/utilities/utilities.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/CSGOMenuTemplate/HEAD/dependencies/utilities/utilities.cpp -------------------------------------------------------------------------------- /dependencies/utilities/utilities.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/CSGOMenuTemplate/HEAD/dependencies/utilities/utilities.hpp -------------------------------------------------------------------------------- /dependencies/utilities/xorstr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/CSGOMenuTemplate/HEAD/dependencies/utilities/xorstr.h -------------------------------------------------------------------------------- /intermediates/OverflowCSGO.tlog/CL.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/CSGOMenuTemplate/HEAD/intermediates/OverflowCSGO.tlog/CL.command.1.tlog -------------------------------------------------------------------------------- /intermediates/OverflowCSGO.tlog/CL.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/CSGOMenuTemplate/HEAD/intermediates/OverflowCSGO.tlog/CL.read.1.tlog -------------------------------------------------------------------------------- /intermediates/OverflowCSGO.tlog/CL.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/CSGOMenuTemplate/HEAD/intermediates/OverflowCSGO.tlog/CL.write.1.tlog -------------------------------------------------------------------------------- /intermediates/OverflowCSGO.tlog/OverflowCSGO.lastbuildstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/CSGOMenuTemplate/HEAD/intermediates/OverflowCSGO.tlog/OverflowCSGO.lastbuildstate -------------------------------------------------------------------------------- /intermediates/OverflowCSGO.tlog/link.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/CSGOMenuTemplate/HEAD/intermediates/OverflowCSGO.tlog/link.command.1.tlog -------------------------------------------------------------------------------- /intermediates/OverflowCSGO.tlog/link.delete.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/CSGOMenuTemplate/HEAD/intermediates/OverflowCSGO.tlog/link.delete.1.tlog -------------------------------------------------------------------------------- /intermediates/OverflowCSGO.tlog/link.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/CSGOMenuTemplate/HEAD/intermediates/OverflowCSGO.tlog/link.read.1.tlog -------------------------------------------------------------------------------- /intermediates/OverflowCSGO.tlog/link.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/CSGOMenuTemplate/HEAD/intermediates/OverflowCSGO.tlog/link.write.1.tlog -------------------------------------------------------------------------------- /intermediates/OverflowCSGO.vcxproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /intermediates/aimbot.nativecodeanalysis.sarif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/CSGOMenuTemplate/HEAD/intermediates/aimbot.nativecodeanalysis.sarif -------------------------------------------------------------------------------- /intermediates/buffer.nativecodeanalysis.sarif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/CSGOMenuTemplate/HEAD/intermediates/buffer.nativecodeanalysis.sarif -------------------------------------------------------------------------------- /intermediates/cfg.nativecodeanalysis.sarif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/CSGOMenuTemplate/HEAD/intermediates/cfg.nativecodeanalysis.sarif -------------------------------------------------------------------------------- /intermediates/chams.nativecodeanalysis.sarif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/CSGOMenuTemplate/HEAD/intermediates/chams.nativecodeanalysis.sarif -------------------------------------------------------------------------------- /intermediates/console.nativecodeanalysis.sarif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/CSGOMenuTemplate/HEAD/intermediates/console.nativecodeanalysis.sarif -------------------------------------------------------------------------------- /intermediates/csgo.nativecodeanalysis.sarif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/CSGOMenuTemplate/HEAD/intermediates/csgo.nativecodeanalysis.sarif -------------------------------------------------------------------------------- /intermediates/engine_prediction.nativecodeanalysis.sarif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/CSGOMenuTemplate/HEAD/intermediates/engine_prediction.nativecodeanalysis.sarif -------------------------------------------------------------------------------- /intermediates/esp.nativecodeanalysis.sarif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/CSGOMenuTemplate/HEAD/intermediates/esp.nativecodeanalysis.sarif -------------------------------------------------------------------------------- /intermediates/hde32.nativecodeanalysis.sarif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/CSGOMenuTemplate/HEAD/intermediates/hde32.nativecodeanalysis.sarif -------------------------------------------------------------------------------- /intermediates/hde64.nativecodeanalysis.sarif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/CSGOMenuTemplate/HEAD/intermediates/hde64.nativecodeanalysis.sarif -------------------------------------------------------------------------------- /intermediates/hook.nativecodeanalysis.sarif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/CSGOMenuTemplate/HEAD/intermediates/hook.nativecodeanalysis.sarif -------------------------------------------------------------------------------- /intermediates/hooks.nativecodeanalysis.sarif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/CSGOMenuTemplate/HEAD/intermediates/hooks.nativecodeanalysis.sarif -------------------------------------------------------------------------------- /intermediates/imgui.nativecodeanalysis.sarif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/CSGOMenuTemplate/HEAD/intermediates/imgui.nativecodeanalysis.sarif -------------------------------------------------------------------------------- /intermediates/imgui_draw.nativecodeanalysis.sarif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/CSGOMenuTemplate/HEAD/intermediates/imgui_draw.nativecodeanalysis.sarif -------------------------------------------------------------------------------- /intermediates/imgui_impl_dx9.nativecodeanalysis.sarif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/CSGOMenuTemplate/HEAD/intermediates/imgui_impl_dx9.nativecodeanalysis.sarif -------------------------------------------------------------------------------- /intermediates/interfaces.nativecodeanalysis.sarif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/CSGOMenuTemplate/HEAD/intermediates/interfaces.nativecodeanalysis.sarif -------------------------------------------------------------------------------- /intermediates/knife_hook.nativecodeanalysis.sarif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/CSGOMenuTemplate/HEAD/intermediates/knife_hook.nativecodeanalysis.sarif -------------------------------------------------------------------------------- /intermediates/main.nativecodeanalysis.sarif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/CSGOMenuTemplate/HEAD/intermediates/main.nativecodeanalysis.sarif -------------------------------------------------------------------------------- /intermediates/math.nativecodeanalysis.sarif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/CSGOMenuTemplate/HEAD/intermediates/math.nativecodeanalysis.sarif -------------------------------------------------------------------------------- /intermediates/md5.nativecodeanalysis.sarif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/CSGOMenuTemplate/HEAD/intermediates/md5.nativecodeanalysis.sarif -------------------------------------------------------------------------------- /intermediates/menu.nativecodeanalysis.sarif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/CSGOMenuTemplate/HEAD/intermediates/menu.nativecodeanalysis.sarif -------------------------------------------------------------------------------- /intermediates/menu.new.obj.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/CSGOMenuTemplate/HEAD/intermediates/menu.new.obj.enc -------------------------------------------------------------------------------- /intermediates/misc.nativecodeanalysis.sarif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/CSGOMenuTemplate/HEAD/intermediates/misc.nativecodeanalysis.sarif -------------------------------------------------------------------------------- /intermediates/netvars.nativecodeanalysis.sarif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/CSGOMenuTemplate/HEAD/intermediates/netvars.nativecodeanalysis.sarif -------------------------------------------------------------------------------- /intermediates/parser.nativecodeanalysis.sarif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/CSGOMenuTemplate/HEAD/intermediates/parser.nativecodeanalysis.sarif -------------------------------------------------------------------------------- /intermediates/renderer.nativecodeanalysis.sarif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/CSGOMenuTemplate/HEAD/intermediates/renderer.nativecodeanalysis.sarif -------------------------------------------------------------------------------- /intermediates/settings.nativecodeanalysis.sarif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/CSGOMenuTemplate/HEAD/intermediates/settings.nativecodeanalysis.sarif -------------------------------------------------------------------------------- /intermediates/skins.nativecodeanalysis.sarif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/CSGOMenuTemplate/HEAD/intermediates/skins.nativecodeanalysis.sarif -------------------------------------------------------------------------------- /intermediates/trampoline.nativecodeanalysis.sarif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/CSGOMenuTemplate/HEAD/intermediates/trampoline.nativecodeanalysis.sarif -------------------------------------------------------------------------------- /intermediates/triggerbot.nativecodeanalysis.sarif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/CSGOMenuTemplate/HEAD/intermediates/triggerbot.nativecodeanalysis.sarif -------------------------------------------------------------------------------- /intermediates/utilities.nativecodeanalysis.sarif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/CSGOMenuTemplate/HEAD/intermediates/utilities.nativecodeanalysis.sarif -------------------------------------------------------------------------------- /intermediates/vc142.idb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/CSGOMenuTemplate/HEAD/intermediates/vc142.idb -------------------------------------------------------------------------------- /intermediates/vector3d.nativecodeanalysis.sarif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/CSGOMenuTemplate/HEAD/intermediates/vector3d.nativecodeanalysis.sarif -------------------------------------------------------------------------------- /intermediates/view_matrix.nativecodeanalysis.sarif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/CSGOMenuTemplate/HEAD/intermediates/view_matrix.nativecodeanalysis.sarif -------------------------------------------------------------------------------- /source-sdk/classes/c_usercmd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/CSGOMenuTemplate/HEAD/source-sdk/classes/c_usercmd.hpp -------------------------------------------------------------------------------- /source-sdk/classes/client_class.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/CSGOMenuTemplate/HEAD/source-sdk/classes/client_class.hpp -------------------------------------------------------------------------------- /source-sdk/classes/collideable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/CSGOMenuTemplate/HEAD/source-sdk/classes/collideable.hpp -------------------------------------------------------------------------------- /source-sdk/classes/convar.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/CSGOMenuTemplate/HEAD/source-sdk/classes/convar.hpp -------------------------------------------------------------------------------- /source-sdk/classes/entities.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/CSGOMenuTemplate/HEAD/source-sdk/classes/entities.hpp -------------------------------------------------------------------------------- /source-sdk/classes/net_channel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/CSGOMenuTemplate/HEAD/source-sdk/classes/net_channel.hpp -------------------------------------------------------------------------------- /source-sdk/classes/recv_props.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/CSGOMenuTemplate/HEAD/source-sdk/classes/recv_props.hpp -------------------------------------------------------------------------------- /source-sdk/classes/studio.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/CSGOMenuTemplate/HEAD/source-sdk/classes/studio.hpp -------------------------------------------------------------------------------- /source-sdk/classes/view_setup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/CSGOMenuTemplate/HEAD/source-sdk/classes/view_setup.h -------------------------------------------------------------------------------- /source-sdk/math/utl_vector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/CSGOMenuTemplate/HEAD/source-sdk/math/utl_vector.hpp -------------------------------------------------------------------------------- /source-sdk/math/vector2d.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/CSGOMenuTemplate/HEAD/source-sdk/math/vector2d.hpp -------------------------------------------------------------------------------- /source-sdk/math/vector3d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/CSGOMenuTemplate/HEAD/source-sdk/math/vector3d.cpp -------------------------------------------------------------------------------- /source-sdk/math/vector3d.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/CSGOMenuTemplate/HEAD/source-sdk/math/vector3d.hpp -------------------------------------------------------------------------------- /source-sdk/math/view_matrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/CSGOMenuTemplate/HEAD/source-sdk/math/view_matrix.cpp -------------------------------------------------------------------------------- /source-sdk/math/view_matrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/CSGOMenuTemplate/HEAD/source-sdk/math/view_matrix.hpp -------------------------------------------------------------------------------- /source-sdk/misc/color.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/CSGOMenuTemplate/HEAD/source-sdk/misc/color.hpp -------------------------------------------------------------------------------- /source-sdk/sdk.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/CSGOMenuTemplate/HEAD/source-sdk/sdk.hpp -------------------------------------------------------------------------------- /source-sdk/structs/animstate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/CSGOMenuTemplate/HEAD/source-sdk/structs/animstate.hpp -------------------------------------------------------------------------------- /source-sdk/structs/dlight.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/CSGOMenuTemplate/HEAD/source-sdk/structs/dlight.hpp -------------------------------------------------------------------------------- /source-sdk/structs/materials.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/CSGOMenuTemplate/HEAD/source-sdk/structs/materials.hpp -------------------------------------------------------------------------------- /source-sdk/structs/models.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/CSGOMenuTemplate/HEAD/source-sdk/structs/models.hpp -------------------------------------------------------------------------------- /source-sdk/structs/vertex_t.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/CSGOMenuTemplate/HEAD/source-sdk/structs/vertex_t.hpp -------------------------------------------------------------------------------- /source-sdk/structs/weaponinfo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/CSGOMenuTemplate/HEAD/source-sdk/structs/weaponinfo.hpp --------------------------------------------------------------------------------