├── .gitignore ├── .idea ├── .gitignore ├── OverflowTF2.iml ├── misc.xml ├── modules.xml └── vcs.xml ├── .vs └── OverflowTF2 │ └── v16 │ └── Preview │ └── Browse.VC.db ├── OverflowTF2.sln ├── OverflowTF2.vcxproj ├── OverflowTF2.vcxproj.filters ├── OverflowTF2.vcxproj.user ├── README.md └── core ├── dllmain.cpp ├── features ├── aimbot │ ├── aimbot.cpp │ └── aimbot.hpp ├── backtrack │ ├── backtrack.cpp │ └── backtrack.hpp ├── misc │ ├── misc.cpp │ └── misc.hpp ├── other │ ├── others.cpp │ └── others.hpp ├── triggerbot │ ├── triggerbot.cpp │ └── triggerbot.hpp └── visuals │ ├── chams │ ├── chams.cpp │ └── chams.hpp │ ├── esp │ ├── esp.cpp │ └── esp.hpp │ └── walkbot │ ├── visualize_walkbot.cpp │ └── visualize_walkbot.hpp ├── hooks ├── hook.cpp ├── hook.hpp └── vtables │ ├── create_move.cpp │ ├── dme.cpp │ ├── paint.cpp │ ├── paint_traverse.cpp │ └── present.cpp ├── interfaces ├── interfaces.cpp └── interfaces.hpp ├── menu ├── 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.hpp ├── source-sdk ├── interfaces │ ├── c_base_combat_weapon.cpp │ ├── c_base_combat_weapon.hpp │ ├── c_convar.cpp │ ├── c_convar.hpp │ ├── c_game_movement.hpp │ ├── c_glow_manager.hpp │ ├── c_handle.hpp │ ├── c_key_values.cpp │ ├── c_key_values.hpp │ ├── c_material_system.hpp │ ├── c_model_info.hpp │ ├── c_model_render.hpp │ ├── c_net_channel.hpp │ ├── i_base_client_dll.hpp │ ├── i_client_networkable.hpp │ ├── i_engine_vgui.hpp │ ├── i_entity.cpp │ ├── i_entity.hpp │ ├── i_entity_list.hpp │ ├── i_panels.hpp │ ├── i_player_info_manager.hpp │ ├── i_surface.hpp │ ├── iv_debug_overlay.hpp │ ├── iv_engine_client.hpp │ └── iv_render_view.hpp └── structs │ ├── enums.hpp │ └── structs.hpp └── utils ├── color.hpp ├── draw ├── draw.cpp └── draw.hpp ├── game ├── helpers.cpp └── helpers.hpp ├── math ├── math.cpp ├── math.hpp ├── vector.hpp └── vmatrix.hpp ├── memory └── memory.hpp ├── netvars ├── dt_common.hpp ├── dt_recv.hpp ├── netvars.cpp └── netvars.hpp ├── settings ├── settings.cpp └── settings.hpp └── utils.hpp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/OverflowTF2/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /.idea/OverflowTF2.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/OverflowTF2/HEAD/.idea/OverflowTF2.iml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/OverflowTF2/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/OverflowTF2/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/OverflowTF2/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.vs/OverflowTF2/v16/Preview/Browse.VC.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/OverflowTF2/HEAD/.vs/OverflowTF2/v16/Preview/Browse.VC.db -------------------------------------------------------------------------------- /OverflowTF2.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/OverflowTF2/HEAD/OverflowTF2.sln -------------------------------------------------------------------------------- /OverflowTF2.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/OverflowTF2/HEAD/OverflowTF2.vcxproj -------------------------------------------------------------------------------- /OverflowTF2.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/OverflowTF2/HEAD/OverflowTF2.vcxproj.filters -------------------------------------------------------------------------------- /OverflowTF2.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/OverflowTF2/HEAD/OverflowTF2.vcxproj.user -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/OverflowTF2/HEAD/README.md -------------------------------------------------------------------------------- /core/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/OverflowTF2/HEAD/core/dllmain.cpp -------------------------------------------------------------------------------- /core/features/aimbot/aimbot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/OverflowTF2/HEAD/core/features/aimbot/aimbot.cpp -------------------------------------------------------------------------------- /core/features/aimbot/aimbot.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/OverflowTF2/HEAD/core/features/aimbot/aimbot.hpp -------------------------------------------------------------------------------- /core/features/backtrack/backtrack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/OverflowTF2/HEAD/core/features/backtrack/backtrack.cpp -------------------------------------------------------------------------------- /core/features/backtrack/backtrack.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/OverflowTF2/HEAD/core/features/backtrack/backtrack.hpp -------------------------------------------------------------------------------- /core/features/misc/misc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/OverflowTF2/HEAD/core/features/misc/misc.cpp -------------------------------------------------------------------------------- /core/features/misc/misc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/OverflowTF2/HEAD/core/features/misc/misc.hpp -------------------------------------------------------------------------------- /core/features/other/others.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/OverflowTF2/HEAD/core/features/other/others.cpp -------------------------------------------------------------------------------- /core/features/other/others.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/OverflowTF2/HEAD/core/features/other/others.hpp -------------------------------------------------------------------------------- /core/features/triggerbot/triggerbot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/OverflowTF2/HEAD/core/features/triggerbot/triggerbot.cpp -------------------------------------------------------------------------------- /core/features/triggerbot/triggerbot.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/OverflowTF2/HEAD/core/features/triggerbot/triggerbot.hpp -------------------------------------------------------------------------------- /core/features/visuals/chams/chams.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/OverflowTF2/HEAD/core/features/visuals/chams/chams.cpp -------------------------------------------------------------------------------- /core/features/visuals/chams/chams.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/OverflowTF2/HEAD/core/features/visuals/chams/chams.hpp -------------------------------------------------------------------------------- /core/features/visuals/esp/esp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/OverflowTF2/HEAD/core/features/visuals/esp/esp.cpp -------------------------------------------------------------------------------- /core/features/visuals/esp/esp.hpp: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | namespace esp { 4 | void run(); 5 | } -------------------------------------------------------------------------------- /core/features/visuals/walkbot/visualize_walkbot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/OverflowTF2/HEAD/core/features/visuals/walkbot/visualize_walkbot.cpp -------------------------------------------------------------------------------- /core/features/visuals/walkbot/visualize_walkbot.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/OverflowTF2/HEAD/core/features/visuals/walkbot/visualize_walkbot.hpp -------------------------------------------------------------------------------- /core/hooks/hook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/OverflowTF2/HEAD/core/hooks/hook.cpp -------------------------------------------------------------------------------- /core/hooks/hook.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/OverflowTF2/HEAD/core/hooks/hook.hpp -------------------------------------------------------------------------------- /core/hooks/vtables/create_move.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/OverflowTF2/HEAD/core/hooks/vtables/create_move.cpp -------------------------------------------------------------------------------- /core/hooks/vtables/dme.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/OverflowTF2/HEAD/core/hooks/vtables/dme.cpp -------------------------------------------------------------------------------- /core/hooks/vtables/paint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/OverflowTF2/HEAD/core/hooks/vtables/paint.cpp -------------------------------------------------------------------------------- /core/hooks/vtables/paint_traverse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/OverflowTF2/HEAD/core/hooks/vtables/paint_traverse.cpp -------------------------------------------------------------------------------- /core/hooks/vtables/present.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/OverflowTF2/HEAD/core/hooks/vtables/present.cpp -------------------------------------------------------------------------------- /core/interfaces/interfaces.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/OverflowTF2/HEAD/core/interfaces/interfaces.cpp -------------------------------------------------------------------------------- /core/interfaces/interfaces.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/OverflowTF2/HEAD/core/interfaces/interfaces.hpp -------------------------------------------------------------------------------- /core/menu/imgui/dx9/imgui_impl_dx9.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/OverflowTF2/HEAD/core/menu/imgui/dx9/imgui_impl_dx9.cpp -------------------------------------------------------------------------------- /core/menu/imgui/dx9/imgui_impl_dx9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/OverflowTF2/HEAD/core/menu/imgui/dx9/imgui_impl_dx9.h -------------------------------------------------------------------------------- /core/menu/imgui/imconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/OverflowTF2/HEAD/core/menu/imgui/imconfig.h -------------------------------------------------------------------------------- /core/menu/imgui/imgui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/OverflowTF2/HEAD/core/menu/imgui/imgui.cpp -------------------------------------------------------------------------------- /core/menu/imgui/imgui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/OverflowTF2/HEAD/core/menu/imgui/imgui.h -------------------------------------------------------------------------------- /core/menu/imgui/imgui_draw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/OverflowTF2/HEAD/core/menu/imgui/imgui_draw.cpp -------------------------------------------------------------------------------- /core/menu/imgui/imgui_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/OverflowTF2/HEAD/core/menu/imgui/imgui_internal.h -------------------------------------------------------------------------------- /core/menu/imgui/stb_rect_pack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/OverflowTF2/HEAD/core/menu/imgui/stb_rect_pack.h -------------------------------------------------------------------------------- /core/menu/imgui/stb_textedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/OverflowTF2/HEAD/core/menu/imgui/stb_textedit.h -------------------------------------------------------------------------------- /core/menu/imgui/stb_truetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/OverflowTF2/HEAD/core/menu/imgui/stb_truetype.h -------------------------------------------------------------------------------- /core/menu/menu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/OverflowTF2/HEAD/core/menu/menu.cpp -------------------------------------------------------------------------------- /core/menu/menu.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/OverflowTF2/HEAD/core/menu/menu.hpp -------------------------------------------------------------------------------- /core/source-sdk/interfaces/c_base_combat_weapon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/OverflowTF2/HEAD/core/source-sdk/interfaces/c_base_combat_weapon.cpp -------------------------------------------------------------------------------- /core/source-sdk/interfaces/c_base_combat_weapon.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/OverflowTF2/HEAD/core/source-sdk/interfaces/c_base_combat_weapon.hpp -------------------------------------------------------------------------------- /core/source-sdk/interfaces/c_convar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/OverflowTF2/HEAD/core/source-sdk/interfaces/c_convar.cpp -------------------------------------------------------------------------------- /core/source-sdk/interfaces/c_convar.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/OverflowTF2/HEAD/core/source-sdk/interfaces/c_convar.hpp -------------------------------------------------------------------------------- /core/source-sdk/interfaces/c_game_movement.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/OverflowTF2/HEAD/core/source-sdk/interfaces/c_game_movement.hpp -------------------------------------------------------------------------------- /core/source-sdk/interfaces/c_glow_manager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/OverflowTF2/HEAD/core/source-sdk/interfaces/c_glow_manager.hpp -------------------------------------------------------------------------------- /core/source-sdk/interfaces/c_handle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/OverflowTF2/HEAD/core/source-sdk/interfaces/c_handle.hpp -------------------------------------------------------------------------------- /core/source-sdk/interfaces/c_key_values.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/OverflowTF2/HEAD/core/source-sdk/interfaces/c_key_values.cpp -------------------------------------------------------------------------------- /core/source-sdk/interfaces/c_key_values.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/OverflowTF2/HEAD/core/source-sdk/interfaces/c_key_values.hpp -------------------------------------------------------------------------------- /core/source-sdk/interfaces/c_material_system.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/OverflowTF2/HEAD/core/source-sdk/interfaces/c_material_system.hpp -------------------------------------------------------------------------------- /core/source-sdk/interfaces/c_model_info.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/OverflowTF2/HEAD/core/source-sdk/interfaces/c_model_info.hpp -------------------------------------------------------------------------------- /core/source-sdk/interfaces/c_model_render.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/OverflowTF2/HEAD/core/source-sdk/interfaces/c_model_render.hpp -------------------------------------------------------------------------------- /core/source-sdk/interfaces/c_net_channel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/OverflowTF2/HEAD/core/source-sdk/interfaces/c_net_channel.hpp -------------------------------------------------------------------------------- /core/source-sdk/interfaces/i_base_client_dll.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/OverflowTF2/HEAD/core/source-sdk/interfaces/i_base_client_dll.hpp -------------------------------------------------------------------------------- /core/source-sdk/interfaces/i_client_networkable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/OverflowTF2/HEAD/core/source-sdk/interfaces/i_client_networkable.hpp -------------------------------------------------------------------------------- /core/source-sdk/interfaces/i_engine_vgui.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/OverflowTF2/HEAD/core/source-sdk/interfaces/i_engine_vgui.hpp -------------------------------------------------------------------------------- /core/source-sdk/interfaces/i_entity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/OverflowTF2/HEAD/core/source-sdk/interfaces/i_entity.cpp -------------------------------------------------------------------------------- /core/source-sdk/interfaces/i_entity.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/OverflowTF2/HEAD/core/source-sdk/interfaces/i_entity.hpp -------------------------------------------------------------------------------- /core/source-sdk/interfaces/i_entity_list.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/OverflowTF2/HEAD/core/source-sdk/interfaces/i_entity_list.hpp -------------------------------------------------------------------------------- /core/source-sdk/interfaces/i_panels.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/OverflowTF2/HEAD/core/source-sdk/interfaces/i_panels.hpp -------------------------------------------------------------------------------- /core/source-sdk/interfaces/i_player_info_manager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/OverflowTF2/HEAD/core/source-sdk/interfaces/i_player_info_manager.hpp -------------------------------------------------------------------------------- /core/source-sdk/interfaces/i_surface.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/OverflowTF2/HEAD/core/source-sdk/interfaces/i_surface.hpp -------------------------------------------------------------------------------- /core/source-sdk/interfaces/iv_debug_overlay.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/OverflowTF2/HEAD/core/source-sdk/interfaces/iv_debug_overlay.hpp -------------------------------------------------------------------------------- /core/source-sdk/interfaces/iv_engine_client.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/OverflowTF2/HEAD/core/source-sdk/interfaces/iv_engine_client.hpp -------------------------------------------------------------------------------- /core/source-sdk/interfaces/iv_render_view.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/OverflowTF2/HEAD/core/source-sdk/interfaces/iv_render_view.hpp -------------------------------------------------------------------------------- /core/source-sdk/structs/enums.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/OverflowTF2/HEAD/core/source-sdk/structs/enums.hpp -------------------------------------------------------------------------------- /core/source-sdk/structs/structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/OverflowTF2/HEAD/core/source-sdk/structs/structs.hpp -------------------------------------------------------------------------------- /core/utils/color.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/OverflowTF2/HEAD/core/utils/color.hpp -------------------------------------------------------------------------------- /core/utils/draw/draw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/OverflowTF2/HEAD/core/utils/draw/draw.cpp -------------------------------------------------------------------------------- /core/utils/draw/draw.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/OverflowTF2/HEAD/core/utils/draw/draw.hpp -------------------------------------------------------------------------------- /core/utils/game/helpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/OverflowTF2/HEAD/core/utils/game/helpers.cpp -------------------------------------------------------------------------------- /core/utils/game/helpers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/OverflowTF2/HEAD/core/utils/game/helpers.hpp -------------------------------------------------------------------------------- /core/utils/math/math.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/OverflowTF2/HEAD/core/utils/math/math.cpp -------------------------------------------------------------------------------- /core/utils/math/math.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/OverflowTF2/HEAD/core/utils/math/math.hpp -------------------------------------------------------------------------------- /core/utils/math/vector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/OverflowTF2/HEAD/core/utils/math/vector.hpp -------------------------------------------------------------------------------- /core/utils/math/vmatrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/OverflowTF2/HEAD/core/utils/math/vmatrix.hpp -------------------------------------------------------------------------------- /core/utils/memory/memory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/OverflowTF2/HEAD/core/utils/memory/memory.hpp -------------------------------------------------------------------------------- /core/utils/netvars/dt_common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/OverflowTF2/HEAD/core/utils/netvars/dt_common.hpp -------------------------------------------------------------------------------- /core/utils/netvars/dt_recv.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/OverflowTF2/HEAD/core/utils/netvars/dt_recv.hpp -------------------------------------------------------------------------------- /core/utils/netvars/netvars.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/OverflowTF2/HEAD/core/utils/netvars/netvars.cpp -------------------------------------------------------------------------------- /core/utils/netvars/netvars.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/OverflowTF2/HEAD/core/utils/netvars/netvars.hpp -------------------------------------------------------------------------------- /core/utils/settings/settings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/OverflowTF2/HEAD/core/utils/settings/settings.cpp -------------------------------------------------------------------------------- /core/utils/settings/settings.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/OverflowTF2/HEAD/core/utils/settings/settings.hpp -------------------------------------------------------------------------------- /core/utils/utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/OverflowTF2/HEAD/core/utils/utils.hpp --------------------------------------------------------------------------------