├── .gitattributes ├── .gitignore ├── GMod-SDK.sln ├── GMod-SDK ├── GMod-SDK.vcxproj ├── GMod-SDK.vcxproj.filters ├── ImGui │ ├── imconfig.h │ ├── imgui.cpp │ ├── imgui.h │ ├── imgui_demo.cpp │ ├── imgui_draw.cpp │ ├── imgui_impl_dx9.cpp │ ├── imgui_impl_dx9.h │ ├── imgui_impl_win32.cpp │ ├── imgui_impl_win32.h │ ├── imgui_internal.h │ ├── imgui_widgets.cpp │ ├── imstb_rectpack.h │ ├── imstb_textedit.h │ └── imstb_truetype.h ├── Interface.h ├── Memory.cpp ├── Memory.h ├── NetVars.h ├── client │ ├── CBaseAnimating.h │ ├── CClientEntityList.h │ ├── CCollisionProperty.h │ ├── CHLClient.h │ ├── CInput.h │ ├── CInputSystem.h │ ├── CUniformRandomStream.h │ ├── CViewRender.h │ ├── CViewSetup.h │ ├── C_BaseCombatCharacter.h │ ├── C_BasePlayer.h │ ├── ClientClass.h │ ├── ClientModeShared.h │ ├── ConCommand.h │ ├── ConVar.h │ ├── IGameMovement.h │ ├── IPrediction.h │ ├── c_basecombatweapon.h │ └── usercmd.h ├── dllmain.cpp ├── engine │ ├── CEngineClient.h │ ├── CGameEventManager.h │ ├── CIVDebugOverlay.h │ ├── CMaterialSystem.h │ ├── CModelInfo.h │ ├── CModelRender.h │ ├── CNetChan.h │ ├── CVRenderView.h │ ├── IEngineTrace.h │ ├── IStudioRender.h │ ├── gametrace.h │ ├── iclientrenderable.h │ ├── imaterial.h │ ├── inetmessage.h │ ├── takedamageinfo.h │ ├── trace.h │ └── vmatrix.h ├── globals.hpp ├── hacks │ ├── AntiAim.h │ ├── AutoWall.h │ ├── ConVarSpoofing.h │ ├── ConfigSystem.h │ ├── ESP.h │ ├── Executor.h │ ├── GunHacks.h │ ├── LegitAim.h │ ├── Misc.h │ ├── Prediction.h │ ├── ScriptDumper.h │ ├── Triggerbot.h │ ├── Utils.h │ └── menu │ │ ├── Fonts.h │ │ ├── GUI.h │ │ ├── MenuBackground.h │ │ ├── MenuControls.h │ │ └── drawing.h ├── hooks │ ├── CreateMove.h │ ├── DrawModelExecute.h │ ├── FrameStageNotify.h │ ├── Paint.h │ ├── PaintTraverse.h │ ├── Present.h │ ├── ProcessGMODServerToClient.h │ ├── RenderView.h │ ├── RunCommand.h │ └── RunStringEx.h ├── json.h ├── lua_shared │ ├── CLuaConVars.h │ ├── CLuaInterface.h │ └── CLuaShared.h ├── mathlib │ ├── math_pfns.h │ └── mathlib.h ├── tier0 │ ├── Color.h │ ├── Vector.h │ ├── basetypes.h │ ├── platform.h │ ├── shareddefs.h │ └── soundinfo.h ├── tier1 │ ├── KeyValues.cpp │ ├── KeyValues.h │ ├── bitbuf.h │ ├── checksum_crc.h │ └── checksum_md5.h ├── vgui │ ├── ISurfaceV30.h │ └── VPanelWrapper.h ├── vguimatsurface │ └── CMatSystemSurface.h └── vphysics │ └── CPhysicsSurfaceProps.h ├── LICENSE └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaztoof/GMod-SDK/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaztoof/GMod-SDK/HEAD/.gitignore -------------------------------------------------------------------------------- /GMod-SDK.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaztoof/GMod-SDK/HEAD/GMod-SDK.sln -------------------------------------------------------------------------------- /GMod-SDK/GMod-SDK.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaztoof/GMod-SDK/HEAD/GMod-SDK/GMod-SDK.vcxproj -------------------------------------------------------------------------------- /GMod-SDK/GMod-SDK.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaztoof/GMod-SDK/HEAD/GMod-SDK/GMod-SDK.vcxproj.filters -------------------------------------------------------------------------------- /GMod-SDK/ImGui/imconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaztoof/GMod-SDK/HEAD/GMod-SDK/ImGui/imconfig.h -------------------------------------------------------------------------------- /GMod-SDK/ImGui/imgui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaztoof/GMod-SDK/HEAD/GMod-SDK/ImGui/imgui.cpp -------------------------------------------------------------------------------- /GMod-SDK/ImGui/imgui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaztoof/GMod-SDK/HEAD/GMod-SDK/ImGui/imgui.h -------------------------------------------------------------------------------- /GMod-SDK/ImGui/imgui_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaztoof/GMod-SDK/HEAD/GMod-SDK/ImGui/imgui_demo.cpp -------------------------------------------------------------------------------- /GMod-SDK/ImGui/imgui_draw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaztoof/GMod-SDK/HEAD/GMod-SDK/ImGui/imgui_draw.cpp -------------------------------------------------------------------------------- /GMod-SDK/ImGui/imgui_impl_dx9.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaztoof/GMod-SDK/HEAD/GMod-SDK/ImGui/imgui_impl_dx9.cpp -------------------------------------------------------------------------------- /GMod-SDK/ImGui/imgui_impl_dx9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaztoof/GMod-SDK/HEAD/GMod-SDK/ImGui/imgui_impl_dx9.h -------------------------------------------------------------------------------- /GMod-SDK/ImGui/imgui_impl_win32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaztoof/GMod-SDK/HEAD/GMod-SDK/ImGui/imgui_impl_win32.cpp -------------------------------------------------------------------------------- /GMod-SDK/ImGui/imgui_impl_win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaztoof/GMod-SDK/HEAD/GMod-SDK/ImGui/imgui_impl_win32.h -------------------------------------------------------------------------------- /GMod-SDK/ImGui/imgui_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaztoof/GMod-SDK/HEAD/GMod-SDK/ImGui/imgui_internal.h -------------------------------------------------------------------------------- /GMod-SDK/ImGui/imgui_widgets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaztoof/GMod-SDK/HEAD/GMod-SDK/ImGui/imgui_widgets.cpp -------------------------------------------------------------------------------- /GMod-SDK/ImGui/imstb_rectpack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaztoof/GMod-SDK/HEAD/GMod-SDK/ImGui/imstb_rectpack.h -------------------------------------------------------------------------------- /GMod-SDK/ImGui/imstb_textedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaztoof/GMod-SDK/HEAD/GMod-SDK/ImGui/imstb_textedit.h -------------------------------------------------------------------------------- /GMod-SDK/ImGui/imstb_truetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaztoof/GMod-SDK/HEAD/GMod-SDK/ImGui/imstb_truetype.h -------------------------------------------------------------------------------- /GMod-SDK/Interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaztoof/GMod-SDK/HEAD/GMod-SDK/Interface.h -------------------------------------------------------------------------------- /GMod-SDK/Memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaztoof/GMod-SDK/HEAD/GMod-SDK/Memory.cpp -------------------------------------------------------------------------------- /GMod-SDK/Memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaztoof/GMod-SDK/HEAD/GMod-SDK/Memory.h -------------------------------------------------------------------------------- /GMod-SDK/NetVars.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaztoof/GMod-SDK/HEAD/GMod-SDK/NetVars.h -------------------------------------------------------------------------------- /GMod-SDK/client/CBaseAnimating.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /GMod-SDK/client/CClientEntityList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaztoof/GMod-SDK/HEAD/GMod-SDK/client/CClientEntityList.h -------------------------------------------------------------------------------- /GMod-SDK/client/CCollisionProperty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaztoof/GMod-SDK/HEAD/GMod-SDK/client/CCollisionProperty.h -------------------------------------------------------------------------------- /GMod-SDK/client/CHLClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaztoof/GMod-SDK/HEAD/GMod-SDK/client/CHLClient.h -------------------------------------------------------------------------------- /GMod-SDK/client/CInput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaztoof/GMod-SDK/HEAD/GMod-SDK/client/CInput.h -------------------------------------------------------------------------------- /GMod-SDK/client/CInputSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaztoof/GMod-SDK/HEAD/GMod-SDK/client/CInputSystem.h -------------------------------------------------------------------------------- /GMod-SDK/client/CUniformRandomStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaztoof/GMod-SDK/HEAD/GMod-SDK/client/CUniformRandomStream.h -------------------------------------------------------------------------------- /GMod-SDK/client/CViewRender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaztoof/GMod-SDK/HEAD/GMod-SDK/client/CViewRender.h -------------------------------------------------------------------------------- /GMod-SDK/client/CViewSetup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaztoof/GMod-SDK/HEAD/GMod-SDK/client/CViewSetup.h -------------------------------------------------------------------------------- /GMod-SDK/client/C_BaseCombatCharacter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaztoof/GMod-SDK/HEAD/GMod-SDK/client/C_BaseCombatCharacter.h -------------------------------------------------------------------------------- /GMod-SDK/client/C_BasePlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaztoof/GMod-SDK/HEAD/GMod-SDK/client/C_BasePlayer.h -------------------------------------------------------------------------------- /GMod-SDK/client/ClientClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaztoof/GMod-SDK/HEAD/GMod-SDK/client/ClientClass.h -------------------------------------------------------------------------------- /GMod-SDK/client/ClientModeShared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaztoof/GMod-SDK/HEAD/GMod-SDK/client/ClientModeShared.h -------------------------------------------------------------------------------- /GMod-SDK/client/ConCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaztoof/GMod-SDK/HEAD/GMod-SDK/client/ConCommand.h -------------------------------------------------------------------------------- /GMod-SDK/client/ConVar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaztoof/GMod-SDK/HEAD/GMod-SDK/client/ConVar.h -------------------------------------------------------------------------------- /GMod-SDK/client/IGameMovement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaztoof/GMod-SDK/HEAD/GMod-SDK/client/IGameMovement.h -------------------------------------------------------------------------------- /GMod-SDK/client/IPrediction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaztoof/GMod-SDK/HEAD/GMod-SDK/client/IPrediction.h -------------------------------------------------------------------------------- /GMod-SDK/client/c_basecombatweapon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaztoof/GMod-SDK/HEAD/GMod-SDK/client/c_basecombatweapon.h -------------------------------------------------------------------------------- /GMod-SDK/client/usercmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaztoof/GMod-SDK/HEAD/GMod-SDK/client/usercmd.h -------------------------------------------------------------------------------- /GMod-SDK/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaztoof/GMod-SDK/HEAD/GMod-SDK/dllmain.cpp -------------------------------------------------------------------------------- /GMod-SDK/engine/CEngineClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaztoof/GMod-SDK/HEAD/GMod-SDK/engine/CEngineClient.h -------------------------------------------------------------------------------- /GMod-SDK/engine/CGameEventManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaztoof/GMod-SDK/HEAD/GMod-SDK/engine/CGameEventManager.h -------------------------------------------------------------------------------- /GMod-SDK/engine/CIVDebugOverlay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaztoof/GMod-SDK/HEAD/GMod-SDK/engine/CIVDebugOverlay.h -------------------------------------------------------------------------------- /GMod-SDK/engine/CMaterialSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaztoof/GMod-SDK/HEAD/GMod-SDK/engine/CMaterialSystem.h -------------------------------------------------------------------------------- /GMod-SDK/engine/CModelInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaztoof/GMod-SDK/HEAD/GMod-SDK/engine/CModelInfo.h -------------------------------------------------------------------------------- /GMod-SDK/engine/CModelRender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaztoof/GMod-SDK/HEAD/GMod-SDK/engine/CModelRender.h -------------------------------------------------------------------------------- /GMod-SDK/engine/CNetChan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaztoof/GMod-SDK/HEAD/GMod-SDK/engine/CNetChan.h -------------------------------------------------------------------------------- /GMod-SDK/engine/CVRenderView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaztoof/GMod-SDK/HEAD/GMod-SDK/engine/CVRenderView.h -------------------------------------------------------------------------------- /GMod-SDK/engine/IEngineTrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaztoof/GMod-SDK/HEAD/GMod-SDK/engine/IEngineTrace.h -------------------------------------------------------------------------------- /GMod-SDK/engine/IStudioRender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaztoof/GMod-SDK/HEAD/GMod-SDK/engine/IStudioRender.h -------------------------------------------------------------------------------- /GMod-SDK/engine/gametrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaztoof/GMod-SDK/HEAD/GMod-SDK/engine/gametrace.h -------------------------------------------------------------------------------- /GMod-SDK/engine/iclientrenderable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaztoof/GMod-SDK/HEAD/GMod-SDK/engine/iclientrenderable.h -------------------------------------------------------------------------------- /GMod-SDK/engine/imaterial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaztoof/GMod-SDK/HEAD/GMod-SDK/engine/imaterial.h -------------------------------------------------------------------------------- /GMod-SDK/engine/inetmessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaztoof/GMod-SDK/HEAD/GMod-SDK/engine/inetmessage.h -------------------------------------------------------------------------------- /GMod-SDK/engine/takedamageinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaztoof/GMod-SDK/HEAD/GMod-SDK/engine/takedamageinfo.h -------------------------------------------------------------------------------- /GMod-SDK/engine/trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaztoof/GMod-SDK/HEAD/GMod-SDK/engine/trace.h -------------------------------------------------------------------------------- /GMod-SDK/engine/vmatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaztoof/GMod-SDK/HEAD/GMod-SDK/engine/vmatrix.h -------------------------------------------------------------------------------- /GMod-SDK/globals.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaztoof/GMod-SDK/HEAD/GMod-SDK/globals.hpp -------------------------------------------------------------------------------- /GMod-SDK/hacks/AntiAim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaztoof/GMod-SDK/HEAD/GMod-SDK/hacks/AntiAim.h -------------------------------------------------------------------------------- /GMod-SDK/hacks/AutoWall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaztoof/GMod-SDK/HEAD/GMod-SDK/hacks/AutoWall.h -------------------------------------------------------------------------------- /GMod-SDK/hacks/ConVarSpoofing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaztoof/GMod-SDK/HEAD/GMod-SDK/hacks/ConVarSpoofing.h -------------------------------------------------------------------------------- /GMod-SDK/hacks/ConfigSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaztoof/GMod-SDK/HEAD/GMod-SDK/hacks/ConfigSystem.h -------------------------------------------------------------------------------- /GMod-SDK/hacks/ESP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaztoof/GMod-SDK/HEAD/GMod-SDK/hacks/ESP.h -------------------------------------------------------------------------------- /GMod-SDK/hacks/Executor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaztoof/GMod-SDK/HEAD/GMod-SDK/hacks/Executor.h -------------------------------------------------------------------------------- /GMod-SDK/hacks/GunHacks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaztoof/GMod-SDK/HEAD/GMod-SDK/hacks/GunHacks.h -------------------------------------------------------------------------------- /GMod-SDK/hacks/LegitAim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaztoof/GMod-SDK/HEAD/GMod-SDK/hacks/LegitAim.h -------------------------------------------------------------------------------- /GMod-SDK/hacks/Misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaztoof/GMod-SDK/HEAD/GMod-SDK/hacks/Misc.h -------------------------------------------------------------------------------- /GMod-SDK/hacks/Prediction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaztoof/GMod-SDK/HEAD/GMod-SDK/hacks/Prediction.h -------------------------------------------------------------------------------- /GMod-SDK/hacks/ScriptDumper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaztoof/GMod-SDK/HEAD/GMod-SDK/hacks/ScriptDumper.h -------------------------------------------------------------------------------- /GMod-SDK/hacks/Triggerbot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaztoof/GMod-SDK/HEAD/GMod-SDK/hacks/Triggerbot.h -------------------------------------------------------------------------------- /GMod-SDK/hacks/Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaztoof/GMod-SDK/HEAD/GMod-SDK/hacks/Utils.h -------------------------------------------------------------------------------- /GMod-SDK/hacks/menu/Fonts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaztoof/GMod-SDK/HEAD/GMod-SDK/hacks/menu/Fonts.h -------------------------------------------------------------------------------- /GMod-SDK/hacks/menu/GUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaztoof/GMod-SDK/HEAD/GMod-SDK/hacks/menu/GUI.h -------------------------------------------------------------------------------- /GMod-SDK/hacks/menu/MenuBackground.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaztoof/GMod-SDK/HEAD/GMod-SDK/hacks/menu/MenuBackground.h -------------------------------------------------------------------------------- /GMod-SDK/hacks/menu/MenuControls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaztoof/GMod-SDK/HEAD/GMod-SDK/hacks/menu/MenuControls.h -------------------------------------------------------------------------------- /GMod-SDK/hacks/menu/drawing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaztoof/GMod-SDK/HEAD/GMod-SDK/hacks/menu/drawing.h -------------------------------------------------------------------------------- /GMod-SDK/hooks/CreateMove.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaztoof/GMod-SDK/HEAD/GMod-SDK/hooks/CreateMove.h -------------------------------------------------------------------------------- /GMod-SDK/hooks/DrawModelExecute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaztoof/GMod-SDK/HEAD/GMod-SDK/hooks/DrawModelExecute.h -------------------------------------------------------------------------------- /GMod-SDK/hooks/FrameStageNotify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaztoof/GMod-SDK/HEAD/GMod-SDK/hooks/FrameStageNotify.h -------------------------------------------------------------------------------- /GMod-SDK/hooks/Paint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaztoof/GMod-SDK/HEAD/GMod-SDK/hooks/Paint.h -------------------------------------------------------------------------------- /GMod-SDK/hooks/PaintTraverse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaztoof/GMod-SDK/HEAD/GMod-SDK/hooks/PaintTraverse.h -------------------------------------------------------------------------------- /GMod-SDK/hooks/Present.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaztoof/GMod-SDK/HEAD/GMod-SDK/hooks/Present.h -------------------------------------------------------------------------------- /GMod-SDK/hooks/ProcessGMODServerToClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaztoof/GMod-SDK/HEAD/GMod-SDK/hooks/ProcessGMODServerToClient.h -------------------------------------------------------------------------------- /GMod-SDK/hooks/RenderView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaztoof/GMod-SDK/HEAD/GMod-SDK/hooks/RenderView.h -------------------------------------------------------------------------------- /GMod-SDK/hooks/RunCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaztoof/GMod-SDK/HEAD/GMod-SDK/hooks/RunCommand.h -------------------------------------------------------------------------------- /GMod-SDK/hooks/RunStringEx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaztoof/GMod-SDK/HEAD/GMod-SDK/hooks/RunStringEx.h -------------------------------------------------------------------------------- /GMod-SDK/json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaztoof/GMod-SDK/HEAD/GMod-SDK/json.h -------------------------------------------------------------------------------- /GMod-SDK/lua_shared/CLuaConVars.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaztoof/GMod-SDK/HEAD/GMod-SDK/lua_shared/CLuaConVars.h -------------------------------------------------------------------------------- /GMod-SDK/lua_shared/CLuaInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaztoof/GMod-SDK/HEAD/GMod-SDK/lua_shared/CLuaInterface.h -------------------------------------------------------------------------------- /GMod-SDK/lua_shared/CLuaShared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaztoof/GMod-SDK/HEAD/GMod-SDK/lua_shared/CLuaShared.h -------------------------------------------------------------------------------- /GMod-SDK/mathlib/math_pfns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaztoof/GMod-SDK/HEAD/GMod-SDK/mathlib/math_pfns.h -------------------------------------------------------------------------------- /GMod-SDK/mathlib/mathlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaztoof/GMod-SDK/HEAD/GMod-SDK/mathlib/mathlib.h -------------------------------------------------------------------------------- /GMod-SDK/tier0/Color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaztoof/GMod-SDK/HEAD/GMod-SDK/tier0/Color.h -------------------------------------------------------------------------------- /GMod-SDK/tier0/Vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaztoof/GMod-SDK/HEAD/GMod-SDK/tier0/Vector.h -------------------------------------------------------------------------------- /GMod-SDK/tier0/basetypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaztoof/GMod-SDK/HEAD/GMod-SDK/tier0/basetypes.h -------------------------------------------------------------------------------- /GMod-SDK/tier0/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaztoof/GMod-SDK/HEAD/GMod-SDK/tier0/platform.h -------------------------------------------------------------------------------- /GMod-SDK/tier0/shareddefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaztoof/GMod-SDK/HEAD/GMod-SDK/tier0/shareddefs.h -------------------------------------------------------------------------------- /GMod-SDK/tier0/soundinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaztoof/GMod-SDK/HEAD/GMod-SDK/tier0/soundinfo.h -------------------------------------------------------------------------------- /GMod-SDK/tier1/KeyValues.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaztoof/GMod-SDK/HEAD/GMod-SDK/tier1/KeyValues.cpp -------------------------------------------------------------------------------- /GMod-SDK/tier1/KeyValues.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /GMod-SDK/tier1/bitbuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaztoof/GMod-SDK/HEAD/GMod-SDK/tier1/bitbuf.h -------------------------------------------------------------------------------- /GMod-SDK/tier1/checksum_crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaztoof/GMod-SDK/HEAD/GMod-SDK/tier1/checksum_crc.h -------------------------------------------------------------------------------- /GMod-SDK/tier1/checksum_md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaztoof/GMod-SDK/HEAD/GMod-SDK/tier1/checksum_md5.h -------------------------------------------------------------------------------- /GMod-SDK/vgui/ISurfaceV30.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaztoof/GMod-SDK/HEAD/GMod-SDK/vgui/ISurfaceV30.h -------------------------------------------------------------------------------- /GMod-SDK/vgui/VPanelWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaztoof/GMod-SDK/HEAD/GMod-SDK/vgui/VPanelWrapper.h -------------------------------------------------------------------------------- /GMod-SDK/vguimatsurface/CMatSystemSurface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaztoof/GMod-SDK/HEAD/GMod-SDK/vguimatsurface/CMatSystemSurface.h -------------------------------------------------------------------------------- /GMod-SDK/vphysics/CPhysicsSurfaceProps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaztoof/GMod-SDK/HEAD/GMod-SDK/vphysics/CPhysicsSurfaceProps.h -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaztoof/GMod-SDK/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gaztoof/GMod-SDK/HEAD/README.md --------------------------------------------------------------------------------