├── .clang-format ├── .editorconfig ├── .gitattributes ├── .gitignore ├── .gitmodules ├── .travis.yml ├── CMakeLists.txt ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── CREDITS.md ├── LICENSE ├── README.md ├── appveyor.yml ├── cmake └── Modules │ └── FindSDL2.cmake ├── dep └── CMakeLists.txt ├── docs ├── 3dfx_glq.txt ├── ClProtocolParse.txt ├── MetamodSupport.txt ├── OGSLogo1280x512.png ├── OGSLogo1920x1080.png ├── OGSLogo1920x512.png ├── OGSLogo512x512.png ├── TODO.md ├── cmdlist.txt ├── cmds.txt ├── docs.txt ├── docs │ ├── INSTALL │ ├── INSTALL.Quake │ ├── INSTALL.Quake2 │ ├── README │ ├── README.X11 │ ├── data │ │ ├── COMEXP.TXT │ │ ├── HELP.TXT │ │ ├── LICINFO.TXT │ │ ├── MANUAL.TXT │ │ ├── ORDER.TXT │ │ ├── README.TXT │ │ ├── RLICNSE.TXT │ │ ├── SLICNSE.TXT │ │ └── TECHINFO.TXT │ ├── readme.glquake │ └── readme.squake ├── hltvmodules.txt ├── joystick.txt ├── joystick_glq.txt ├── memory.txt ├── module_exports.txt ├── move.txt ├── newnet.txt ├── notes.txt ├── qw2do.txt ├── qwchangelog.txt ├── qwcl-readme.txt ├── qwrlnote.txt ├── readme.qwcl ├── readme_glq.txt ├── rehlds_sync.txt └── vstdlib6153exports.txt ├── format.sh ├── msvc ├── OGS-shared.sln └── OGS.sln ├── ogs ├── CMakeLists.txt ├── cl_dll │ ├── CMakeLists.txt │ ├── client │ │ ├── Exports.h │ │ ├── GameStudioModelRenderer.cpp │ │ ├── GameStudioModelRenderer.h │ │ ├── GameStudioModelRenderer_Sample.cpp │ │ ├── GameStudioModelRenderer_Sample.h │ │ ├── StudioModelRenderer.cpp │ │ ├── StudioModelRenderer.h │ │ ├── cdll_int.cpp │ │ ├── cl_dll.h │ │ ├── cl_util.h │ │ ├── com_weapons.cpp │ │ ├── com_weapons.h │ │ ├── demo.cpp │ │ ├── demo.h │ │ ├── entity.cpp │ │ ├── eventscripts.h │ │ ├── global_consts.h │ │ ├── hl │ │ │ ├── hl_baseentity.cpp │ │ │ ├── hl_events.cpp │ │ │ └── hl_weapons.cpp │ │ ├── hud.cpp │ │ ├── hud.h │ │ ├── hud_bench.cpp │ │ ├── hud_benchtrace.cpp │ │ ├── hud_iface.h │ │ ├── hud_servers.cpp │ │ ├── hud_servers.h │ │ ├── hud_servers_priv.h │ │ ├── hud_spectator.cpp │ │ ├── in_camera.cpp │ │ ├── in_defs.h │ │ ├── input.cpp │ │ ├── inputw32.cpp │ │ ├── interpolation.cpp │ │ ├── interpolation.h │ │ ├── kbutton.h │ │ ├── menu.cpp │ │ ├── player_info.h │ │ ├── saytext.cpp │ │ ├── soundsystem.cpp │ │ ├── studio_util.cpp │ │ ├── studio_util.h │ │ ├── text_message.cpp │ │ ├── tf_defs.h │ │ ├── tri.cpp │ │ ├── tri.h │ │ ├── util.cpp │ │ ├── util_vector.h │ │ ├── vgui_int.cpp │ │ ├── vgui_int.h │ │ ├── view.cpp │ │ └── view.h │ └── null │ │ └── ClientDLLFuncsNull.cpp ├── common │ ├── BaseSystemModule.cpp │ ├── BaseSystemModule.h │ ├── CMakeLists.txt │ ├── FactorySharedLib.hpp │ ├── ObjectContainer.cpp │ ├── ObjectContainer.h │ ├── ObjectDictionary.cpp │ ├── ObjectDictionary.h │ ├── ObjectList.cpp │ ├── ObjectList.h │ ├── SteamAppStartUp.cpp │ ├── SteamAppStartUp.h │ ├── TextConsoleUnix.cpp │ ├── TextConsoleUnix.h │ ├── TextConsoleWin32.cpp │ ├── TextConsoleWin32.h │ ├── TokenLine.cpp │ ├── TokenLine.h │ ├── maintypes.h │ ├── mathlib_local.hpp │ ├── netapi.cpp │ ├── netapi.h │ ├── stdc++compat.cpp │ ├── textconsole.cpp │ └── textconsole.h ├── dbg │ ├── CMakeLists.txt │ ├── dbg.cpp │ └── msvc │ │ ├── dbg.vcxproj │ │ └── dbg.vcxproj.filters ├── dedicated-legacy │ ├── Makefile │ ├── conproc.cpp │ ├── conproc.hpp │ ├── dedicated.hpp │ ├── dedicated.rc │ ├── engine.cpp │ ├── enginecallback.hpp │ ├── exports.hpp │ ├── msvc │ │ ├── Dedicated.dsp │ │ ├── Dedicated.vcxproj │ │ ├── Dedicated.vcxproj.filters │ │ ├── Dedicated2.dsp │ │ ├── msvc7 │ │ │ └── Dedicated.vcproj │ │ └── msvc8 │ │ │ └── Dedicated.vcproj │ ├── resource.hpp │ ├── sys_ded.cpp │ └── sys_ded.hpp ├── dedicated │ ├── CMakeLists.txt │ ├── dedicated.rc │ ├── icon.ico │ ├── msvc │ │ ├── PostBuild.bat │ │ ├── dedicated.sln │ │ ├── dedicated.vcxproj │ │ ├── dedicated.vcxproj.filters │ │ └── resource.h │ ├── src │ │ ├── commandline.cpp │ │ ├── conproc.cpp │ │ ├── conproc.h │ │ ├── dedicated.h │ │ ├── dedicated_exports.cpp │ │ ├── icommandline.h │ │ ├── isys.h │ │ ├── precompiled.cpp │ │ ├── precompiled.h │ │ ├── sys_ded.cpp │ │ ├── sys_ded.h │ │ ├── sys_linux.cpp │ │ ├── sys_window.cpp │ │ └── vgui │ │ │ ├── vguihelpers.cpp │ │ │ └── vguihelpers.h │ └── unused │ │ └── dedicated.ico ├── dlls │ ├── CMakeLists.txt │ ├── cstrike │ │ ├── weapontype.cpp │ │ └── weapontype.h │ ├── null │ │ ├── GameDLLFuncsNull.cpp │ │ └── NewGameDLLFuncsNull.cpp │ └── server │ │ ├── Export.cpp │ │ ├── GameDLL.cpp │ │ ├── ServerGameDLL.cpp │ │ ├── Wxdebug.cpp │ │ ├── cbase.h │ │ ├── client.cpp │ │ ├── client.h │ │ ├── enginecallback.h │ │ ├── extdll.h │ │ ├── game.cpp │ │ ├── game.h │ │ ├── util.cpp │ │ ├── util.h │ │ └── wxdebug.h ├── engine │ ├── CMakeLists.txt │ ├── ac96 │ │ ├── BuildInfoConfig.in │ │ ├── CMakeLists.txt │ │ ├── client │ │ │ ├── cdll_exp.cpp │ │ │ ├── cdll_exp.h │ │ │ ├── cdll_int.cpp │ │ │ ├── cl_demo.cpp │ │ │ ├── cl_demo.hpp │ │ │ ├── cl_main.cpp │ │ │ ├── cl_main.h │ │ │ ├── cl_parse.cpp │ │ │ ├── cl_parse.h │ │ │ ├── cl_voice.cpp │ │ │ ├── clengfuncs.cpp │ │ │ ├── client.hpp │ │ │ ├── clientdll.hpp │ │ │ ├── clienttypes.hpp │ │ │ ├── frame.hpp │ │ │ ├── textmessage.cpp │ │ │ └── textmessage.hpp │ │ ├── console │ │ │ ├── cbuf.cpp │ │ │ ├── cbuf.hpp │ │ │ ├── cmd.cpp │ │ │ ├── cmd.hpp │ │ │ ├── console.cpp │ │ │ ├── console.hpp │ │ │ ├── cvar.cpp │ │ │ └── cvar.hpp │ │ ├── engine_pch.hpp │ │ ├── filesystem │ │ │ ├── filesystem.cpp │ │ │ ├── filesystem_.hpp │ │ │ ├── filesystem_internal.cpp │ │ │ ├── filesystem_internal.hpp │ │ │ ├── hashpak.cpp │ │ │ ├── hashpak.hpp │ │ │ ├── wad.cpp │ │ │ └── wad.hpp │ │ ├── graphics │ │ │ ├── RendererManager.cpp │ │ │ ├── RendererManager.hpp │ │ │ ├── VideoMode.hpp │ │ │ ├── screen.cpp │ │ │ ├── screen.hpp │ │ │ ├── spriteapi.cpp │ │ │ ├── spriteapi.hpp │ │ │ ├── triapi.cpp │ │ │ ├── vid.cpp │ │ │ ├── vid.hpp │ │ │ ├── vid_shared.cpp │ │ │ ├── view.cpp │ │ │ └── view.hpp │ │ ├── hdrfix.cpp │ │ ├── impl │ │ │ ├── CMakeLists.txt │ │ │ ├── external │ │ │ │ └── CMakeLists.txt │ │ │ ├── native │ │ │ │ ├── linux │ │ │ │ │ ├── cd_linux.cpp │ │ │ │ │ ├── cd_linux2.cpp │ │ │ │ │ ├── cd_linux3.cpp │ │ │ │ │ ├── gl_vidlinux.cpp │ │ │ │ │ ├── gl_vidlinux2.cpp │ │ │ │ │ ├── gl_vidlinux3.cpp │ │ │ │ │ ├── gl_vidlinux_svga.cpp │ │ │ │ │ ├── gl_vidlinux_svga2.cpp │ │ │ │ │ ├── gl_vidlinux_x11.cpp │ │ │ │ │ ├── gl_vidlinuxglx.cpp │ │ │ │ │ ├── gl_vidlinuxglx2.cpp │ │ │ │ │ ├── in_linux.cpp │ │ │ │ │ ├── net_udp.cpp │ │ │ │ │ ├── net_udp2.cpp │ │ │ │ │ ├── sys_linux.cpp │ │ │ │ │ ├── sys_linux2.cpp │ │ │ │ │ ├── sys_linux3.cpp │ │ │ │ │ ├── sys_linuxwind.cpp │ │ │ │ │ ├── sys_linuxwind.hpp │ │ │ │ │ ├── vid_so.cpp │ │ │ │ │ ├── vid_x.cpp │ │ │ │ │ ├── vid_x2.cpp │ │ │ │ │ └── vid_x3.cpp │ │ │ │ ├── video │ │ │ │ │ ├── vid_dos.hpp │ │ │ │ │ ├── vid_ext.cpp │ │ │ │ │ ├── vid_sunx.cpp │ │ │ │ │ ├── vid_sunxil.cpp │ │ │ │ │ ├── vid_svgalib.cpp │ │ │ │ │ ├── vid_svgalib2.cpp │ │ │ │ │ ├── vid_svgalib3.cpp │ │ │ │ │ └── vid_vga.cpp │ │ │ │ └── win │ │ │ │ │ ├── cd_win.cpp │ │ │ │ │ ├── cd_win2.cpp │ │ │ │ │ ├── in_win.cpp │ │ │ │ │ ├── in_win2.cpp │ │ │ │ │ ├── in_win3.cpp │ │ │ │ │ ├── net_wins.cpp │ │ │ │ │ ├── net_wins2.cpp │ │ │ │ │ ├── sys_win.cpp │ │ │ │ │ ├── sys_win2.cpp │ │ │ │ │ ├── sys_win3.cpp │ │ │ │ │ ├── sys_wind3.cpp │ │ │ │ │ ├── sys_winqwsv.c │ │ │ │ │ ├── vid_dll.cpp │ │ │ │ │ ├── vid_win.cpp │ │ │ │ │ ├── vid_win3.cpp │ │ │ │ │ ├── window.cpp │ │ │ │ │ └── winquake.hpp │ │ │ ├── null │ │ │ │ ├── cd_null.cpp │ │ │ │ ├── cl_null.cpp │ │ │ │ ├── clientdll_null.cpp │ │ │ │ ├── in_null.cpp │ │ │ │ ├── keys_null.cpp │ │ │ │ ├── screen_null.cpp │ │ │ │ ├── sv_null.cpp │ │ │ │ ├── sys_null.cpp │ │ │ │ ├── sys_null2.cpp │ │ │ │ └── vid_null.cpp │ │ │ └── sdl │ │ │ │ ├── snd_sdl.cpp │ │ │ │ └── sys_sdlwind.cpp │ │ ├── input │ │ │ ├── input.hpp │ │ │ ├── keys.cpp │ │ │ └── keys.hpp │ │ ├── math │ │ │ ├── crc.cpp │ │ │ ├── mathlib.cpp │ │ │ ├── mathlib_e.hpp │ │ │ ├── md5.cpp │ │ │ ├── sse_mathfun.cpp │ │ │ └── sse_mathfun.hpp │ │ ├── memory │ │ │ ├── cache.cpp │ │ │ ├── hunk.cpp │ │ │ ├── mem.cpp │ │ │ ├── mem.hpp │ │ │ ├── zone.cpp │ │ │ └── zone.hpp │ │ ├── msvc │ │ │ ├── engine.vcxproj │ │ │ └── engine.vcxproj.filters │ │ ├── network │ │ │ ├── bf_read.hpp │ │ │ ├── bf_write.hpp │ │ │ ├── delta.cpp │ │ │ ├── delta.hpp │ │ │ ├── delta_jit.cpp │ │ │ ├── delta_jit.hpp │ │ │ ├── delta_packet.hpp │ │ │ ├── filter.hpp │ │ │ ├── ipratelimit.cpp │ │ │ ├── ipratelimit.hpp │ │ │ ├── ipratelimitWrapper.cpp │ │ │ ├── ipratelimitWrapper.hpp │ │ │ ├── net.hpp │ │ │ ├── net_api.cpp │ │ │ ├── net_chan.cpp │ │ │ ├── net_chan.hpp │ │ │ ├── net_msg.cpp │ │ │ ├── net_msg.hpp │ │ │ ├── net_ws.cpp │ │ │ ├── networktypes.hpp │ │ │ ├── protocol.hpp │ │ │ └── usermsg.hpp │ │ ├── physics │ │ │ ├── pmove.cpp │ │ │ ├── pmove.hpp │ │ │ ├── pmovetst.cpp │ │ │ ├── pmovetst.hpp │ │ │ ├── sv_move.cpp │ │ │ ├── sv_move.hpp │ │ │ ├── sv_phys.cpp │ │ │ ├── sv_phys.hpp │ │ │ ├── sv_pmove.cpp │ │ │ ├── sv_pmove.hpp │ │ │ ├── world.cpp │ │ │ └── world.hpp │ │ ├── precompiled.cpp │ │ ├── precompiled.hpp │ │ ├── progs │ │ │ ├── pr_cmds.cpp │ │ │ ├── pr_cmds.hpp │ │ │ ├── pr_dlls.hpp │ │ │ ├── pr_edict.cpp │ │ │ └── pr_edict.hpp │ │ ├── resources │ │ │ ├── DetailTexture.cpp │ │ │ ├── DetailTexture.h │ │ │ ├── cmodel.cpp │ │ │ ├── cmodel.hpp │ │ │ ├── com_custom.cpp │ │ │ ├── consistency.hpp │ │ │ ├── czmodelcheck.cpp │ │ │ ├── decal.hpp │ │ │ ├── decals.cpp │ │ │ ├── l_studio.cpp │ │ │ ├── l_studio.hpp │ │ │ ├── model.cpp │ │ │ ├── model_rehlds.hpp │ │ │ ├── modinfo.cpp │ │ │ ├── modinfo.hpp │ │ │ ├── studio.cpp │ │ │ ├── studio_rehlds.hpp │ │ │ ├── textures.cpp │ │ │ └── textures.hpp │ │ ├── scene │ │ │ ├── chase.cpp │ │ │ ├── chase.hpp │ │ │ ├── cl_cam.cpp │ │ │ ├── cl_ents.cpp │ │ │ ├── cl_ents.h │ │ │ ├── cl_events.cpp │ │ │ ├── cl_pred.cpp │ │ │ ├── cl_pred.h │ │ │ ├── cl_tent.cpp │ │ │ ├── cl_tent.h │ │ │ ├── ed_strpool.cpp │ │ │ ├── ed_strpool.hpp │ │ │ ├── efx_api.cpp │ │ │ ├── event.hpp │ │ │ ├── eventapi.cpp │ │ │ ├── eventapi.hpp │ │ │ └── inst_baseline.hpp │ │ ├── script │ │ │ └── Sequence.cpp │ │ ├── server │ │ │ ├── server.hpp │ │ │ ├── server_static.hpp │ │ │ ├── servertypes.hpp │ │ │ ├── sv_log.cpp │ │ │ ├── sv_log.hpp │ │ │ ├── sv_main.cpp │ │ │ ├── sv_remoteaccess.cpp │ │ │ ├── sv_remoteaccess.hpp │ │ │ ├── sv_secure.cpp │ │ │ ├── sv_secure.hpp │ │ │ ├── sv_steam3.cpp │ │ │ ├── sv_steam3.hpp │ │ │ ├── sv_upld.cpp │ │ │ ├── sv_upld.hpp │ │ │ ├── sv_user.cpp │ │ │ └── sv_user.hpp │ │ ├── sound │ │ │ ├── Sound.cpp │ │ │ ├── SoundProvider.cpp │ │ │ ├── SoundProvider.hpp │ │ │ ├── cdaudio.hpp │ │ │ ├── sound.hpp │ │ │ └── soundfade.hpp │ │ ├── system │ │ │ ├── DemoPlayerWrapper.cpp │ │ │ ├── DemoPlayerWrapper.hpp │ │ │ ├── LoadBlob.cpp │ │ │ ├── LoadBlob.hpp │ │ │ ├── SystemWrapper.cpp │ │ │ ├── SystemWrapper.hpp │ │ │ ├── buildinfo.cpp │ │ │ ├── buildinfo.hpp │ │ │ ├── byteorder.cpp │ │ │ ├── common.cpp │ │ │ ├── common.hpp │ │ │ ├── crt_local.cpp │ │ │ ├── dedicatedserverapi.cpp │ │ │ ├── dedicatedserverapi.hpp │ │ │ ├── demoapi.cpp │ │ │ ├── engfuncs.cpp │ │ │ ├── engine.cpp │ │ │ ├── engine.hpp │ │ │ ├── engineapi.cpp │ │ │ ├── engineapi.hpp │ │ │ ├── gamedllloader.cpp │ │ │ ├── host.cpp │ │ │ ├── host.hpp │ │ │ ├── host_cmd.cpp │ │ │ ├── host_cmd.hpp │ │ │ ├── iengine.hpp │ │ │ ├── igame.hpp │ │ │ ├── info.cpp │ │ │ ├── info.hpp │ │ │ ├── module.cpp │ │ │ ├── sizebuf.cpp │ │ │ ├── sizebuf.hpp │ │ │ ├── system.cpp │ │ │ ├── system.hpp │ │ │ ├── systemtypes.hpp │ │ │ ├── traceinit.cpp │ │ │ ├── traceinit.h │ │ │ ├── unicode_strtools.cpp │ │ │ └── unicode_strtools.h │ │ ├── ui │ │ │ ├── VGUI_EngineSurfaceWrap.cpp │ │ │ ├── VGUI_EngineSurfaceWrap.hpp │ │ │ ├── tutor.cpp │ │ │ ├── tutor.hpp │ │ │ ├── vgui_EngineSurface.cpp │ │ │ ├── vgui_EngineSurface.hpp │ │ │ ├── vgui_EngineSurfaceHW.cpp │ │ │ ├── vgui_EngineSurfaceWin32.cpp │ │ │ ├── vgui_int.cpp │ │ │ ├── vgui_int.hpp │ │ │ ├── vgui_intwrap.cpp │ │ │ ├── vgui_intwrap2.cpp │ │ │ └── vguiwrap2.cpp │ │ ├── vgui2 │ │ │ ├── BasePanel.hpp │ │ │ ├── BaseUISurface.cpp │ │ │ ├── BaseUISurface.hpp │ │ │ ├── BaseUI_Interface.cpp │ │ │ ├── BaseUI_Interface.hpp │ │ │ ├── FontTextureCache.cpp │ │ │ ├── FontTextureCache.hpp │ │ │ ├── IMouseControl.h │ │ │ ├── text_draw.cpp │ │ │ └── text_draw.hpp │ │ └── voice │ │ │ ├── voice.cpp │ │ │ ├── voice.hpp │ │ │ ├── voiceserver.cpp │ │ │ ├── voiceserver.hpp │ │ │ ├── voicetweak.cpp │ │ │ └── voicetweak.hpp │ ├── null │ │ ├── CMakeLists.txt │ │ ├── dedicatedserverapi.cpp │ │ ├── dedicatedserverapi.hpp │ │ ├── engineapi.cpp │ │ └── engineapi.hpp │ └── rw17 │ │ ├── BuildInfoConfig.in │ │ ├── CMakeLists.txt │ │ ├── console │ │ ├── CmdBuffer.cpp │ │ ├── CmdBuffer.hpp │ │ ├── CmdBufferNew.cpp │ │ ├── ConCmd.cpp │ │ ├── ConCmd.hpp │ │ ├── ConCmdArgs.cpp │ │ ├── ConCmdArgs.hpp │ │ ├── ConCmdHandler.cpp │ │ ├── ConCmdHandler.hpp │ │ ├── ConCmdSystem.cpp │ │ ├── ConCmdSystem.hpp │ │ ├── ConVar.cpp │ │ ├── ConVar.hpp │ │ ├── ConVarHandler.cpp │ │ ├── ConVarHandler.hpp │ │ ├── ConVarSystem.cpp │ │ ├── ConVarSystem.hpp │ │ ├── Console.cpp │ │ ├── Console.hpp │ │ ├── IConCmdSystem.hpp │ │ ├── IConVarSystem.hpp │ │ ├── LegacyExports.cpp │ │ ├── LegacyExports.hpp │ │ ├── cbuf.cpp │ │ ├── cmd.cpp │ │ ├── cmd.hpp │ │ ├── console2.cpp │ │ ├── cvar.cpp │ │ └── cvar.hpp │ │ ├── engine_pch.hpp │ │ ├── filesystem │ │ ├── File.cpp │ │ ├── File.hpp │ │ ├── FileSystem.cpp │ │ ├── FileSystem.hpp │ │ ├── FileSystemProvider.cpp │ │ ├── FileSystemProvider.hpp │ │ ├── HaskPak.cpp │ │ ├── HaskPak.hpp │ │ ├── Wad.cpp │ │ └── Wad.hpp │ │ ├── game │ │ ├── ClEngFuncs.cpp │ │ ├── ClientEngineFuncs.hpp │ │ ├── ClientEngineFuncsMGT.cpp │ │ ├── ClientEngineFuncsOldMGT.cpp │ │ ├── ClientLoaderHandler.cpp │ │ ├── ClientLoaderHandler.hpp │ │ ├── EngFuncs.cpp │ │ ├── EngFuncs.hpp │ │ ├── EngineFuncsLegacy.cpp │ │ ├── EngineFuncsLegacy.hpp │ │ ├── EventListener_Game.cpp │ │ ├── EventListener_Game.hpp │ │ ├── GameClient.cpp │ │ ├── GameClient.hpp │ │ ├── GameHandler.cpp │ │ ├── GameHandler.hpp │ │ ├── GameLoader.cpp │ │ ├── GameLoaderHandler.cpp │ │ ├── GameLoaderHandler.hpp │ │ ├── GameServer.cpp │ │ ├── GameServer.hpp │ │ ├── IClientLoader.hpp │ │ ├── IGameLoader.hpp │ │ ├── ILegacyGame.hpp │ │ ├── LegacyClientDLL.cpp │ │ ├── LegacyClientDLL.hpp │ │ ├── LegacyClientPlayerMovement.cpp │ │ ├── LegacyClientPlayerMovement.hpp │ │ ├── LegacyEventListener.cpp │ │ ├── LegacyEventListener.hpp │ │ ├── LegacyGame.cpp │ │ ├── LegacyGame.hpp │ │ ├── LegacyGameClientListener.cpp │ │ ├── LegacyGameClientListener.hpp │ │ ├── LegacyGameLoader.cpp │ │ ├── LegacyGameLoader.hpp │ │ ├── LegacyGamePlayerMovement.cpp │ │ ├── LegacyGamePlayerMovement.hpp │ │ ├── LegacyGameSpectatorListener.cpp │ │ ├── LegacyGameSpectatorListener.hpp │ │ ├── NativeClientLoader.cpp │ │ ├── NativeClientLoader.hpp │ │ ├── NativeGameLoader.cpp │ │ ├── NativeGameLoader.hpp │ │ ├── NewDLLFuncsStub.cpp │ │ ├── NewDLLFuncsStub.hpp │ │ └── ServerStatic.hpp │ │ ├── graphics │ │ ├── ConsoleDrawer.cpp │ │ ├── ConsoleDrawer.hpp │ │ ├── RenderProvider.cpp │ │ ├── RenderProvider.hpp │ │ ├── RendererManager.cpp │ │ ├── RendererManager.hpp │ │ ├── Screen-old.cpp │ │ ├── Screen.cpp │ │ ├── Screen.hpp │ │ ├── SpriteAPI.cpp │ │ ├── SpriteAPI.hpp │ │ ├── TriAPI.cpp │ │ ├── Video.cpp │ │ ├── Video.hpp │ │ ├── View.cpp │ │ ├── View.hpp │ │ ├── vid.cpp │ │ ├── vid.hpp │ │ └── vid_shared.cpp │ │ ├── impl │ │ ├── CMakeLists.txt │ │ ├── Window.hpp │ │ ├── WindowWin.hpp │ │ ├── WindowX11.hpp │ │ ├── null │ │ │ ├── cd_null.cpp │ │ │ ├── cl_null.cpp │ │ │ ├── clientdll_null.cpp │ │ │ ├── in_null.cpp │ │ │ ├── keys_null.cpp │ │ │ ├── screen_null.cpp │ │ │ ├── sv_null.cpp │ │ │ ├── sys_null.cpp │ │ │ └── vid_null.cpp │ │ ├── sdl │ │ │ └── WindowSDL.cpp │ │ ├── unix │ │ │ ├── SystemUnix.cpp │ │ │ └── WindowX11.cpp │ │ └── win │ │ │ ├── SystemWin.cpp │ │ │ └── WindowWin.cpp │ │ ├── input │ │ ├── IMouse.hpp │ │ ├── Input.cpp │ │ ├── Input.hpp │ │ ├── InputHandler.cpp │ │ ├── InputHandler.hpp │ │ ├── KeyDestState.hpp │ │ ├── KeyDestState_Console.cpp │ │ ├── KeyDestState_Game.cpp │ │ ├── KeyDestState_Menu.cpp │ │ ├── KeyDestState_Message.cpp │ │ ├── Keyboard.cpp │ │ ├── Keyboard.hpp │ │ ├── LegacyClientInput.cpp │ │ ├── LegacyClientInput.hpp │ │ ├── LegacyMouse.cpp │ │ ├── LegacyMouse.hpp │ │ ├── cl_input.cpp │ │ ├── keys.cpp │ │ └── keys.hpp │ │ ├── math │ │ ├── CRC32Handler.cpp │ │ ├── CRC32Handler.hpp │ │ ├── comtomath.cpp │ │ ├── crc.cpp │ │ ├── math.hpp │ │ ├── mathlib.cpp │ │ ├── mathlib_e.hpp │ │ ├── md5.cpp │ │ ├── sse_mathfun.cpp │ │ └── sse_mathfun.hpp │ │ ├── memory │ │ ├── LegacyExports.cpp │ │ ├── LegacyExports.hpp │ │ ├── MemAllocator.hpp │ │ ├── MemBlock.hpp │ │ ├── MemPool.cpp │ │ ├── MemPool.hpp │ │ ├── Memory.cpp │ │ ├── Memory.hpp │ │ ├── cache.cpp │ │ ├── cache.hpp │ │ ├── hunk.cpp │ │ ├── hunk.hpp │ │ ├── mem.cpp │ │ ├── mem.hpp │ │ ├── zone.cpp │ │ └── zone.hpp │ │ ├── msvc │ │ ├── engine.vcxproj │ │ └── engine.vcxproj.filters │ │ ├── network │ │ ├── ClientData.hpp │ │ ├── GameConnectionHandler.cpp │ │ ├── GameConnectionHandler.hpp │ │ ├── IConnectionHandler.hpp │ │ ├── IPFilter.hpp │ │ ├── MessageWriter.hpp │ │ ├── NetChan.hpp │ │ ├── NetClient.cpp │ │ ├── NetClient.hpp │ │ ├── NetMsg.cpp │ │ ├── NetMsg.hpp │ │ ├── NetProtocol.hpp │ │ ├── NetServer.cpp │ │ ├── NetServer.hpp │ │ ├── Network.cpp │ │ ├── Network.hpp │ │ ├── NetworkTypes.hpp │ │ ├── ProtocolProxy.cpp │ │ ├── ProtocolProxy.hpp │ │ ├── ReadBuffer.cpp │ │ ├── ReadBuffer.hpp │ │ ├── ServerData.hpp │ │ ├── ServerRemoteAccess.cpp │ │ ├── ServerRemoteAccess.hpp │ │ ├── UserMsg.hpp │ │ ├── WriteBuffer.cpp │ │ └── WriteBuffer.hpp │ │ ├── physics │ │ ├── LegacyPhysicsEntityListener.cpp │ │ ├── LegacyPhysicsEntityListener.hpp │ │ ├── PhysicsEntity.cpp │ │ ├── PhysicsEntity.hpp │ │ ├── PhysicsWorld.cpp │ │ └── PhysicsWorld.hpp │ │ ├── precompiled.cpp │ │ ├── precompiled.hpp │ │ ├── resources │ │ ├── ModInfo.cpp │ │ ├── ModInfo.hpp │ │ ├── ResourceList.cpp │ │ ├── ResourceList.hpp │ │ ├── WadManager.cpp │ │ └── WadManager.hpp │ │ ├── scene │ │ ├── MapHandler.cpp │ │ ├── MapHandler.hpp │ │ ├── SaveHandler.cpp │ │ ├── SaveHandler.hpp │ │ ├── chasecam.cpp │ │ ├── chasecam.hpp │ │ ├── cl_cam.cpp │ │ ├── cl_ents.cpp │ │ ├── cl_events.cpp │ │ ├── cl_pred.cpp │ │ ├── cl_tent.cpp │ │ └── efx_api.cpp │ │ ├── sound │ │ ├── EngineSoundClient.cpp │ │ ├── EngineSoundClient.hpp │ │ ├── EngineSoundServer.cpp │ │ ├── EngineSoundServer.hpp │ │ ├── ISoundData.hpp │ │ ├── Sound.cpp │ │ ├── Sound.hpp │ │ ├── SoundChannel.cpp │ │ ├── SoundChannel.hpp │ │ ├── SoundFadeData.hpp │ │ ├── SoundListener.hpp │ │ ├── SoundLoader.hpp │ │ ├── SoundLoaderWAV.cpp │ │ ├── SoundLoaderWAV.hpp │ │ ├── SoundManager.cpp │ │ ├── SoundManager.hpp │ │ ├── SoundProvider.cpp │ │ └── SoundProvider.hpp │ │ ├── system │ │ ├── BuildInfo.cpp │ │ ├── BuildInfo.hpp │ │ ├── CmdProcessor.cpp │ │ ├── CmdProcessor.hpp │ │ ├── CommandLine.cpp │ │ ├── CommandLine.hpp │ │ ├── DedicatedServerAPI.cpp │ │ ├── DedicatedServerAPI.hpp │ │ ├── Engine.cpp │ │ ├── Engine.hpp │ │ ├── EngineAPI.cpp │ │ ├── EngineAPI.hpp │ │ ├── EngineOld.cpp │ │ ├── EngineOld.hpp │ │ ├── EngineSetup.cpp │ │ ├── EngineSetup.hpp │ │ ├── EventLoop.cpp │ │ ├── EventLoop.hpp │ │ ├── Game.cpp │ │ ├── Game.hpp │ │ ├── Host.cpp │ │ ├── Host.hpp │ │ ├── IEngine.hpp │ │ ├── IEventListener.hpp │ │ ├── IGame.hpp │ │ ├── ISubSystem.hpp │ │ ├── ISystem.hpp │ │ ├── InfoKeyStore.cpp │ │ ├── InfoKeyStore.hpp │ │ ├── LegacyExports.cpp │ │ ├── LegacyExports.hpp │ │ ├── SizeBuffer.cpp │ │ ├── SizeBuffer.hpp │ │ ├── Steam3.cpp │ │ ├── Steam3.hpp │ │ ├── StringHandler.cpp │ │ ├── StringHandler.hpp │ │ ├── System.cpp │ │ ├── System.hpp │ │ ├── SystemNew.cpp │ │ ├── SystemTypes.hpp │ │ ├── SystemWrapper.cpp │ │ ├── SystemWrapper.hpp │ │ ├── byteorder.cpp │ │ ├── byteorder.hpp │ │ ├── traceinit.cpp │ │ └── traceinit.h │ │ ├── ui │ │ ├── BaseUI.cpp │ │ ├── BaseUI.hpp │ │ ├── ClientUI.cpp │ │ ├── ClientUI.hpp │ │ ├── ClientVGUI.cpp │ │ ├── ClientVGUI.hpp │ │ ├── EngineSurface.cpp │ │ ├── EngineSurface.hpp │ │ ├── EngineVGUI.cpp │ │ ├── EngineVGUI.hpp │ │ ├── GameUIFuncs.cpp │ │ ├── GameUIFuncs.hpp │ │ ├── TutorAPI.cpp │ │ ├── TutorAPI.hpp │ │ ├── VGuiWrap2.cpp │ │ └── VGuiWrap2.hpp │ │ ├── voice │ │ ├── voicetweak.cpp │ │ └── voicetweak.hpp │ │ ├── workdamnit │ │ ├── network │ │ │ ├── bf_read.hpp │ │ │ ├── bf_write.hpp │ │ │ ├── cl_parse.cpp │ │ │ ├── delta.cpp │ │ │ ├── delta.hpp │ │ │ ├── delta_jit.cpp │ │ │ ├── delta_jit.hpp │ │ │ ├── delta_packet.hpp │ │ │ ├── frame.hpp │ │ │ ├── ipratelimit.cpp │ │ │ ├── ipratelimit.hpp │ │ │ ├── ipratelimitWrapper.cpp │ │ │ ├── ipratelimitWrapper.hpp │ │ │ ├── net.hpp │ │ │ ├── net_chan.cpp │ │ │ ├── net_chan.hpp │ │ │ ├── net_msg.cpp │ │ │ ├── net_ws.cpp │ │ │ ├── netapi_c.cpp │ │ │ ├── protocol.hpp │ │ │ ├── sv_user.cpp │ │ │ └── sv_user.hpp │ │ ├── physics │ │ │ ├── pmove.cpp │ │ │ ├── pmove.hpp │ │ │ ├── pmovetst.cpp │ │ │ ├── pmovetst.hpp │ │ │ ├── sv_move.cpp │ │ │ ├── sv_move.hpp │ │ │ ├── sv_phys.cpp │ │ │ ├── sv_phys.hpp │ │ │ ├── sv_pmove.cpp │ │ │ └── sv_pmove.hpp │ │ ├── resources │ │ │ ├── cmodel.cpp │ │ │ ├── cmodel.hpp │ │ │ ├── com_custom.cpp │ │ │ ├── consistency.hpp │ │ │ ├── czmodelcheck.cpp │ │ │ ├── decal.hpp │ │ │ ├── decals.cpp │ │ │ ├── l_studio.cpp │ │ │ ├── l_studio.hpp │ │ │ ├── model.cpp │ │ │ ├── model_rehlds.hpp │ │ │ ├── r_studio.cpp │ │ │ ├── studio_rehlds.hpp │ │ │ ├── sv_upld.cpp │ │ │ ├── sv_upld.hpp │ │ │ ├── textures.cpp │ │ │ └── textures.hpp │ │ ├── script │ │ │ └── Sequence.cpp │ │ ├── sound │ │ │ ├── Sound.hpp │ │ │ ├── cdaudio.hpp │ │ │ └── cl_sound.cpp │ │ ├── system │ │ │ ├── ClientTypes.hpp │ │ │ ├── DemoAPI.cpp │ │ │ ├── ServerTypes.hpp │ │ │ ├── TextMessage.cpp │ │ │ ├── TextMessage.hpp │ │ │ ├── cl_demo.cpp │ │ │ ├── cl_demo.hpp │ │ │ ├── cl_main.cpp │ │ │ ├── client.hpp │ │ │ ├── clientdll.cpp │ │ │ ├── clientdll.hpp │ │ │ ├── common.cpp │ │ │ ├── common.hpp │ │ │ ├── crt_local.cpp │ │ │ ├── host.cpp │ │ │ ├── host.hpp │ │ │ ├── host_cmd.cpp │ │ │ ├── host_cmd.hpp │ │ │ ├── info.cpp │ │ │ ├── info.hpp │ │ │ ├── module.cpp │ │ │ ├── server.hpp │ │ │ ├── sizebuf.cpp │ │ │ ├── sv_log.cpp │ │ │ ├── sv_log.hpp │ │ │ ├── sv_main.cpp │ │ │ ├── system.cpp │ │ │ └── system.hpp │ │ └── voice │ │ │ ├── cl_voice.cpp │ │ │ ├── voice.cpp │ │ │ ├── voice.hpp │ │ │ ├── voiceserver.cpp │ │ │ └── voiceserver.hpp │ │ └── world │ │ ├── EdictHandle.cpp │ │ ├── EdictHandle.hpp │ │ ├── EdictPool.cpp │ │ ├── EdictPool.hpp │ │ ├── EventAPI.cpp │ │ ├── EventAPI.hpp │ │ ├── GameWorld.cpp │ │ ├── GameWorld.hpp │ │ ├── HLEntityListener.cpp │ │ ├── HLEntityListener.hpp │ │ ├── IWorld.hpp │ │ ├── ed_strpool.cpp │ │ ├── ed_strpool.hpp │ │ ├── event.hpp │ │ ├── inst_baseline.hpp │ │ ├── pr_cmds.cpp │ │ ├── pr_cmds.hpp │ │ ├── pr_dlls.cpp │ │ ├── pr_dlls.hpp │ │ ├── pr_edict.cpp │ │ └── pr_edict.hpp ├── filesystem │ ├── CMakeLists.txt │ ├── FileSystemImpl.hpp │ ├── LoggedFileSystem.hpp │ ├── msvc │ │ ├── filesystem.vcxproj │ │ └── filesystem.vcxproj.filters │ ├── null │ │ ├── CMakeLists.txt │ │ └── LoggedFileSystem.cpp │ ├── stdio-gsr │ │ ├── CFileHandle.cpp │ │ ├── CFileHandle.h │ │ ├── CFileSystem.cpp │ │ ├── CFileSystem.h │ │ ├── CFileSystem.obsolete.cpp │ │ ├── CMakeLists.txt │ │ ├── CPackFileEntry.h │ │ ├── CSearchPath.h │ │ └── PackFile.h │ └── stdio │ │ ├── CMakeLists.txt │ │ ├── FileSystemImpl.cpp │ │ ├── Plat_Unix.cpp │ │ ├── Plat_Win.cpp │ │ └── Platform.hpp ├── gameui │ ├── CMakeLists.txt │ ├── czero │ │ ├── CareerUI.cpp │ │ └── CareerUI.hpp │ ├── default │ │ ├── BackgroundMenuButton.cpp │ │ ├── BackgroundMenuButton.h │ │ ├── BasePanel.cpp │ │ ├── BasePanel.h │ │ ├── BinkPanel.cpp │ │ ├── BinkPanel.h │ │ ├── BitmapImagePanel.cpp │ │ ├── BitmapImagePanel.h │ │ ├── CMakeLists.txt │ │ ├── CreateMultiplayerGameBotPage.cpp │ │ ├── CreateMultiplayerGameBotPage.h │ │ ├── CreateMultiplayerGameDialog.cpp │ │ ├── CreateMultiplayerGameDialog.h │ │ ├── CreateMultiplayerGameGameplayPage.cpp │ │ ├── CreateMultiplayerGameGameplayPage.h │ │ ├── CreateMultiplayerGameServerPage.cpp │ │ ├── CreateMultiplayerGameServerPage.h │ │ ├── CvarNegateCheckButton.cpp │ │ ├── CvarNegateCheckButton.h │ │ ├── CvarSlider.cpp │ │ ├── CvarSlider.h │ │ ├── CvarTextEntry.cpp │ │ ├── CvarTextEntry.h │ │ ├── CvarToggleCheckButton.cpp │ │ ├── CvarToggleCheckButton.h │ │ ├── EngineInterface.h │ │ ├── GameConsole.cpp │ │ ├── GameConsole.h │ │ ├── GameConsoleDialog.cpp │ │ ├── GameConsoleDialog.h │ │ ├── GameUI_Interface.cpp │ │ ├── GameUI_Interface.h │ │ ├── KeyToggleCheckButton.cpp │ │ ├── KeyToggleCheckButton.h │ │ ├── LabeledCommandComboBox.cpp │ │ ├── LabeledCommandComboBox.h │ │ ├── LoadingDialog.cpp │ │ ├── LoadingDialog.h │ │ ├── LogoFile.cpp │ │ ├── LogoFile.h │ │ ├── ModInfo.cpp │ │ ├── ModInfo.h │ │ ├── MultiplayerAdvancedDialog.cpp │ │ ├── MultiplayerAdvancedDialog.h │ │ ├── OptionsDialog.cpp │ │ ├── OptionsDialog.h │ │ ├── OptionsSubAdvanced.cpp │ │ ├── OptionsSubAdvanced.h │ │ ├── OptionsSubAudio.cpp │ │ ├── OptionsSubAudio.h │ │ ├── OptionsSubKeyboard.cpp │ │ ├── OptionsSubKeyboard.h │ │ ├── OptionsSubMouse.cpp │ │ ├── OptionsSubMouse.h │ │ ├── OptionsSubMultiplayer.cpp │ │ ├── OptionsSubMultiplayer.h │ │ ├── OptionsSubVideo.cpp │ │ ├── OptionsSubVideo.h │ │ ├── OptionsSubVoice.cpp │ │ ├── OptionsSubVoice.h │ │ ├── PanelListPanel.cpp │ │ ├── PanelListPanel.h │ │ ├── ScriptObject.cpp │ │ ├── ScriptObject.h │ │ ├── ToolBar.cpp │ │ ├── ToolBar.h │ │ ├── URLButton.cpp │ │ ├── URLButton.h │ │ ├── VControlsListPanel.cpp │ │ ├── VControlsListPanel.h │ │ ├── WebExplorer.cpp │ │ └── WebExplorer.h │ ├── gsr │ │ ├── BackgroundMenuButton.cpp │ │ ├── BackgroundMenuButton.h │ │ ├── BasePanel.cpp │ │ ├── BasePanel.h │ │ ├── BitmapButton.cpp │ │ ├── BitmapButton.h │ │ ├── BitmapImagePanel.cpp │ │ ├── BitmapImagePanel.h │ │ ├── CDKeyEntryDialog.cpp │ │ ├── CDKeyEntryDialog.h │ │ ├── CMakeLists.txt │ │ ├── CareerBaseFrame.cpp │ │ ├── CareerBaseFrame.h │ │ ├── CareerBox.cpp │ │ ├── CareerBox.h │ │ ├── CareerGame.cpp │ │ ├── CareerGame.h │ │ ├── CareerGameTasks.cpp │ │ ├── CareerGameTasks.h │ │ ├── CareerMapFrame.cpp │ │ ├── CareerMapFrame.h │ │ ├── CareerProfile.cpp │ │ ├── CareerProfile.h │ │ ├── CareerProfileFrame.cpp │ │ ├── CareerProfileFrame.h │ │ ├── CommandCheckButton.cpp │ │ ├── CommandCheckButton.h │ │ ├── ContentControlDialog.cpp │ │ ├── ContentControlDialog.h │ │ ├── CreateMultiplayerGameBotPage.cpp │ │ ├── CreateMultiplayerGameBotPage.h │ │ ├── CreateMultiplayerGameDialog.cpp │ │ ├── CreateMultiplayerGameDialog.h │ │ ├── CreateMultiplayerGameGameplayPage.cpp │ │ ├── CreateMultiplayerGameGameplayPage.h │ │ ├── CreateMultiplayerGameServerPage.cpp │ │ ├── CreateMultiplayerGameServerPage.h │ │ ├── CvarLatch.cpp │ │ ├── CvarLatch.h │ │ ├── CvarNegateCheckButton.cpp │ │ ├── CvarNegateCheckButton.h │ │ ├── CvarSlider.cpp │ │ ├── CvarSlider.h │ │ ├── CvarTextEntry.cpp │ │ ├── CvarTextEntry.h │ │ ├── CvarToggleCheckButton.cpp │ │ ├── CvarToggleCheckButton.h │ │ ├── DottedLabel.cpp │ │ ├── DottedLabel.h │ │ ├── EngineInterface.h │ │ ├── GameConsole.cpp │ │ ├── GameConsole.h │ │ ├── GameConsoleDialog.cpp │ │ ├── GameConsoleDialog.h │ │ ├── GameUI_Interface.cpp │ │ ├── GameUI_Interface.h │ │ ├── HelpDialog.cpp │ │ ├── HelpDialog.h │ │ ├── ImageButton.cpp │ │ ├── ImageButton.h │ │ ├── KeyToggleCheckButton.cpp │ │ ├── KeyToggleCheckButton.h │ │ ├── LabeledCommandComboBox.cpp │ │ ├── LabeledCommandComboBox.h │ │ ├── LoadGameDialog.cpp │ │ ├── LoadGameDialog.h │ │ ├── LoadingDialog.cpp │ │ ├── LoadingDialog.h │ │ ├── LogoFile.cpp │ │ ├── LogoFile.h │ │ ├── ModInfo.cpp │ │ ├── ModInfo.h │ │ ├── MultiplayerAdvancedDialog.cpp │ │ ├── MultiplayerAdvancedDialog.h │ │ ├── MusicManager.cpp │ │ ├── MusicManager.h │ │ ├── NewGameDialog.cpp │ │ ├── NewGameDialog.h │ │ ├── OptionsDialog.cpp │ │ ├── OptionsDialog.h │ │ ├── OptionsSubAdvanced.cpp │ │ ├── OptionsSubAdvanced.h │ │ ├── OptionsSubAudio.cpp │ │ ├── OptionsSubAudio.h │ │ ├── OptionsSubKeyboard.cpp │ │ ├── OptionsSubKeyboard.h │ │ ├── OptionsSubMouse.cpp │ │ ├── OptionsSubMouse.h │ │ ├── OptionsSubMultiplayer.cpp │ │ ├── OptionsSubMultiplayer.h │ │ ├── OptionsSubVideo.cpp │ │ ├── OptionsSubVideo.h │ │ ├── OptionsSubVoice.cpp │ │ ├── OptionsSubVoice.h │ │ ├── PanelListPanel.cpp │ │ ├── PanelListPanel.h │ │ ├── PlayerListDialog.cpp │ │ ├── PlayerListDialog.h │ │ ├── RefreshSteamLogin.cpp │ │ ├── RefreshSteamLogin.h │ │ ├── RunGameEngine.cpp │ │ ├── RunGameEngine.h │ │ ├── SaveGameDialog.cpp │ │ ├── SaveGameDialog.h │ │ ├── ScriptObject.cpp │ │ ├── ScriptObject.h │ │ ├── Sys_Utils.cpp │ │ ├── Sys_Utils.h │ │ ├── TaskButton.cpp │ │ ├── TaskButton.h │ │ ├── Taskbar.cpp │ │ ├── Taskbar.h │ │ ├── TextEntryBox.cpp │ │ ├── TextEntryBox.h │ │ ├── VGuiSystemModuleLoader.cpp │ │ ├── VGuiSystemModuleLoader.h │ │ ├── labelslidercombo.cpp │ │ ├── labelslidercombo.h │ │ ├── taskframe.h │ │ ├── vcontrolslistpanel.cpp │ │ └── vcontrolslistpanel.h │ ├── msvc │ │ ├── GameUI.vcxproj │ │ └── GameUI.vcxproj.filters │ └── null │ │ ├── CMakeLists.txt │ │ ├── GameConsole.hpp │ │ ├── GameConsoleNull.cpp │ │ ├── GameUI.hpp │ │ └── GameUINull.cpp ├── hlsdk_pch.hpp ├── hltv │ ├── CMakeLists.txt │ ├── README.md │ ├── build.gradle │ ├── common │ │ ├── BaseClient.cpp │ │ ├── BaseClient.h │ │ ├── BitBuffer.cpp │ │ ├── BitBuffer.h │ │ ├── DemoFile.cpp │ │ ├── DemoFile.h │ │ ├── DirectorCmd.cpp │ │ ├── DirectorCmd.h │ │ ├── InfoString.cpp │ │ ├── InfoString.h │ │ ├── NetAddress.cpp │ │ ├── NetAddress.h │ │ ├── NetChannel.cpp │ │ ├── NetChannel.h │ │ ├── ServerInfo.h │ │ ├── byteorder.cpp │ │ ├── byteorder.h │ │ ├── common.cpp │ │ ├── common_hltv.h │ │ ├── mathlib.cpp │ │ ├── mathlib_internal.h │ │ ├── md5.cpp │ │ ├── md5.h │ │ ├── munge.cpp │ │ ├── munge.h │ │ ├── net_internal.h │ │ ├── random.cpp │ │ └── random.h │ ├── console │ │ ├── CMakeLists.txt │ │ ├── build.gradle │ │ ├── msvc │ │ │ ├── Console.sln │ │ │ ├── Console.vcxproj │ │ │ ├── Console.vcxproj.filters │ │ │ ├── PostBuild.bat │ │ │ ├── hltv.rc │ │ │ ├── icon.ico │ │ │ └── resource.h │ │ └── src │ │ │ ├── System.cpp │ │ │ ├── System.h │ │ │ ├── precompiled.cpp │ │ │ ├── precompiled.h │ │ │ └── public_amalgamation.cpp │ ├── core │ │ ├── CMakeLists.txt │ │ ├── build.gradle │ │ ├── msvc │ │ │ ├── Core.sln │ │ │ ├── Core.vcxproj │ │ │ ├── Core.vcxproj.filters │ │ │ └── PostBuild.bat │ │ └── src │ │ │ ├── BSPModel.cpp │ │ │ ├── BSPModel.h │ │ │ ├── Delta.cpp │ │ │ ├── Delta.h │ │ │ ├── NetSocket.cpp │ │ │ ├── NetSocket.h │ │ │ ├── Network.cpp │ │ │ ├── Network.h │ │ │ ├── Server.cpp │ │ │ ├── Server.h │ │ │ ├── World.cpp │ │ │ ├── World.h │ │ │ ├── merge │ │ │ ├── Server.hpp │ │ │ └── World.hpp │ │ │ ├── precompiled.cpp │ │ │ ├── precompiled.h │ │ │ └── public_amalgamation.cpp │ ├── demoplayer │ │ ├── CMakeLists.txt │ │ ├── build.gradle │ │ ├── msvc │ │ │ ├── DemoPlayer.sln │ │ │ ├── DemoPlayer.vcxproj │ │ │ ├── DemoPlayer.vcxproj.filters │ │ │ └── PostBuild.bat │ │ └── src │ │ │ ├── DemoPlayer.cpp │ │ │ ├── DemoPlayer.h │ │ │ ├── precompiled.cpp │ │ │ ├── precompiled.h │ │ │ └── public_amalgamation.cpp │ ├── director │ │ ├── CMakeLists.txt │ │ ├── build.gradle │ │ ├── msvc │ │ │ ├── Director.sln │ │ │ ├── Director.vcxproj │ │ │ ├── Director.vcxproj.filters │ │ │ └── PostBuild.bat │ │ └── src │ │ │ ├── Director.cpp │ │ │ ├── Director.h │ │ │ ├── DirectorNull.h │ │ │ ├── precompiled.cpp │ │ │ ├── precompiled.h │ │ │ └── public_amalgamation.cpp │ ├── msvc │ │ └── hltv.sln │ └── proxy │ │ ├── CMakeLists.txt │ │ ├── build.gradle │ │ ├── msvc │ │ ├── PostBuild.bat │ │ ├── Proxy.sln │ │ ├── Proxy.vcxproj │ │ └── Proxy.vcxproj.filters │ │ └── src │ │ ├── DemoClient.cpp │ │ ├── DemoClient.h │ │ ├── FakeClient.cpp │ │ ├── FakeClient.h │ │ ├── Master.cpp │ │ ├── Master.h │ │ ├── Proxy.cpp │ │ ├── Proxy.h │ │ ├── ProxyClient.cpp │ │ ├── ProxyClient.h │ │ ├── Status.cpp │ │ ├── Status.h │ │ ├── precompiled.cpp │ │ ├── precompiled.h │ │ └── public_amalgamation.cpp ├── hookers │ ├── CMakeLists.txt │ ├── HLTV │ │ ├── Core │ │ │ ├── DeltaEx.cpp │ │ │ ├── DeltaEx.h │ │ │ ├── hooklist.cpp │ │ │ ├── hooklist.h │ │ │ └── main.cpp │ │ ├── DemoPlayer │ │ │ ├── hooklist.cpp │ │ │ ├── hooklist.h │ │ │ └── main.cpp │ │ └── Proxy │ │ │ ├── hooklist.cpp │ │ │ ├── hooklist.h │ │ │ └── main.cpp │ ├── engine │ │ ├── hooklist.cpp │ │ ├── hooklist.h │ │ ├── main.cpp │ │ └── main_swds.cpp │ ├── helper.h │ ├── hooker.cpp │ ├── hooker.hpp │ ├── memory.cpp │ ├── memory.hpp │ ├── msvc │ │ ├── hookers.vcxproj │ │ └── hookers.vcxproj.filters │ ├── rehlds_debug.cpp │ ├── rehlds_debug.hpp │ └── unused │ │ └── 6132_hooker.cpp ├── launcher │ ├── CMakeLists.txt │ ├── ExceptHandle.hpp │ ├── LoadBlob.cpp │ ├── LoadBlob.hpp │ ├── launcher.cpp │ ├── launcher.ico │ ├── launcher.rc │ ├── launcher_old.cpp │ ├── msvc │ │ ├── launcher.vcxproj │ │ └── launcher.vcxproj.filters │ ├── plat_win.cpp │ ├── platform.hpp │ ├── registry.cpp │ ├── resource.hpp │ ├── sys.hpp │ ├── sys_launcher.cpp │ └── unused │ │ ├── dedicated.rc │ │ ├── gsr │ │ ├── CMakeLists.txt │ │ └── launcher.cpp │ │ └── valve.ico ├── ogsnext │ ├── dll_loader │ │ ├── 1.py │ │ ├── CMakeLists.txt │ │ ├── Makefile.dep │ │ ├── Makefile.dep.bak │ │ ├── Makefile.linux │ │ ├── com.h │ │ ├── config.h │ │ ├── debug.h │ │ ├── elfdll.c │ │ ├── ext.c │ │ ├── ext.h │ │ ├── gldef.in │ │ ├── glfuncs.inc │ │ ├── glvars.h │ │ ├── glvars.inc │ │ ├── ldt_keeper.c │ │ ├── ldt_keeper.h │ │ ├── loader.c │ │ ├── loader.h │ │ ├── mangle.h │ │ ├── mmap_anon.c │ │ ├── mmap_anon.h │ │ ├── module.c │ │ ├── pe_image.c │ │ ├── pe_resource.c │ │ ├── registry.c │ │ ├── registry.h │ │ ├── resource.c │ │ ├── win32.c │ │ ├── win32.h │ │ ├── wine │ │ │ ├── avifmt.h │ │ │ ├── basetsd.h │ │ │ ├── debugtools.h │ │ │ ├── driver.h │ │ │ ├── elfdll.h │ │ │ ├── heap.h │ │ │ ├── ldt.h │ │ │ ├── mmreg.h │ │ │ ├── module.h │ │ │ ├── msacm.h │ │ │ ├── msacmdrv.h │ │ │ ├── ntdef.h │ │ │ ├── objbase.h │ │ │ ├── pe_image.h │ │ │ ├── poppack.h │ │ │ ├── pshpack1.h │ │ │ ├── pshpack2.h │ │ │ ├── pshpack4.h │ │ │ ├── pshpack8.h │ │ │ ├── vfw.h │ │ │ ├── winbase.h │ │ │ ├── windef.h │ │ │ ├── windows.h │ │ │ ├── winerror.h │ │ │ ├── winestring.h │ │ │ ├── winnt.h │ │ │ ├── winreg.h │ │ │ └── winuser.h │ │ ├── wrapper.S │ │ └── wrapper.h │ ├── metamod │ │ ├── .gitignore │ │ ├── ABOUT.txt │ │ ├── COPYING │ │ ├── Config.mak │ │ ├── Makefile │ │ ├── README.md │ │ ├── docs │ │ │ ├── Changelog │ │ │ ├── README.txt │ │ │ ├── TODO │ │ │ ├── config.ini │ │ │ ├── html │ │ │ │ ├── Index.html │ │ │ │ ├── a.html │ │ │ │ ├── about.html │ │ │ │ ├── coding.html │ │ │ │ ├── dllapi_notes.html │ │ │ │ ├── engine_notes.html │ │ │ │ ├── faq.html │ │ │ │ ├── gamesupport.html │ │ │ │ ├── links.html │ │ │ │ ├── maillist.html │ │ │ │ ├── metamod.html │ │ │ │ ├── newapi_notes.html │ │ │ │ ├── release_notes.html │ │ │ │ ├── supportedmods.html │ │ │ │ ├── trace.html │ │ │ │ └── wdmisc.html │ │ │ ├── plugins.ini │ │ │ └── txt │ │ │ │ ├── Index.txt │ │ │ │ ├── a.txt │ │ │ │ ├── about.txt │ │ │ │ ├── coding.txt │ │ │ │ ├── dllapi_notes.txt │ │ │ │ ├── engine_notes.txt │ │ │ │ ├── faq.txt │ │ │ │ ├── gamesupport.txt │ │ │ │ ├── links.txt │ │ │ │ ├── maillist.txt │ │ │ │ ├── metamod.txt │ │ │ │ ├── newapi_notes.txt │ │ │ │ ├── release_notes.txt │ │ │ │ ├── supportedmods.txt │ │ │ │ ├── trace.txt │ │ │ │ ├── wdmisc.txt │ │ │ │ └── windows_notes.txt │ │ ├── examples │ │ │ ├── stub_plugin │ │ │ │ ├── .gitignore │ │ │ │ ├── Config.mak │ │ │ │ ├── Makefile │ │ │ │ ├── dllapi.cpp │ │ │ │ ├── dummy.h │ │ │ │ ├── dummy.rc │ │ │ │ ├── engine_api.cpp │ │ │ │ ├── h_export.cpp │ │ │ │ ├── info_name.h │ │ │ │ ├── meta_api.cpp │ │ │ │ └── sdk_util.cpp │ │ │ ├── trace_plugin │ │ │ │ ├── .gitignore │ │ │ │ ├── Config.mak │ │ │ │ ├── Makefile │ │ │ │ ├── api_info.cpp │ │ │ │ ├── dllapi.cpp │ │ │ │ ├── dllapi_post.cpp │ │ │ │ ├── dllapi_post.h │ │ │ │ ├── engine_api.cpp │ │ │ │ ├── engine_api_post.cpp │ │ │ │ ├── engine_api_post.h │ │ │ │ ├── h_export.cpp │ │ │ │ ├── info_name.h │ │ │ │ ├── log_plugin.cpp │ │ │ │ ├── log_plugin.h │ │ │ │ ├── meta_api.cpp │ │ │ │ ├── plugin.cpp │ │ │ │ ├── plugin.h │ │ │ │ ├── res_meta.rc │ │ │ │ ├── sdk_util.cpp │ │ │ │ ├── trace_api.cpp │ │ │ │ ├── trace_api.h │ │ │ │ └── vdate.cpp │ │ │ └── wdmisc_plugin │ │ │ │ ├── .gitignore │ │ │ │ ├── Config.mak │ │ │ │ ├── Makefile │ │ │ │ ├── dll_plugin.cpp │ │ │ │ ├── dll_plugin.h │ │ │ │ ├── engine_api.cpp │ │ │ │ ├── h_export.cpp │ │ │ │ ├── info_name.h │ │ │ │ ├── log_plugin.cpp │ │ │ │ ├── log_plugin.h │ │ │ │ ├── meta_api.cpp │ │ │ │ ├── plugin.h │ │ │ │ ├── res_meta.rc │ │ │ │ ├── sdk_util.cpp │ │ │ │ ├── vdate.cpp │ │ │ │ ├── wdmisc.cpp │ │ │ │ └── wdmisc.h │ │ ├── metamod │ │ │ ├── .gitignore │ │ │ ├── Config.mak │ │ │ ├── Makefile │ │ │ ├── api_hook.cpp │ │ │ ├── api_hook.h │ │ │ ├── api_info.cpp │ │ │ ├── api_info.h │ │ │ ├── build_all.sh │ │ │ ├── commands_meta.cpp │ │ │ ├── commands_meta.h │ │ │ ├── comp_dep.h │ │ │ ├── conf_meta.cpp │ │ │ ├── conf_meta.h │ │ │ ├── dllapi.cpp │ │ │ ├── dllapi.h │ │ │ ├── engine_api.cpp │ │ │ ├── engine_api.h │ │ │ ├── engine_t.h │ │ │ ├── enginecallbacks.h │ │ │ ├── engineinfo.cpp │ │ │ ├── engineinfo.h │ │ │ ├── game_autodetect.cpp │ │ │ ├── game_autodetect.h │ │ │ ├── game_support.cpp │ │ │ ├── game_support.h │ │ │ ├── games.h │ │ │ ├── h_export.cpp │ │ │ ├── i386pe.merge │ │ │ ├── info_name.h │ │ │ ├── linkent.h │ │ │ ├── linkgame.cpp │ │ │ ├── linkplug.cpp │ │ │ ├── log_meta.cpp │ │ │ ├── log_meta.h │ │ │ ├── meta_api.h │ │ │ ├── meta_eiface.cpp │ │ │ ├── meta_eiface.h │ │ │ ├── metamod.def │ │ │ ├── metamod.h │ │ │ ├── metamod.sln │ │ │ ├── metamod.vcproj │ │ │ ├── mlist.cpp │ │ │ ├── mlist.h │ │ │ ├── mm_pextensions.h │ │ │ ├── mplayer.cpp │ │ │ ├── mplayer.h │ │ │ ├── mplugin.cpp │ │ │ ├── mplugin.h │ │ │ ├── mreg.cpp │ │ │ ├── mreg.h │ │ │ ├── mutil.cpp │ │ │ ├── mutil.h │ │ │ ├── new_baseclass.h │ │ │ ├── osdep.cpp │ │ │ ├── osdep.h │ │ │ ├── osdep_detect_gamedll_linux.cpp │ │ │ ├── osdep_detect_gamedll_win32.cpp │ │ │ ├── osdep_linkent_linux.cpp │ │ │ ├── osdep_linkent_win32.cpp │ │ │ ├── osdep_p.cpp │ │ │ ├── osdep_p.h │ │ │ ├── plinfo.h │ │ │ ├── reg_support.cpp │ │ │ ├── reg_support.h │ │ │ ├── res_meta.rc │ │ │ ├── ret_type.h │ │ │ ├── sdk_util.cpp │ │ │ ├── sdk_util.h │ │ │ ├── studioapi.cpp │ │ │ ├── studioapi.h │ │ │ ├── support_meta.cpp │ │ │ ├── support_meta.h │ │ │ ├── tqueue.h │ │ │ ├── types_meta.h │ │ │ ├── vdate.cpp │ │ │ ├── vdate.h │ │ │ └── vers_meta.h │ │ └── tools │ │ │ ├── getents.sh │ │ │ └── stlfilter │ ├── metamod_support │ │ ├── Metamod.cpp │ │ ├── Metamod.hpp │ │ ├── MetamodEntityListener.cpp │ │ ├── MetamodEntityListener.hpp │ │ ├── MetamodGameClientListener.cpp │ │ ├── MetamodGameClientListener.hpp │ │ ├── MetamodGameDLL.cpp │ │ ├── MetamodGameDLL.hpp │ │ ├── MetamodGameSpectatorListener.cpp │ │ ├── MetamodGameSpectatorListener.hpp │ │ ├── MetamodPhysicsEntityListener.cpp │ │ ├── MetamodPhysicsEntityListener.hpp │ │ ├── MetamodPlayerMove.cpp │ │ └── MetamodPlayerMove.hpp │ ├── rw17 │ │ └── hlcompat │ │ │ └── client │ │ │ ├── ClientDLLFuncs.cpp │ │ │ ├── DemoAPI.cpp │ │ │ ├── EfxAPI.cpp │ │ │ ├── EventAPI.cpp │ │ │ ├── HLClientHUD.cpp │ │ │ ├── HLClientHUD.hpp │ │ │ ├── NetAPI.cpp │ │ │ ├── TriAPI.cpp │ │ │ └── VoiceTweakAPI.cpp │ ├── vgui_support │ │ ├── CMakeLists.txt │ │ ├── Makefile.linux │ │ ├── Makefile.wine │ │ ├── cl.bat │ │ ├── utlmemory.h │ │ ├── utlrbtree.h │ │ ├── utlvector.h │ │ ├── vgui_clip.cpp │ │ ├── vgui_font.cpp │ │ ├── vgui_input.cpp │ │ ├── vgui_int.cpp │ │ ├── vgui_main.h │ │ ├── vgui_support.sln │ │ ├── vgui_support.vcxproj │ │ ├── vgui_support.vcxproj.filters │ │ └── vgui_surf.cpp │ └── vguiwrap │ │ ├── EngineApp.cpp │ │ ├── EngineApp.hpp │ │ ├── EnginePanel.cpp │ │ ├── EnginePanel.hpp │ │ ├── EngineSurface.cpp │ │ ├── EngineSurface.hpp │ │ ├── FontCache.cpp │ │ ├── FontCache.hpp │ │ ├── GameUIDraw.h │ │ ├── IEngineSurface.h │ │ ├── UI.cpp │ │ ├── UI.hpp │ │ ├── utlmemory.h │ │ ├── utlrbtree.h │ │ ├── utlvector.h │ │ ├── vgui_clip.cpp │ │ ├── vgui_draw.cpp │ │ ├── vgui_draw.h │ │ ├── vgui_input.cpp │ │ ├── vgui_int.cpp │ │ └── vgui_main.h ├── particleman │ ├── CMakeLists.txt │ ├── ParticleManImpl.hpp │ ├── msvc │ │ ├── particleman.vcxproj │ │ └── particleman.vcxproj.filters │ └── null │ │ └── ParticleManImpl.cpp ├── public │ ├── dbg │ │ └── dbg.hpp │ ├── rehlds │ │ ├── FlightRecorder.h │ │ ├── bspfile.h │ │ ├── cmd_rehlds.h │ │ ├── common_rehlds.h │ │ ├── crc32c.cpp │ │ ├── crc32c.h │ │ ├── d_local.h │ │ ├── hookchains.h │ │ ├── model.h │ │ ├── modelgen.h │ │ ├── osconfig.h │ │ ├── rehlds_api.h │ │ ├── rehlds_interfaces.h │ │ ├── spritegn.h │ │ ├── static_map.h │ │ ├── sys_shared.cpp │ │ └── sys_shared.h │ └── tier1 │ │ ├── interface.cpp │ │ └── interface.h ├── rehlds │ ├── CMakeLists.txt │ ├── FlightRecorderImpl.cpp │ ├── FlightRecorderImpl.h │ ├── RehldsRuntimeConfig.cpp │ ├── RehldsRuntimeConfig.h │ ├── flight_recorder.cpp │ ├── flight_recorder.h │ ├── hookchains_impl.cpp │ ├── hookchains_impl.h │ ├── jitasm.h │ ├── msvc │ │ ├── rehlds.vcxproj │ │ └── rehlds.vcxproj.filters │ ├── platform_rehlds.cpp │ ├── platform_rehlds.h │ ├── precompiled.cpp │ ├── precompiled.h │ ├── rehlds_api_impl.cpp │ ├── rehlds_api_impl.h │ ├── rehlds_interfaces_impl.cpp │ ├── rehlds_interfaces_impl.h │ ├── rehlds_pch.hpp │ ├── rehlds_security.cpp │ ├── rehlds_security.h │ └── structSizeCheck.cpp ├── render │ ├── CMakeLists.txt │ ├── RenderImpl.hpp │ ├── gl │ │ ├── CMakeLists.txt │ │ ├── RenderImpl.cpp │ │ ├── anormtab.hpp │ │ ├── gl_draw.cpp │ │ ├── gl_image.cpp │ │ ├── gl_light.cpp │ │ ├── gl_local.hpp │ │ ├── gl_mesh.cpp │ │ ├── gl_model.cpp │ │ ├── gl_model.hpp │ │ ├── gl_rmain.cpp │ │ ├── gl_rmisc.cpp │ │ ├── gl_rsurf.cpp │ │ ├── gl_warp.cpp │ │ ├── impl │ │ │ ├── linux │ │ │ │ ├── gl_linux.cpp │ │ │ │ ├── qgl_linux.cpp │ │ │ │ └── rw_linux.h │ │ │ ├── null │ │ │ │ └── glimp_null.cpp │ │ │ └── win │ │ │ │ ├── glw_imp.cpp │ │ │ │ ├── glw_win.hpp │ │ │ │ └── qgl_win.cpp │ │ ├── msvc │ │ │ ├── r_gl.001 │ │ │ └── r_gl.dsp │ │ ├── qgl.hpp │ │ ├── triapi.cpp │ │ └── warpsin.hpp │ ├── merge │ │ ├── Renderer │ │ │ ├── Renderer.rc │ │ │ ├── bspfile.h │ │ │ ├── exportfuncs.cpp │ │ │ ├── exportfuncs.h │ │ │ ├── gl_const.h │ │ │ ├── gl_draw.cpp │ │ │ ├── gl_hooks.cpp │ │ │ ├── gl_local.h │ │ │ ├── gl_model.h │ │ │ ├── gl_program.cpp │ │ │ ├── gl_reflect.cpp │ │ │ ├── gl_refract.cpp │ │ │ ├── gl_rmain.cpp │ │ │ ├── gl_rmisc.cpp │ │ │ ├── gl_rsurf.cpp │ │ │ ├── gl_studio.cpp │ │ │ ├── gl_util.h │ │ │ ├── gl_warp.cpp │ │ │ ├── gl_warp_sin.h │ │ │ ├── gl_win.cpp │ │ │ ├── gl_win.h │ │ │ ├── mathlib.cpp │ │ │ ├── mathlib.h │ │ │ ├── modelgen.h │ │ │ ├── msvc │ │ │ │ ├── Renderer.sln │ │ │ │ ├── Renderer.vcproj │ │ │ │ ├── Renderer.vcxproj │ │ │ │ └── Renderer.vcxproj.filters │ │ │ ├── plugins.cpp │ │ │ ├── plugins.h │ │ │ ├── qgl.cpp │ │ │ ├── qgl.h │ │ │ ├── ref_int.h │ │ │ ├── screen.cpp │ │ │ ├── screen.h │ │ │ └── spritegn.h │ │ ├── draw │ │ │ ├── d_edge.cpp │ │ │ ├── d_polyse.cpp │ │ │ ├── d_scan.cpp │ │ │ └── draw.cpp │ │ ├── draw2 │ │ │ ├── d_edge.cpp │ │ │ ├── d_fill.cpp │ │ │ ├── d_iface.hpp │ │ │ ├── d_ifacea.hpp │ │ │ ├── d_init.cpp │ │ │ ├── d_local.hpp │ │ │ ├── d_modech.cpp │ │ │ ├── d_part.cpp │ │ │ ├── d_polyse.cpp │ │ │ ├── d_scan.cpp │ │ │ ├── d_sky.cpp │ │ │ ├── d_sprite.cpp │ │ │ ├── d_surf.cpp │ │ │ ├── d_vars.cpp │ │ │ ├── d_zpoint.cpp │ │ │ ├── draw.cpp │ │ │ └── draw.hpp │ │ ├── glquake.hpp │ │ ├── gsr │ │ │ ├── gl │ │ │ │ ├── glHud.cpp │ │ │ │ ├── glHud.h │ │ │ │ ├── gl_draw.cpp │ │ │ │ ├── gl_draw.h │ │ │ │ ├── gl_mesh.cpp │ │ │ │ ├── gl_mesh.h │ │ │ │ ├── gl_model.cpp │ │ │ │ ├── gl_model.h │ │ │ │ ├── gl_rmain.cpp │ │ │ │ ├── gl_rmain.h │ │ │ │ ├── gl_rmisc.cpp │ │ │ │ ├── gl_rmisc.h │ │ │ │ ├── gl_rsurf.cpp │ │ │ │ ├── gl_rsurf.h │ │ │ │ ├── gl_screen.cpp │ │ │ │ ├── gl_screen.h │ │ │ │ ├── gl_vidnt.cpp │ │ │ │ ├── gl_vidnt.h │ │ │ │ ├── gl_warp.cpp │ │ │ │ ├── qgl.cpp │ │ │ │ └── qgl.h │ │ │ └── render │ │ │ │ ├── r_efx.cpp │ │ │ │ ├── r_efx_int.h │ │ │ │ ├── r_part.cpp │ │ │ │ ├── r_part.h │ │ │ │ ├── r_studio.cpp │ │ │ │ ├── r_studio.h │ │ │ │ ├── r_triangle.cpp │ │ │ │ ├── r_triangle.h │ │ │ │ └── render.h │ │ ├── opengl │ │ │ ├── gl_draw.cpp │ │ │ ├── gl_mesh.cpp │ │ │ ├── gl_model.cpp │ │ │ ├── gl_rmain.cpp │ │ │ ├── gl_rsurf.cpp │ │ │ └── gl_screen.cpp │ │ ├── opengl2 │ │ │ ├── gl_draw.cpp │ │ │ ├── gl_mesh.cpp │ │ │ ├── gl_model.cpp │ │ │ ├── gl_model.hpp │ │ │ ├── gl_ngraph.cpp │ │ │ ├── gl_refrag.cpp │ │ │ ├── gl_rlight.cpp │ │ │ ├── gl_rmain.cpp │ │ │ ├── gl_rmisc.cpp │ │ │ ├── gl_rsurf.cpp │ │ │ ├── gl_screen.cpp │ │ │ ├── gl_test.cpp │ │ │ ├── gl_vidnt.cpp │ │ │ ├── gl_warp.cpp │ │ │ └── gl_warp_sin.hpp │ │ ├── render │ │ │ ├── r_main.cpp │ │ │ └── r_part.cpp │ │ ├── render2 │ │ │ ├── r_aclip.cpp │ │ │ ├── r_alias.cpp │ │ │ ├── r_bsp.cpp │ │ │ ├── r_draw.cpp │ │ │ ├── r_edge.cpp │ │ │ ├── r_efrag.cpp │ │ │ ├── r_light.cpp │ │ │ ├── r_local.hpp │ │ │ ├── r_main.cpp │ │ │ ├── r_misc.cpp │ │ │ ├── r_part.cpp │ │ │ ├── r_shared.hpp │ │ │ ├── r_sky.cpp │ │ │ ├── r_sprite.cpp │ │ │ ├── r_surf.cpp │ │ │ ├── r_vars.cpp │ │ │ └── render.hpp │ │ └── warpsin.hpp │ ├── msvc │ │ ├── render.vcxproj │ │ └── render.vcxproj.filters │ ├── null │ │ ├── CMakeLists.txt │ │ └── RenderImpl.cpp │ └── software │ │ ├── CMakeLists.txt │ │ ├── RenderImpl.cpp │ │ ├── adivtab.hpp │ │ ├── asm_draw.hpp │ │ ├── block16.inc │ │ ├── block8.inc │ │ ├── d_if.inc │ │ ├── d_ifacea.hpp │ │ ├── impl │ │ ├── linux │ │ │ ├── rw_in_svgalib.c │ │ │ ├── rw_svgalib.c │ │ │ └── rw_x11.cpp │ │ ├── null │ │ │ └── swimp_null.cpp │ │ └── win │ │ │ ├── rw_ddraw.cpp │ │ │ ├── rw_dib.cpp │ │ │ ├── rw_imp.cpp │ │ │ └── rw_win.hpp │ │ ├── msvc │ │ ├── r_soft.001 │ │ └── r_soft.dsp │ │ ├── qasm.inc │ │ ├── r_aclip.cpp │ │ ├── r_aclipa.asm │ │ ├── r_alias.cpp │ │ ├── r_bsp.cpp │ │ ├── r_draw.cpp │ │ ├── r_draw16.asm │ │ ├── r_drawa.asm │ │ ├── r_edge.cpp │ │ ├── r_edgea.asm │ │ ├── r_image.cpp │ │ ├── r_light.cpp │ │ ├── r_local.hpp │ │ ├── r_main.cpp │ │ ├── r_misc.cpp │ │ ├── r_model.cpp │ │ ├── r_model.hpp │ │ ├── r_part.cpp │ │ ├── r_poly.cpp │ │ ├── r_polysa.asm │ │ ├── r_polyse.cpp │ │ ├── r_rast.cpp │ │ ├── r_scan.cpp │ │ ├── r_scana.asm │ │ ├── r_spr8.asm │ │ ├── r_sprite.cpp │ │ ├── r_surf.cpp │ │ ├── r_surf8.asm │ │ ├── r_varsa.asm │ │ ├── rand1k.hpp │ │ └── triapi.cpp ├── rw17 │ └── game │ │ ├── CMakeLists.txt │ │ ├── client │ │ ├── CMakeLists.txt │ │ ├── ClientDLL.cpp │ │ └── ClientDLL.hpp │ │ └── server │ │ ├── CMakeLists.txt │ │ ├── Game.cpp │ │ └── Game.hpp ├── temp │ ├── input │ │ ├── CMakeLists.txt │ │ └── null │ │ │ └── CMakeLists.txt │ ├── network │ │ ├── CMakeLists.txt │ │ └── null │ │ │ └── CMakeLists.txt │ ├── sound │ │ ├── CMakeLists.txt │ │ ├── LoggedSoundImpl.cpp │ │ ├── SoundImpl.cpp │ │ ├── SoundImpl.hpp │ │ ├── dsound │ │ │ ├── CMakeLists.txt │ │ │ ├── SoundImpl.cpp │ │ │ ├── snd_win.cpp │ │ │ ├── snd_win.hpp │ │ │ └── snd_win2.cpp │ │ ├── impl │ │ │ ├── null │ │ │ │ ├── snd_null.cpp │ │ │ │ └── snddma_null.cpp │ │ │ └── unix │ │ │ │ ├── snd_linux.cpp │ │ │ │ ├── snd_linux2.cpp │ │ │ │ └── snd_linux3.cpp │ │ ├── msvc │ │ │ ├── sound.vcxproj │ │ │ └── sound.vcxproj.filters │ │ └── null │ │ │ └── CMakeLists.txt │ └── system │ │ ├── CMakeLists.txt │ │ └── null │ │ └── CMakeLists.txt ├── testsuite │ ├── CMakeLists.txt │ ├── anonymizer.cpp │ ├── anonymizer.h │ ├── funccalls.cpp │ ├── funccalls.h │ ├── player.cpp │ ├── player.h │ ├── recorder.cpp │ ├── recorder.h │ ├── testsuite.cpp │ └── testsuite.h ├── tier0 │ ├── CMakeLists.txt │ ├── assert_dialog.cpp │ ├── cpu.cpp │ ├── cpu_posix.cpp │ ├── dbg.cpp │ ├── fasttimer.cpp │ ├── gsr │ │ ├── CMakeLists.txt │ │ ├── dbg.cpp │ │ └── platform_posix.cpp │ ├── mem.cpp │ ├── mem_helpers.cpp │ ├── memblockhdr.cpp │ ├── memstd.cpp │ ├── memvalidate.cpp │ ├── minidump.cpp │ ├── msvc │ │ ├── tier0.vcxproj │ │ └── tier0.vcxproj.filters │ ├── pch_tier0.cpp │ ├── platform.cpp │ ├── platform_linux.cpp │ ├── platform_win32.cpp │ ├── pme.cpp │ ├── pme_posix.cpp │ ├── testthread.cpp │ ├── thread.cpp │ ├── threadtools.cpp │ ├── tier0.cpp │ ├── validator.cpp │ ├── valobject.cpp │ ├── vcrmode_posix.cpp │ └── vprof.cpp ├── tier1 │ ├── CMakeLists.txt │ ├── KeyValues.cpp │ ├── NetAdr.cpp │ ├── bitbuf.cpp │ ├── byteswap.cpp │ ├── characterset.cpp │ ├── checksum_crc.cpp │ ├── checksum_md5.cpp │ ├── checksum_sha1.cpp │ ├── commandbuffer.cpp │ ├── convar.cpp │ ├── datamanager.cpp │ ├── diff.cpp │ ├── fileio.cpp │ ├── generichash.cpp │ ├── ilocalize.cpp │ ├── interface_src.cpp │ ├── kvpacker.cpp │ ├── lzmaDecoder.cpp │ ├── mempool.cpp │ ├── memstack.cpp │ ├── msvc │ │ ├── tier1.vcxproj │ │ └── tier1.vcxproj.filters │ ├── newbitbuf.cpp │ ├── pathmatch.cpp │ ├── pathmatch_casefolding.h │ ├── processor_detect.cpp │ ├── processor_detect_linux.cpp │ ├── qsort_s.cpp │ ├── rangecheckedvar.cpp │ ├── reliabletimer.cpp │ ├── snappy-internal.h │ ├── snappy-sinksource.cpp │ ├── snappy-stubs-internal.cpp │ ├── snappy-stubs-internal.h │ ├── snappy.cpp │ ├── sparsematrix.cpp │ ├── splitstring.cpp │ ├── stringpool.cpp │ ├── strtools.cpp │ ├── strtools_unicode.cpp │ ├── tier1.cpp │ ├── tier1.vpc │ ├── tokenreader.cpp │ ├── undiff.cpp │ ├── uniqueid.cpp │ ├── utlbinaryblock.cpp │ ├── utlbuffer.cpp │ ├── utlbufferutil.cpp │ ├── utlstring.cpp │ └── utlsymbol.cpp ├── unittests │ ├── CMakeLists.txt │ ├── TestRunner.cpp │ ├── common_tests.cpp │ ├── crc32c_tests.cpp │ ├── delta_tests.cpp │ ├── info_tests.cpp │ ├── mathlib_tests.cpp │ ├── memory_tests.cpp │ ├── msvc │ │ ├── unittests.vcxproj │ │ └── unittests.vcxproj.filters │ ├── rehlds_tests_shared.cpp │ ├── rehlds_tests_shared.h │ ├── struct_offsets_tests.cpp │ ├── tmessage_tests.cpp │ └── unicode_tests.cpp ├── vgui │ ├── .gitignore │ ├── App.cpp │ ├── Bitmap.cpp │ ├── BitmapTGA.cpp │ ├── Border.cpp │ ├── BorderLayout.cpp │ ├── BorderPair.cpp │ ├── BuildGroup.cpp │ ├── Button.cpp │ ├── ButtonGroup.cpp │ ├── CMakeLists.txt │ ├── CheckButton.cpp │ ├── Color.cpp │ ├── ConfigWizard.cpp │ ├── Cursor.cpp │ ├── DataInputStream.cpp │ ├── Desktop.cpp │ ├── DesktopIcon.cpp │ ├── EditPanel.cpp │ ├── EtchedBorder.cpp │ ├── FileInputStream.cpp │ ├── FlowLayout.cpp │ ├── FocusNavGroup.cpp │ ├── Font.cpp │ ├── Frame.cpp │ ├── GridLayout.cpp │ ├── HeaderPanel.cpp │ ├── Image.cpp │ ├── ImagePanel.cpp │ ├── IntLabel.cpp │ ├── Label.cpp │ ├── Layout.cpp │ ├── LineBorder.cpp │ ├── ListPanel.cpp │ ├── LoweredBorder.cpp │ ├── Menu.cpp │ ├── MenuItem.cpp │ ├── MenuSeparator.cpp │ ├── MessageBox.cpp │ ├── MiniApp.cpp │ ├── Panel.cpp │ ├── PopupMenu.cpp │ ├── ProgressBar.cpp │ ├── RadioButton.cpp │ ├── RaisedBorder.cpp │ ├── Scheme.cpp │ ├── ScrollBar.cpp │ ├── ScrollPanel.cpp │ ├── Slider.cpp │ ├── StackLayout.cpp │ ├── String.cpp │ ├── Surface.cpp │ ├── SurfaceBase.cpp │ ├── TabPanel.cpp │ ├── TablePanel.cpp │ ├── TaskBar.cpp │ ├── TextEntry.cpp │ ├── TextGrid.cpp │ ├── TextImage.cpp │ ├── TextPanel.cpp │ ├── ToggleButton.cpp │ ├── TreeFolder.cpp │ ├── WizardPanel.cpp │ ├── linux │ │ ├── App.cpp │ │ ├── Cursor.cpp │ │ ├── Font.cpp │ │ ├── Surface.cpp │ │ ├── fileimage.cpp │ │ ├── vfontdata.cpp │ │ └── vgui.cpp │ ├── msvc │ │ ├── vgui.vcxproj │ │ ├── vgui.vcxproj.filters │ │ ├── vgui_dll.sln │ │ └── vgui_dll.vcproj │ └── vgui.cpp ├── vgui2 │ ├── CMakeLists.txt │ ├── controls │ │ ├── AnimatingImagePanel.cpp │ │ ├── AnimationController.cpp │ │ ├── BitmapImagePanel.cpp │ │ ├── BuildFactoryHelper.cpp │ │ ├── BuildGroup.cpp │ │ ├── BuildModeDialog.cpp │ │ ├── Button.cpp │ │ ├── CMakeLists.txt │ │ ├── CheckButton.cpp │ │ ├── CheckButtonList.cpp │ │ ├── ComboBox.cpp │ │ ├── Controls.cpp │ │ ├── DirectorySelectDialog.cpp │ │ ├── Divider.cpp │ │ ├── EditablePanel.cpp │ │ ├── ExpandButton.cpp │ │ ├── FileOpenDialog.cpp │ │ ├── FocusNavGroup.cpp │ │ ├── Frame.cpp │ │ ├── GraphPanel.cpp │ │ ├── HTML.cpp │ │ ├── Image.cpp │ │ ├── ImageList.cpp │ │ ├── ImagePanel.cpp │ │ ├── InputDialog.cpp │ │ ├── KeyBindingHelpDialog.cpp │ │ ├── KeyBoardEditorDialog.cpp │ │ ├── Label.cpp │ │ ├── ListPanel.cpp │ │ ├── ListViewPanel.cpp │ │ ├── Menu.cpp │ │ ├── MenuBar.cpp │ │ ├── MenuButton.cpp │ │ ├── MenuItem.cpp │ │ ├── MessageBox.cpp │ │ ├── Panel.cpp │ │ ├── PanelListPanel.cpp │ │ ├── ProgressBar.cpp │ │ ├── ProgressBox.cpp │ │ ├── PropertyDialog.cpp │ │ ├── PropertyPage.cpp │ │ ├── PropertySheet.cpp │ │ ├── QueryBox.cpp │ │ ├── RadioButton.cpp │ │ ├── RichText.cpp │ │ ├── ScrollBar.cpp │ │ ├── ScrollBarSlider.cpp │ │ ├── SectionedListPanel.cpp │ │ ├── Slider.cpp │ │ ├── Splitter.cpp │ │ ├── TextEntry.cpp │ │ ├── TextImage.cpp │ │ ├── ToggleButton.cpp │ │ ├── ToolWindow.cpp │ │ ├── Tooltip.cpp │ │ ├── TreeView.cpp │ │ ├── TreeViewListControl.cpp │ │ ├── URLLabel.cpp │ │ ├── WizardPanel.cpp │ │ └── WizardSubPanel.cpp │ ├── src │ │ ├── Border.hpp │ │ ├── CMakeLists.txt │ │ ├── HTMLWindow.hpp │ │ ├── Image.hpp │ │ ├── Input.hpp │ │ ├── InputInternal.hpp │ │ ├── Localize.hpp │ │ ├── Panel.hpp │ │ ├── Scheme.hpp │ │ ├── SchemeManager.hpp │ │ ├── Surface.hpp │ │ ├── System.hpp │ │ ├── VGUI.hpp │ │ ├── custom │ │ │ ├── Border.cpp │ │ │ ├── HTMLWindow.cpp │ │ │ ├── Image.cpp │ │ │ ├── Input.cpp │ │ │ ├── InputInternal.cpp │ │ │ ├── Localize.cpp │ │ │ ├── Panel.cpp │ │ │ ├── Scheme.cpp │ │ │ ├── SchemeManager.cpp │ │ │ ├── Surface.cpp │ │ │ ├── System.cpp │ │ │ └── VGUI.cpp │ │ ├── msvc │ │ │ ├── vgui2.vcxproj │ │ │ └── vgui2.vcxproj.filters │ │ └── null │ │ │ ├── Border.cpp │ │ │ ├── HTMLWindow.cpp │ │ │ ├── Image.cpp │ │ │ ├── Input.cpp │ │ │ ├── InputInternal.cpp │ │ │ ├── Localize.cpp │ │ │ ├── Panel.cpp │ │ │ ├── Scheme.cpp │ │ │ ├── SchemeManager.cpp │ │ │ ├── Surface.cpp │ │ │ ├── System.cpp │ │ │ └── VGUI.cpp │ └── vgui_surfacelib │ │ ├── FontAmalgam.cpp │ │ ├── FontAmalgam.h │ │ ├── FontManager.cpp │ │ ├── FontManager.h │ │ ├── Win32Font.cpp │ │ ├── Win32Font.h │ │ ├── linuxfont.cpp │ │ └── linuxfont.h ├── voice │ ├── CMakeLists.txt │ ├── null │ │ └── CMakeLists.txt │ └── speex │ │ └── CMakeLists.txt └── vstdlib │ ├── CMakeLists.txt │ ├── CommandLineParam.cpp │ ├── CommandLineParam.hpp │ ├── KeyValuesSystem.cpp │ ├── KeyValuesSystem.hpp │ ├── commandline.cpp │ ├── commandline.hpp │ ├── coroutine.cpp │ ├── cvar.cpp │ ├── msvc │ ├── vstdlib.vcxproj │ └── vstdlib.vcxproj.filters │ ├── osversion.cpp │ ├── random.cpp │ ├── stringnormalize.cpp │ ├── stringnormalize.hpp │ └── strtools.cpp └── projects ├── engine-ac96.mdsp ├── engine.mdsp └── launcher.mdsp /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/.clang-format -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/.travis.yml -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /CREDITS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/CREDITS.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/README.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cmake/Modules/FindSDL2.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/cmake/Modules/FindSDL2.cmake -------------------------------------------------------------------------------- /dep/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/3dfx_glq.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/docs/3dfx_glq.txt -------------------------------------------------------------------------------- /docs/ClProtocolParse.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/docs/ClProtocolParse.txt -------------------------------------------------------------------------------- /docs/MetamodSupport.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/docs/MetamodSupport.txt -------------------------------------------------------------------------------- /docs/OGSLogo1280x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/docs/OGSLogo1280x512.png -------------------------------------------------------------------------------- /docs/OGSLogo1920x1080.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/docs/OGSLogo1920x1080.png -------------------------------------------------------------------------------- /docs/OGSLogo1920x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/docs/OGSLogo1920x512.png -------------------------------------------------------------------------------- /docs/OGSLogo512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/docs/OGSLogo512x512.png -------------------------------------------------------------------------------- /docs/TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/docs/TODO.md -------------------------------------------------------------------------------- /docs/cmdlist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/docs/cmdlist.txt -------------------------------------------------------------------------------- /docs/cmds.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/docs/cmds.txt -------------------------------------------------------------------------------- /docs/docs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/docs/docs.txt -------------------------------------------------------------------------------- /docs/docs/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/docs/docs/INSTALL -------------------------------------------------------------------------------- /docs/docs/INSTALL.Quake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/docs/docs/INSTALL.Quake -------------------------------------------------------------------------------- /docs/docs/INSTALL.Quake2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/docs/docs/INSTALL.Quake2 -------------------------------------------------------------------------------- /docs/docs/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/docs/docs/README -------------------------------------------------------------------------------- /docs/docs/README.X11: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/docs/docs/README.X11 -------------------------------------------------------------------------------- /docs/docs/data/COMEXP.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/docs/docs/data/COMEXP.TXT -------------------------------------------------------------------------------- /docs/docs/data/HELP.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/docs/docs/data/HELP.TXT -------------------------------------------------------------------------------- /docs/docs/data/LICINFO.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/docs/docs/data/LICINFO.TXT -------------------------------------------------------------------------------- /docs/docs/data/MANUAL.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/docs/docs/data/MANUAL.TXT -------------------------------------------------------------------------------- /docs/docs/data/ORDER.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/docs/docs/data/ORDER.TXT -------------------------------------------------------------------------------- /docs/docs/data/README.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/docs/docs/data/README.TXT -------------------------------------------------------------------------------- /docs/docs/data/RLICNSE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/docs/docs/data/RLICNSE.TXT -------------------------------------------------------------------------------- /docs/docs/data/SLICNSE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/docs/docs/data/SLICNSE.TXT -------------------------------------------------------------------------------- /docs/docs/data/TECHINFO.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/docs/docs/data/TECHINFO.TXT -------------------------------------------------------------------------------- /docs/docs/readme.glquake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/docs/docs/readme.glquake -------------------------------------------------------------------------------- /docs/docs/readme.squake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/docs/docs/readme.squake -------------------------------------------------------------------------------- /docs/hltvmodules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/docs/hltvmodules.txt -------------------------------------------------------------------------------- /docs/joystick.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/docs/joystick.txt -------------------------------------------------------------------------------- /docs/joystick_glq.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/docs/joystick_glq.txt -------------------------------------------------------------------------------- /docs/memory.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/docs/memory.txt -------------------------------------------------------------------------------- /docs/module_exports.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/docs/module_exports.txt -------------------------------------------------------------------------------- /docs/move.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/docs/move.txt -------------------------------------------------------------------------------- /docs/newnet.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/docs/newnet.txt -------------------------------------------------------------------------------- /docs/notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/docs/notes.txt -------------------------------------------------------------------------------- /docs/qw2do.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/docs/qw2do.txt -------------------------------------------------------------------------------- /docs/qwchangelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/docs/qwchangelog.txt -------------------------------------------------------------------------------- /docs/qwcl-readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/docs/qwcl-readme.txt -------------------------------------------------------------------------------- /docs/qwrlnote.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/docs/qwrlnote.txt -------------------------------------------------------------------------------- /docs/readme.qwcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/docs/readme.qwcl -------------------------------------------------------------------------------- /docs/readme_glq.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/docs/readme_glq.txt -------------------------------------------------------------------------------- /docs/rehlds_sync.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/docs/rehlds_sync.txt -------------------------------------------------------------------------------- /docs/vstdlib6153exports.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/docs/vstdlib6153exports.txt -------------------------------------------------------------------------------- /format.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/format.sh -------------------------------------------------------------------------------- /msvc/OGS-shared.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/msvc/OGS-shared.sln -------------------------------------------------------------------------------- /msvc/OGS.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/msvc/OGS.sln -------------------------------------------------------------------------------- /ogs/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/CMakeLists.txt -------------------------------------------------------------------------------- /ogs/cl_dll/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ogs/cl_dll/client/Exports.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/cl_dll/client/Exports.h -------------------------------------------------------------------------------- /ogs/cl_dll/client/cdll_int.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/cl_dll/client/cdll_int.cpp -------------------------------------------------------------------------------- /ogs/cl_dll/client/cl_dll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/cl_dll/client/cl_dll.h -------------------------------------------------------------------------------- /ogs/cl_dll/client/cl_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/cl_dll/client/cl_util.h -------------------------------------------------------------------------------- /ogs/cl_dll/client/com_weapons.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/cl_dll/client/com_weapons.cpp -------------------------------------------------------------------------------- /ogs/cl_dll/client/com_weapons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/cl_dll/client/com_weapons.h -------------------------------------------------------------------------------- /ogs/cl_dll/client/demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/cl_dll/client/demo.cpp -------------------------------------------------------------------------------- /ogs/cl_dll/client/demo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/cl_dll/client/demo.h -------------------------------------------------------------------------------- /ogs/cl_dll/client/entity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/cl_dll/client/entity.cpp -------------------------------------------------------------------------------- /ogs/cl_dll/client/eventscripts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/cl_dll/client/eventscripts.h -------------------------------------------------------------------------------- /ogs/cl_dll/client/global_consts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/cl_dll/client/global_consts.h -------------------------------------------------------------------------------- /ogs/cl_dll/client/hl/hl_events.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/cl_dll/client/hl/hl_events.cpp -------------------------------------------------------------------------------- /ogs/cl_dll/client/hud.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/cl_dll/client/hud.cpp -------------------------------------------------------------------------------- /ogs/cl_dll/client/hud.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/cl_dll/client/hud.h -------------------------------------------------------------------------------- /ogs/cl_dll/client/hud_bench.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/cl_dll/client/hud_bench.cpp -------------------------------------------------------------------------------- /ogs/cl_dll/client/hud_iface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/cl_dll/client/hud_iface.h -------------------------------------------------------------------------------- /ogs/cl_dll/client/hud_servers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/cl_dll/client/hud_servers.cpp -------------------------------------------------------------------------------- /ogs/cl_dll/client/hud_servers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/cl_dll/client/hud_servers.h -------------------------------------------------------------------------------- /ogs/cl_dll/client/in_camera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/cl_dll/client/in_camera.cpp -------------------------------------------------------------------------------- /ogs/cl_dll/client/in_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/cl_dll/client/in_defs.h -------------------------------------------------------------------------------- /ogs/cl_dll/client/input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/cl_dll/client/input.cpp -------------------------------------------------------------------------------- /ogs/cl_dll/client/inputw32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/cl_dll/client/inputw32.cpp -------------------------------------------------------------------------------- /ogs/cl_dll/client/interpolation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/cl_dll/client/interpolation.h -------------------------------------------------------------------------------- /ogs/cl_dll/client/kbutton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/cl_dll/client/kbutton.h -------------------------------------------------------------------------------- /ogs/cl_dll/client/menu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/cl_dll/client/menu.cpp -------------------------------------------------------------------------------- /ogs/cl_dll/client/player_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/cl_dll/client/player_info.h -------------------------------------------------------------------------------- /ogs/cl_dll/client/saytext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/cl_dll/client/saytext.cpp -------------------------------------------------------------------------------- /ogs/cl_dll/client/soundsystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/cl_dll/client/soundsystem.cpp -------------------------------------------------------------------------------- /ogs/cl_dll/client/studio_util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/cl_dll/client/studio_util.cpp -------------------------------------------------------------------------------- /ogs/cl_dll/client/studio_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/cl_dll/client/studio_util.h -------------------------------------------------------------------------------- /ogs/cl_dll/client/text_message.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/cl_dll/client/text_message.cpp -------------------------------------------------------------------------------- /ogs/cl_dll/client/tf_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/cl_dll/client/tf_defs.h -------------------------------------------------------------------------------- /ogs/cl_dll/client/tri.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/cl_dll/client/tri.cpp -------------------------------------------------------------------------------- /ogs/cl_dll/client/tri.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/cl_dll/client/tri.h -------------------------------------------------------------------------------- /ogs/cl_dll/client/util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/cl_dll/client/util.cpp -------------------------------------------------------------------------------- /ogs/cl_dll/client/util_vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/cl_dll/client/util_vector.h -------------------------------------------------------------------------------- /ogs/cl_dll/client/vgui_int.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/cl_dll/client/vgui_int.cpp -------------------------------------------------------------------------------- /ogs/cl_dll/client/vgui_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/cl_dll/client/vgui_int.h -------------------------------------------------------------------------------- /ogs/cl_dll/client/view.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/cl_dll/client/view.cpp -------------------------------------------------------------------------------- /ogs/cl_dll/client/view.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/cl_dll/client/view.h -------------------------------------------------------------------------------- /ogs/common/BaseSystemModule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/common/BaseSystemModule.cpp -------------------------------------------------------------------------------- /ogs/common/BaseSystemModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/common/BaseSystemModule.h -------------------------------------------------------------------------------- /ogs/common/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/common/CMakeLists.txt -------------------------------------------------------------------------------- /ogs/common/FactorySharedLib.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/common/FactorySharedLib.hpp -------------------------------------------------------------------------------- /ogs/common/ObjectContainer.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ogs/common/ObjectContainer.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ogs/common/ObjectDictionary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/common/ObjectDictionary.cpp -------------------------------------------------------------------------------- /ogs/common/ObjectDictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/common/ObjectDictionary.h -------------------------------------------------------------------------------- /ogs/common/ObjectList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/common/ObjectList.cpp -------------------------------------------------------------------------------- /ogs/common/ObjectList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/common/ObjectList.h -------------------------------------------------------------------------------- /ogs/common/SteamAppStartUp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/common/SteamAppStartUp.cpp -------------------------------------------------------------------------------- /ogs/common/SteamAppStartUp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/common/SteamAppStartUp.h -------------------------------------------------------------------------------- /ogs/common/TextConsoleUnix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/common/TextConsoleUnix.cpp -------------------------------------------------------------------------------- /ogs/common/TextConsoleUnix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/common/TextConsoleUnix.h -------------------------------------------------------------------------------- /ogs/common/TextConsoleWin32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/common/TextConsoleWin32.cpp -------------------------------------------------------------------------------- /ogs/common/TextConsoleWin32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/common/TextConsoleWin32.h -------------------------------------------------------------------------------- /ogs/common/TokenLine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/common/TokenLine.cpp -------------------------------------------------------------------------------- /ogs/common/TokenLine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/common/TokenLine.h -------------------------------------------------------------------------------- /ogs/common/maintypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/common/maintypes.h -------------------------------------------------------------------------------- /ogs/common/mathlib_local.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/common/mathlib_local.hpp -------------------------------------------------------------------------------- /ogs/common/netapi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/common/netapi.cpp -------------------------------------------------------------------------------- /ogs/common/netapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/common/netapi.h -------------------------------------------------------------------------------- /ogs/common/stdc++compat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/common/stdc++compat.cpp -------------------------------------------------------------------------------- /ogs/common/textconsole.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/common/textconsole.cpp -------------------------------------------------------------------------------- /ogs/common/textconsole.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/common/textconsole.h -------------------------------------------------------------------------------- /ogs/dbg/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/dbg/CMakeLists.txt -------------------------------------------------------------------------------- /ogs/dbg/dbg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/dbg/dbg.cpp -------------------------------------------------------------------------------- /ogs/dbg/msvc/dbg.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/dbg/msvc/dbg.vcxproj -------------------------------------------------------------------------------- /ogs/dbg/msvc/dbg.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/dbg/msvc/dbg.vcxproj.filters -------------------------------------------------------------------------------- /ogs/dedicated-legacy/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/dedicated-legacy/Makefile -------------------------------------------------------------------------------- /ogs/dedicated-legacy/conproc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/dedicated-legacy/conproc.cpp -------------------------------------------------------------------------------- /ogs/dedicated-legacy/conproc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/dedicated-legacy/conproc.hpp -------------------------------------------------------------------------------- /ogs/dedicated-legacy/dedicated.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/dedicated-legacy/dedicated.hpp -------------------------------------------------------------------------------- /ogs/dedicated-legacy/dedicated.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/dedicated-legacy/dedicated.rc -------------------------------------------------------------------------------- /ogs/dedicated-legacy/engine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/dedicated-legacy/engine.cpp -------------------------------------------------------------------------------- /ogs/dedicated-legacy/exports.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/dedicated-legacy/exports.hpp -------------------------------------------------------------------------------- /ogs/dedicated-legacy/resource.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/dedicated-legacy/resource.hpp -------------------------------------------------------------------------------- /ogs/dedicated-legacy/sys_ded.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/dedicated-legacy/sys_ded.cpp -------------------------------------------------------------------------------- /ogs/dedicated-legacy/sys_ded.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/dedicated-legacy/sys_ded.hpp -------------------------------------------------------------------------------- /ogs/dedicated/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/dedicated/CMakeLists.txt -------------------------------------------------------------------------------- /ogs/dedicated/dedicated.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/dedicated/dedicated.rc -------------------------------------------------------------------------------- /ogs/dedicated/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/dedicated/icon.ico -------------------------------------------------------------------------------- /ogs/dedicated/msvc/PostBuild.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/dedicated/msvc/PostBuild.bat -------------------------------------------------------------------------------- /ogs/dedicated/msvc/dedicated.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/dedicated/msvc/dedicated.sln -------------------------------------------------------------------------------- /ogs/dedicated/msvc/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/dedicated/msvc/resource.h -------------------------------------------------------------------------------- /ogs/dedicated/src/commandline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/dedicated/src/commandline.cpp -------------------------------------------------------------------------------- /ogs/dedicated/src/conproc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/dedicated/src/conproc.cpp -------------------------------------------------------------------------------- /ogs/dedicated/src/conproc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/dedicated/src/conproc.h -------------------------------------------------------------------------------- /ogs/dedicated/src/dedicated.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/dedicated/src/dedicated.h -------------------------------------------------------------------------------- /ogs/dedicated/src/icommandline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/dedicated/src/icommandline.h -------------------------------------------------------------------------------- /ogs/dedicated/src/isys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/dedicated/src/isys.h -------------------------------------------------------------------------------- /ogs/dedicated/src/precompiled.cpp: -------------------------------------------------------------------------------- 1 | #include "precompiled.h" -------------------------------------------------------------------------------- /ogs/dedicated/src/precompiled.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/dedicated/src/precompiled.h -------------------------------------------------------------------------------- /ogs/dedicated/src/sys_ded.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/dedicated/src/sys_ded.cpp -------------------------------------------------------------------------------- /ogs/dedicated/src/sys_ded.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/dedicated/src/sys_ded.h -------------------------------------------------------------------------------- /ogs/dedicated/src/sys_linux.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/dedicated/src/sys_linux.cpp -------------------------------------------------------------------------------- /ogs/dedicated/src/sys_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/dedicated/src/sys_window.cpp -------------------------------------------------------------------------------- /ogs/dedicated/unused/dedicated.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/dedicated/unused/dedicated.ico -------------------------------------------------------------------------------- /ogs/dlls/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ogs/dlls/cstrike/weapontype.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/dlls/cstrike/weapontype.cpp -------------------------------------------------------------------------------- /ogs/dlls/cstrike/weapontype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/dlls/cstrike/weapontype.h -------------------------------------------------------------------------------- /ogs/dlls/null/GameDLLFuncsNull.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/dlls/null/GameDLLFuncsNull.cpp -------------------------------------------------------------------------------- /ogs/dlls/server/Export.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/dlls/server/Export.cpp -------------------------------------------------------------------------------- /ogs/dlls/server/GameDLL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/dlls/server/GameDLL.cpp -------------------------------------------------------------------------------- /ogs/dlls/server/ServerGameDLL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/dlls/server/ServerGameDLL.cpp -------------------------------------------------------------------------------- /ogs/dlls/server/Wxdebug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/dlls/server/Wxdebug.cpp -------------------------------------------------------------------------------- /ogs/dlls/server/cbase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/dlls/server/cbase.h -------------------------------------------------------------------------------- /ogs/dlls/server/client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/dlls/server/client.cpp -------------------------------------------------------------------------------- /ogs/dlls/server/client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/dlls/server/client.h -------------------------------------------------------------------------------- /ogs/dlls/server/enginecallback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/dlls/server/enginecallback.h -------------------------------------------------------------------------------- /ogs/dlls/server/extdll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/dlls/server/extdll.h -------------------------------------------------------------------------------- /ogs/dlls/server/game.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/dlls/server/game.cpp -------------------------------------------------------------------------------- /ogs/dlls/server/game.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/dlls/server/game.h -------------------------------------------------------------------------------- /ogs/dlls/server/util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/dlls/server/util.cpp -------------------------------------------------------------------------------- /ogs/dlls/server/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/dlls/server/util.h -------------------------------------------------------------------------------- /ogs/dlls/server/wxdebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/dlls/server/wxdebug.h -------------------------------------------------------------------------------- /ogs/engine/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/engine/CMakeLists.txt -------------------------------------------------------------------------------- /ogs/engine/ac96/BuildInfoConfig.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/engine/ac96/BuildInfoConfig.in -------------------------------------------------------------------------------- /ogs/engine/ac96/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/engine/ac96/CMakeLists.txt -------------------------------------------------------------------------------- /ogs/engine/ac96/client/cdll_exp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/engine/ac96/client/cdll_exp.h -------------------------------------------------------------------------------- /ogs/engine/ac96/client/cl_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/engine/ac96/client/cl_demo.cpp -------------------------------------------------------------------------------- /ogs/engine/ac96/client/cl_demo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/engine/ac96/client/cl_demo.hpp -------------------------------------------------------------------------------- /ogs/engine/ac96/client/cl_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/engine/ac96/client/cl_main.cpp -------------------------------------------------------------------------------- /ogs/engine/ac96/client/cl_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/engine/ac96/client/cl_main.h -------------------------------------------------------------------------------- /ogs/engine/ac96/client/cl_parse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/engine/ac96/client/cl_parse.h -------------------------------------------------------------------------------- /ogs/engine/ac96/client/client.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/engine/ac96/client/client.hpp -------------------------------------------------------------------------------- /ogs/engine/ac96/client/frame.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/engine/ac96/client/frame.hpp -------------------------------------------------------------------------------- /ogs/engine/ac96/console/cbuf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/engine/ac96/console/cbuf.cpp -------------------------------------------------------------------------------- /ogs/engine/ac96/console/cbuf.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/engine/ac96/console/cbuf.hpp -------------------------------------------------------------------------------- /ogs/engine/ac96/console/cmd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/engine/ac96/console/cmd.cpp -------------------------------------------------------------------------------- /ogs/engine/ac96/console/cmd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/engine/ac96/console/cmd.hpp -------------------------------------------------------------------------------- /ogs/engine/ac96/console/cvar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/engine/ac96/console/cvar.cpp -------------------------------------------------------------------------------- /ogs/engine/ac96/console/cvar.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/engine/ac96/console/cvar.hpp -------------------------------------------------------------------------------- /ogs/engine/ac96/engine_pch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/engine/ac96/engine_pch.hpp -------------------------------------------------------------------------------- /ogs/engine/ac96/filesystem/wad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/engine/ac96/filesystem/wad.cpp -------------------------------------------------------------------------------- /ogs/engine/ac96/filesystem/wad.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/engine/ac96/filesystem/wad.hpp -------------------------------------------------------------------------------- /ogs/engine/ac96/graphics/vid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/engine/ac96/graphics/vid.cpp -------------------------------------------------------------------------------- /ogs/engine/ac96/graphics/vid.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/engine/ac96/graphics/vid.hpp -------------------------------------------------------------------------------- /ogs/engine/ac96/graphics/view.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/engine/ac96/graphics/view.cpp -------------------------------------------------------------------------------- /ogs/engine/ac96/graphics/view.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/engine/ac96/graphics/view.hpp -------------------------------------------------------------------------------- /ogs/engine/ac96/hdrfix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/engine/ac96/hdrfix.cpp -------------------------------------------------------------------------------- /ogs/engine/ac96/impl/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ogs/engine/ac96/impl/external/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ogs/engine/ac96/input/input.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/engine/ac96/input/input.hpp -------------------------------------------------------------------------------- /ogs/engine/ac96/input/keys.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/engine/ac96/input/keys.cpp -------------------------------------------------------------------------------- /ogs/engine/ac96/input/keys.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/engine/ac96/input/keys.hpp -------------------------------------------------------------------------------- /ogs/engine/ac96/math/crc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/engine/ac96/math/crc.cpp -------------------------------------------------------------------------------- /ogs/engine/ac96/math/mathlib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/engine/ac96/math/mathlib.cpp -------------------------------------------------------------------------------- /ogs/engine/ac96/math/mathlib_e.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/engine/ac96/math/mathlib_e.hpp -------------------------------------------------------------------------------- /ogs/engine/ac96/math/md5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/engine/ac96/math/md5.cpp -------------------------------------------------------------------------------- /ogs/engine/ac96/memory/cache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/engine/ac96/memory/cache.cpp -------------------------------------------------------------------------------- /ogs/engine/ac96/memory/hunk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/engine/ac96/memory/hunk.cpp -------------------------------------------------------------------------------- /ogs/engine/ac96/memory/mem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/engine/ac96/memory/mem.cpp -------------------------------------------------------------------------------- /ogs/engine/ac96/memory/mem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/engine/ac96/memory/mem.hpp -------------------------------------------------------------------------------- /ogs/engine/ac96/memory/zone.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/engine/ac96/memory/zone.cpp -------------------------------------------------------------------------------- /ogs/engine/ac96/memory/zone.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/engine/ac96/memory/zone.hpp -------------------------------------------------------------------------------- /ogs/engine/ac96/network/delta.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/engine/ac96/network/delta.cpp -------------------------------------------------------------------------------- /ogs/engine/ac96/network/delta.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/engine/ac96/network/delta.hpp -------------------------------------------------------------------------------- /ogs/engine/ac96/network/filter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/engine/ac96/network/filter.hpp -------------------------------------------------------------------------------- /ogs/engine/ac96/network/net.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/engine/ac96/network/net.hpp -------------------------------------------------------------------------------- /ogs/engine/ac96/network/net_ws.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/engine/ac96/network/net_ws.cpp -------------------------------------------------------------------------------- /ogs/engine/ac96/physics/pmove.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/engine/ac96/physics/pmove.cpp -------------------------------------------------------------------------------- /ogs/engine/ac96/physics/pmove.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/engine/ac96/physics/pmove.hpp -------------------------------------------------------------------------------- /ogs/engine/ac96/physics/world.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/engine/ac96/physics/world.cpp -------------------------------------------------------------------------------- /ogs/engine/ac96/physics/world.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/engine/ac96/physics/world.hpp -------------------------------------------------------------------------------- /ogs/engine/ac96/precompiled.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/engine/ac96/precompiled.cpp -------------------------------------------------------------------------------- /ogs/engine/ac96/precompiled.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/engine/ac96/precompiled.hpp -------------------------------------------------------------------------------- /ogs/engine/ac96/progs/pr_cmds.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/engine/ac96/progs/pr_cmds.cpp -------------------------------------------------------------------------------- /ogs/engine/ac96/progs/pr_cmds.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/engine/ac96/progs/pr_cmds.hpp -------------------------------------------------------------------------------- /ogs/engine/ac96/progs/pr_dlls.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/engine/ac96/progs/pr_dlls.hpp -------------------------------------------------------------------------------- /ogs/engine/ac96/progs/pr_edict.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/engine/ac96/progs/pr_edict.cpp -------------------------------------------------------------------------------- /ogs/engine/ac96/progs/pr_edict.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/engine/ac96/progs/pr_edict.hpp -------------------------------------------------------------------------------- /ogs/engine/ac96/resources/DetailTexture.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | void DT_Initialize(); -------------------------------------------------------------------------------- /ogs/engine/ac96/scene/chase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/engine/ac96/scene/chase.cpp -------------------------------------------------------------------------------- /ogs/engine/ac96/scene/chase.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/engine/ac96/scene/chase.hpp -------------------------------------------------------------------------------- /ogs/engine/ac96/scene/cl_cam.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/engine/ac96/scene/cl_cam.cpp -------------------------------------------------------------------------------- /ogs/engine/ac96/scene/cl_ents.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/engine/ac96/scene/cl_ents.cpp -------------------------------------------------------------------------------- /ogs/engine/ac96/scene/cl_ents.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/engine/ac96/scene/cl_ents.h -------------------------------------------------------------------------------- /ogs/engine/ac96/scene/cl_pred.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/engine/ac96/scene/cl_pred.cpp -------------------------------------------------------------------------------- /ogs/engine/ac96/scene/cl_pred.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/engine/ac96/scene/cl_pred.h -------------------------------------------------------------------------------- /ogs/engine/ac96/scene/cl_tent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/engine/ac96/scene/cl_tent.cpp -------------------------------------------------------------------------------- /ogs/engine/ac96/scene/cl_tent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/engine/ac96/scene/cl_tent.h -------------------------------------------------------------------------------- /ogs/engine/ac96/scene/efx_api.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/engine/ac96/scene/efx_api.cpp -------------------------------------------------------------------------------- /ogs/engine/ac96/scene/event.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/engine/ac96/scene/event.hpp -------------------------------------------------------------------------------- /ogs/engine/ac96/scene/eventapi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/engine/ac96/scene/eventapi.cpp -------------------------------------------------------------------------------- /ogs/engine/ac96/scene/eventapi.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/engine/ac96/scene/eventapi.hpp -------------------------------------------------------------------------------- /ogs/engine/ac96/server/server.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/engine/ac96/server/server.hpp -------------------------------------------------------------------------------- /ogs/engine/ac96/server/sv_log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/engine/ac96/server/sv_log.cpp -------------------------------------------------------------------------------- /ogs/engine/ac96/server/sv_log.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/engine/ac96/server/sv_log.hpp -------------------------------------------------------------------------------- /ogs/engine/ac96/server/sv_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/engine/ac96/server/sv_main.cpp -------------------------------------------------------------------------------- /ogs/engine/ac96/server/sv_upld.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/engine/ac96/server/sv_upld.cpp -------------------------------------------------------------------------------- /ogs/engine/ac96/server/sv_upld.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/engine/ac96/server/sv_upld.hpp -------------------------------------------------------------------------------- /ogs/engine/ac96/server/sv_user.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/engine/ac96/server/sv_user.cpp -------------------------------------------------------------------------------- /ogs/engine/ac96/sound/Sound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/engine/ac96/sound/Sound.cpp -------------------------------------------------------------------------------- /ogs/engine/ac96/sound/sound.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/engine/ac96/sound/sound.hpp -------------------------------------------------------------------------------- /ogs/engine/ac96/system/host.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/engine/ac96/system/host.cpp -------------------------------------------------------------------------------- /ogs/engine/ac96/system/host.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/engine/ac96/system/host.hpp -------------------------------------------------------------------------------- /ogs/engine/ac96/system/info.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/engine/ac96/system/info.cpp -------------------------------------------------------------------------------- /ogs/engine/ac96/system/info.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/engine/ac96/system/info.hpp -------------------------------------------------------------------------------- /ogs/engine/ac96/ui/tutor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/engine/ac96/ui/tutor.cpp -------------------------------------------------------------------------------- /ogs/engine/ac96/ui/tutor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/engine/ac96/ui/tutor.hpp -------------------------------------------------------------------------------- /ogs/engine/ac96/ui/vgui_int.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/engine/ac96/ui/vgui_int.cpp -------------------------------------------------------------------------------- /ogs/engine/ac96/ui/vgui_int.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/engine/ac96/ui/vgui_int.hpp -------------------------------------------------------------------------------- /ogs/engine/ac96/voice/voice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/engine/ac96/voice/voice.cpp -------------------------------------------------------------------------------- /ogs/engine/ac96/voice/voice.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/engine/ac96/voice/voice.hpp -------------------------------------------------------------------------------- /ogs/engine/null/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ogs/engine/null/engineapi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/engine/null/engineapi.cpp -------------------------------------------------------------------------------- /ogs/engine/null/engineapi.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/engine/null/engineapi.hpp -------------------------------------------------------------------------------- /ogs/engine/rw17/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/engine/rw17/CMakeLists.txt -------------------------------------------------------------------------------- /ogs/engine/rw17/console/cmd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/engine/rw17/console/cmd.cpp -------------------------------------------------------------------------------- /ogs/engine/rw17/console/cmd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/engine/rw17/console/cmd.hpp -------------------------------------------------------------------------------- /ogs/engine/rw17/engine_pch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/engine/rw17/engine_pch.hpp -------------------------------------------------------------------------------- /ogs/engine/rw17/game/EventListener_Game.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ogs/engine/rw17/game/EventListener_Game.hpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ogs/engine/rw17/graphics/RenderProvider.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ogs/engine/rw17/impl/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ogs/engine/rw17/impl/Window.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/engine/rw17/impl/Window.hpp -------------------------------------------------------------------------------- /ogs/engine/rw17/input/Input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/engine/rw17/input/Input.cpp -------------------------------------------------------------------------------- /ogs/engine/rw17/input/Input.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/engine/rw17/input/Input.hpp -------------------------------------------------------------------------------- /ogs/engine/rw17/input/Keyboard.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ogs/engine/rw17/input/keys.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/engine/rw17/input/keys.cpp -------------------------------------------------------------------------------- /ogs/engine/rw17/input/keys.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/engine/rw17/input/keys.hpp -------------------------------------------------------------------------------- /ogs/engine/rw17/math/crc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/engine/rw17/math/crc.cpp -------------------------------------------------------------------------------- /ogs/engine/rw17/math/math.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/engine/rw17/math/math.hpp -------------------------------------------------------------------------------- /ogs/engine/rw17/math/md5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/engine/rw17/math/md5.cpp -------------------------------------------------------------------------------- /ogs/engine/rw17/memory/LegacyExports.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ogs/engine/rw17/memory/LegacyExports.hpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ogs/engine/rw17/memory/MemAllocator.hpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ogs/engine/rw17/memory/hunk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/engine/rw17/memory/hunk.cpp -------------------------------------------------------------------------------- /ogs/engine/rw17/memory/hunk.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/engine/rw17/memory/hunk.hpp -------------------------------------------------------------------------------- /ogs/engine/rw17/memory/mem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/engine/rw17/memory/mem.cpp -------------------------------------------------------------------------------- /ogs/engine/rw17/memory/mem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/engine/rw17/memory/mem.hpp -------------------------------------------------------------------------------- /ogs/engine/rw17/memory/zone.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/engine/rw17/memory/zone.cpp -------------------------------------------------------------------------------- /ogs/engine/rw17/memory/zone.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/engine/rw17/memory/zone.hpp -------------------------------------------------------------------------------- /ogs/engine/rw17/network/NetChan.hpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ogs/engine/rw17/network/ProtocolProxy.cpp: -------------------------------------------------------------------------------- 1 | #include "network/ProtocolProxy.hpp" -------------------------------------------------------------------------------- /ogs/engine/rw17/physics/LegacyPhysicsEntityListener.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ogs/engine/rw17/precompiled.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/engine/rw17/precompiled.cpp -------------------------------------------------------------------------------- /ogs/engine/rw17/precompiled.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/engine/rw17/precompiled.hpp -------------------------------------------------------------------------------- /ogs/engine/rw17/resources/WadManager.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ogs/engine/rw17/resources/WadManager.hpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ogs/engine/rw17/scene/MapHandler.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ogs/engine/rw17/scene/SaveHandler.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ogs/engine/rw17/scene/SaveHandler.hpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ogs/engine/rw17/sound/ISoundData.hpp: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | struct ISoundData 4 | { 5 | }; -------------------------------------------------------------------------------- /ogs/engine/rw17/sound/Sound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/engine/rw17/sound/Sound.cpp -------------------------------------------------------------------------------- /ogs/engine/rw17/sound/Sound.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/engine/rw17/sound/Sound.hpp -------------------------------------------------------------------------------- /ogs/engine/rw17/system/Game.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/engine/rw17/system/Game.cpp -------------------------------------------------------------------------------- /ogs/engine/rw17/system/Game.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/engine/rw17/system/Game.hpp -------------------------------------------------------------------------------- /ogs/engine/rw17/system/Host.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/engine/rw17/system/Host.cpp -------------------------------------------------------------------------------- /ogs/engine/rw17/system/Host.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/engine/rw17/system/Host.hpp -------------------------------------------------------------------------------- /ogs/engine/rw17/ui/BaseUI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/engine/rw17/ui/BaseUI.cpp -------------------------------------------------------------------------------- /ogs/engine/rw17/ui/BaseUI.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/engine/rw17/ui/BaseUI.hpp -------------------------------------------------------------------------------- /ogs/engine/rw17/ui/ClientUI.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ogs/engine/rw17/ui/ClientUI.hpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ogs/engine/rw17/ui/TutorAPI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/engine/rw17/ui/TutorAPI.cpp -------------------------------------------------------------------------------- /ogs/engine/rw17/ui/TutorAPI.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/engine/rw17/ui/TutorAPI.hpp -------------------------------------------------------------------------------- /ogs/engine/rw17/world/event.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/engine/rw17/world/event.hpp -------------------------------------------------------------------------------- /ogs/filesystem/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/filesystem/CMakeLists.txt -------------------------------------------------------------------------------- /ogs/filesystem/stdio/Platform.hpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ogs/gameui/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/gameui/CMakeLists.txt -------------------------------------------------------------------------------- /ogs/gameui/czero/CareerUI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/gameui/czero/CareerUI.cpp -------------------------------------------------------------------------------- /ogs/gameui/czero/CareerUI.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/gameui/czero/CareerUI.hpp -------------------------------------------------------------------------------- /ogs/gameui/default/BasePanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/gameui/default/BasePanel.h -------------------------------------------------------------------------------- /ogs/gameui/default/BinkPanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/gameui/default/BinkPanel.h -------------------------------------------------------------------------------- /ogs/gameui/default/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ogs/gameui/default/CvarSlider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/gameui/default/CvarSlider.h -------------------------------------------------------------------------------- /ogs/gameui/default/LogoFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/gameui/default/LogoFile.cpp -------------------------------------------------------------------------------- /ogs/gameui/default/LogoFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/gameui/default/LogoFile.h -------------------------------------------------------------------------------- /ogs/gameui/default/ModInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/gameui/default/ModInfo.cpp -------------------------------------------------------------------------------- /ogs/gameui/default/ModInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/gameui/default/ModInfo.h -------------------------------------------------------------------------------- /ogs/gameui/default/ToolBar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/gameui/default/ToolBar.cpp -------------------------------------------------------------------------------- /ogs/gameui/default/ToolBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/gameui/default/ToolBar.h -------------------------------------------------------------------------------- /ogs/gameui/default/URLButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/gameui/default/URLButton.h -------------------------------------------------------------------------------- /ogs/gameui/gsr/BasePanel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/gameui/gsr/BasePanel.cpp -------------------------------------------------------------------------------- /ogs/gameui/gsr/BasePanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/gameui/gsr/BasePanel.h -------------------------------------------------------------------------------- /ogs/gameui/gsr/BitmapButton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/gameui/gsr/BitmapButton.cpp -------------------------------------------------------------------------------- /ogs/gameui/gsr/BitmapButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/gameui/gsr/BitmapButton.h -------------------------------------------------------------------------------- /ogs/gameui/gsr/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/gameui/gsr/CMakeLists.txt -------------------------------------------------------------------------------- /ogs/gameui/gsr/CareerBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/gameui/gsr/CareerBox.cpp -------------------------------------------------------------------------------- /ogs/gameui/gsr/CareerBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/gameui/gsr/CareerBox.h -------------------------------------------------------------------------------- /ogs/gameui/gsr/CareerGame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/gameui/gsr/CareerGame.cpp -------------------------------------------------------------------------------- /ogs/gameui/gsr/CareerGame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/gameui/gsr/CareerGame.h -------------------------------------------------------------------------------- /ogs/gameui/gsr/CareerMapFrame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/gameui/gsr/CareerMapFrame.h -------------------------------------------------------------------------------- /ogs/gameui/gsr/CareerProfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/gameui/gsr/CareerProfile.h -------------------------------------------------------------------------------- /ogs/gameui/gsr/CvarLatch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/gameui/gsr/CvarLatch.cpp -------------------------------------------------------------------------------- /ogs/gameui/gsr/CvarLatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/gameui/gsr/CvarLatch.h -------------------------------------------------------------------------------- /ogs/gameui/gsr/CvarSlider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/gameui/gsr/CvarSlider.cpp -------------------------------------------------------------------------------- /ogs/gameui/gsr/CvarSlider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/gameui/gsr/CvarSlider.h -------------------------------------------------------------------------------- /ogs/gameui/gsr/CvarTextEntry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/gameui/gsr/CvarTextEntry.h -------------------------------------------------------------------------------- /ogs/gameui/gsr/DottedLabel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/gameui/gsr/DottedLabel.cpp -------------------------------------------------------------------------------- /ogs/gameui/gsr/DottedLabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/gameui/gsr/DottedLabel.h -------------------------------------------------------------------------------- /ogs/gameui/gsr/GameConsole.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/gameui/gsr/GameConsole.cpp -------------------------------------------------------------------------------- /ogs/gameui/gsr/GameConsole.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/gameui/gsr/GameConsole.h -------------------------------------------------------------------------------- /ogs/gameui/gsr/HelpDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/gameui/gsr/HelpDialog.cpp -------------------------------------------------------------------------------- /ogs/gameui/gsr/HelpDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/gameui/gsr/HelpDialog.h -------------------------------------------------------------------------------- /ogs/gameui/gsr/ImageButton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/gameui/gsr/ImageButton.cpp -------------------------------------------------------------------------------- /ogs/gameui/gsr/ImageButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/gameui/gsr/ImageButton.h -------------------------------------------------------------------------------- /ogs/gameui/gsr/LoadGameDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/gameui/gsr/LoadGameDialog.h -------------------------------------------------------------------------------- /ogs/gameui/gsr/LoadingDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/gameui/gsr/LoadingDialog.h -------------------------------------------------------------------------------- /ogs/gameui/gsr/LogoFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/gameui/gsr/LogoFile.cpp -------------------------------------------------------------------------------- /ogs/gameui/gsr/LogoFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/gameui/gsr/LogoFile.h -------------------------------------------------------------------------------- /ogs/gameui/gsr/ModInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/gameui/gsr/ModInfo.cpp -------------------------------------------------------------------------------- /ogs/gameui/gsr/ModInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/gameui/gsr/ModInfo.h -------------------------------------------------------------------------------- /ogs/gameui/gsr/MusicManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/gameui/gsr/MusicManager.cpp -------------------------------------------------------------------------------- /ogs/gameui/gsr/MusicManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/gameui/gsr/MusicManager.h -------------------------------------------------------------------------------- /ogs/gameui/gsr/NewGameDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/gameui/gsr/NewGameDialog.h -------------------------------------------------------------------------------- /ogs/gameui/gsr/OptionsDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/gameui/gsr/OptionsDialog.h -------------------------------------------------------------------------------- /ogs/gameui/gsr/PanelListPanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/gameui/gsr/PanelListPanel.h -------------------------------------------------------------------------------- /ogs/gameui/gsr/RunGameEngine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/gameui/gsr/RunGameEngine.h -------------------------------------------------------------------------------- /ogs/gameui/gsr/SaveGameDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/gameui/gsr/SaveGameDialog.h -------------------------------------------------------------------------------- /ogs/gameui/gsr/ScriptObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/gameui/gsr/ScriptObject.cpp -------------------------------------------------------------------------------- /ogs/gameui/gsr/ScriptObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/gameui/gsr/ScriptObject.h -------------------------------------------------------------------------------- /ogs/gameui/gsr/Sys_Utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/gameui/gsr/Sys_Utils.cpp -------------------------------------------------------------------------------- /ogs/gameui/gsr/Sys_Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/gameui/gsr/Sys_Utils.h -------------------------------------------------------------------------------- /ogs/gameui/gsr/TaskButton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/gameui/gsr/TaskButton.cpp -------------------------------------------------------------------------------- /ogs/gameui/gsr/TaskButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/gameui/gsr/TaskButton.h -------------------------------------------------------------------------------- /ogs/gameui/gsr/Taskbar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/gameui/gsr/Taskbar.cpp -------------------------------------------------------------------------------- /ogs/gameui/gsr/Taskbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/gameui/gsr/Taskbar.h -------------------------------------------------------------------------------- /ogs/gameui/gsr/TextEntryBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/gameui/gsr/TextEntryBox.cpp -------------------------------------------------------------------------------- /ogs/gameui/gsr/TextEntryBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/gameui/gsr/TextEntryBox.h -------------------------------------------------------------------------------- /ogs/gameui/gsr/taskframe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/gameui/gsr/taskframe.h -------------------------------------------------------------------------------- /ogs/gameui/msvc/GameUI.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/gameui/msvc/GameUI.vcxproj -------------------------------------------------------------------------------- /ogs/gameui/null/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ogs/gameui/null/GameConsole.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/gameui/null/GameConsole.hpp -------------------------------------------------------------------------------- /ogs/gameui/null/GameUI.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/gameui/null/GameUI.hpp -------------------------------------------------------------------------------- /ogs/gameui/null/GameUINull.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/gameui/null/GameUINull.cpp -------------------------------------------------------------------------------- /ogs/hlsdk_pch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/hlsdk_pch.hpp -------------------------------------------------------------------------------- /ogs/hltv/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/hltv/CMakeLists.txt -------------------------------------------------------------------------------- /ogs/hltv/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/hltv/README.md -------------------------------------------------------------------------------- /ogs/hltv/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/hltv/build.gradle -------------------------------------------------------------------------------- /ogs/hltv/common/BaseClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/hltv/common/BaseClient.cpp -------------------------------------------------------------------------------- /ogs/hltv/common/BaseClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/hltv/common/BaseClient.h -------------------------------------------------------------------------------- /ogs/hltv/common/BitBuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/hltv/common/BitBuffer.cpp -------------------------------------------------------------------------------- /ogs/hltv/common/BitBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/hltv/common/BitBuffer.h -------------------------------------------------------------------------------- /ogs/hltv/common/DemoFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/hltv/common/DemoFile.cpp -------------------------------------------------------------------------------- /ogs/hltv/common/DemoFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/hltv/common/DemoFile.h -------------------------------------------------------------------------------- /ogs/hltv/common/DirectorCmd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/hltv/common/DirectorCmd.cpp -------------------------------------------------------------------------------- /ogs/hltv/common/DirectorCmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/hltv/common/DirectorCmd.h -------------------------------------------------------------------------------- /ogs/hltv/common/InfoString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/hltv/common/InfoString.cpp -------------------------------------------------------------------------------- /ogs/hltv/common/InfoString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/hltv/common/InfoString.h -------------------------------------------------------------------------------- /ogs/hltv/common/NetAddress.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/hltv/common/NetAddress.cpp -------------------------------------------------------------------------------- /ogs/hltv/common/NetAddress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/hltv/common/NetAddress.h -------------------------------------------------------------------------------- /ogs/hltv/common/NetChannel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/hltv/common/NetChannel.cpp -------------------------------------------------------------------------------- /ogs/hltv/common/NetChannel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/hltv/common/NetChannel.h -------------------------------------------------------------------------------- /ogs/hltv/common/ServerInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/hltv/common/ServerInfo.h -------------------------------------------------------------------------------- /ogs/hltv/common/byteorder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/hltv/common/byteorder.cpp -------------------------------------------------------------------------------- /ogs/hltv/common/byteorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/hltv/common/byteorder.h -------------------------------------------------------------------------------- /ogs/hltv/common/common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/hltv/common/common.cpp -------------------------------------------------------------------------------- /ogs/hltv/common/common_hltv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/hltv/common/common_hltv.h -------------------------------------------------------------------------------- /ogs/hltv/common/mathlib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/hltv/common/mathlib.cpp -------------------------------------------------------------------------------- /ogs/hltv/common/md5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/hltv/common/md5.cpp -------------------------------------------------------------------------------- /ogs/hltv/common/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/hltv/common/md5.h -------------------------------------------------------------------------------- /ogs/hltv/common/munge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/hltv/common/munge.cpp -------------------------------------------------------------------------------- /ogs/hltv/common/munge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/hltv/common/munge.h -------------------------------------------------------------------------------- /ogs/hltv/common/net_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/hltv/common/net_internal.h -------------------------------------------------------------------------------- /ogs/hltv/common/random.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/hltv/common/random.cpp -------------------------------------------------------------------------------- /ogs/hltv/common/random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/hltv/common/random.h -------------------------------------------------------------------------------- /ogs/hltv/console/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ogs/hltv/console/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/hltv/console/build.gradle -------------------------------------------------------------------------------- /ogs/hltv/console/msvc/hltv.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/hltv/console/msvc/hltv.rc -------------------------------------------------------------------------------- /ogs/hltv/console/msvc/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/hltv/console/msvc/icon.ico -------------------------------------------------------------------------------- /ogs/hltv/console/src/System.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/hltv/console/src/System.cpp -------------------------------------------------------------------------------- /ogs/hltv/console/src/System.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/hltv/console/src/System.h -------------------------------------------------------------------------------- /ogs/hltv/console/src/precompiled.cpp: -------------------------------------------------------------------------------- 1 | #include "precompiled.h" 2 | -------------------------------------------------------------------------------- /ogs/hltv/core/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/hltv/core/CMakeLists.txt -------------------------------------------------------------------------------- /ogs/hltv/core/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/hltv/core/build.gradle -------------------------------------------------------------------------------- /ogs/hltv/core/msvc/Core.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/hltv/core/msvc/Core.sln -------------------------------------------------------------------------------- /ogs/hltv/core/msvc/Core.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/hltv/core/msvc/Core.vcxproj -------------------------------------------------------------------------------- /ogs/hltv/core/src/BSPModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/hltv/core/src/BSPModel.cpp -------------------------------------------------------------------------------- /ogs/hltv/core/src/BSPModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/hltv/core/src/BSPModel.h -------------------------------------------------------------------------------- /ogs/hltv/core/src/Delta.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/hltv/core/src/Delta.cpp -------------------------------------------------------------------------------- /ogs/hltv/core/src/Delta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/hltv/core/src/Delta.h -------------------------------------------------------------------------------- /ogs/hltv/core/src/NetSocket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/hltv/core/src/NetSocket.cpp -------------------------------------------------------------------------------- /ogs/hltv/core/src/NetSocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/hltv/core/src/NetSocket.h -------------------------------------------------------------------------------- /ogs/hltv/core/src/Network.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/hltv/core/src/Network.cpp -------------------------------------------------------------------------------- /ogs/hltv/core/src/Network.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/hltv/core/src/Network.h -------------------------------------------------------------------------------- /ogs/hltv/core/src/Server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/hltv/core/src/Server.cpp -------------------------------------------------------------------------------- /ogs/hltv/core/src/Server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/hltv/core/src/Server.h -------------------------------------------------------------------------------- /ogs/hltv/core/src/World.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/hltv/core/src/World.cpp -------------------------------------------------------------------------------- /ogs/hltv/core/src/World.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/hltv/core/src/World.h -------------------------------------------------------------------------------- /ogs/hltv/core/src/precompiled.cpp: -------------------------------------------------------------------------------- 1 | #include "precompiled.h" 2 | -------------------------------------------------------------------------------- /ogs/hltv/core/src/precompiled.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/hltv/core/src/precompiled.h -------------------------------------------------------------------------------- /ogs/hltv/demoplayer/src/precompiled.cpp: -------------------------------------------------------------------------------- 1 | #include "precompiled.h" 2 | -------------------------------------------------------------------------------- /ogs/hltv/director/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ogs/hltv/director/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/hltv/director/build.gradle -------------------------------------------------------------------------------- /ogs/hltv/director/src/precompiled.cpp: -------------------------------------------------------------------------------- 1 | #include "precompiled.h" 2 | -------------------------------------------------------------------------------- /ogs/hltv/msvc/hltv.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/hltv/msvc/hltv.sln -------------------------------------------------------------------------------- /ogs/hltv/proxy/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ogs/hltv/proxy/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/hltv/proxy/build.gradle -------------------------------------------------------------------------------- /ogs/hltv/proxy/msvc/Proxy.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/hltv/proxy/msvc/Proxy.sln -------------------------------------------------------------------------------- /ogs/hltv/proxy/src/DemoClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/hltv/proxy/src/DemoClient.h -------------------------------------------------------------------------------- /ogs/hltv/proxy/src/FakeClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/hltv/proxy/src/FakeClient.h -------------------------------------------------------------------------------- /ogs/hltv/proxy/src/Master.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/hltv/proxy/src/Master.cpp -------------------------------------------------------------------------------- /ogs/hltv/proxy/src/Master.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/hltv/proxy/src/Master.h -------------------------------------------------------------------------------- /ogs/hltv/proxy/src/Proxy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/hltv/proxy/src/Proxy.cpp -------------------------------------------------------------------------------- /ogs/hltv/proxy/src/Proxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/hltv/proxy/src/Proxy.h -------------------------------------------------------------------------------- /ogs/hltv/proxy/src/Status.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/hltv/proxy/src/Status.cpp -------------------------------------------------------------------------------- /ogs/hltv/proxy/src/Status.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/hltv/proxy/src/Status.h -------------------------------------------------------------------------------- /ogs/hltv/proxy/src/precompiled.cpp: -------------------------------------------------------------------------------- 1 | #include "precompiled.h" 2 | -------------------------------------------------------------------------------- /ogs/hookers/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/hookers/CMakeLists.txt -------------------------------------------------------------------------------- /ogs/hookers/HLTV/Core/DeltaEx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/hookers/HLTV/Core/DeltaEx.h -------------------------------------------------------------------------------- /ogs/hookers/HLTV/Core/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/hookers/HLTV/Core/main.cpp -------------------------------------------------------------------------------- /ogs/hookers/HLTV/Proxy/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/hookers/HLTV/Proxy/main.cpp -------------------------------------------------------------------------------- /ogs/hookers/engine/hooklist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/hookers/engine/hooklist.cpp -------------------------------------------------------------------------------- /ogs/hookers/engine/hooklist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/hookers/engine/hooklist.h -------------------------------------------------------------------------------- /ogs/hookers/engine/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/hookers/engine/main.cpp -------------------------------------------------------------------------------- /ogs/hookers/helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/hookers/helper.h -------------------------------------------------------------------------------- /ogs/hookers/hooker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/hookers/hooker.cpp -------------------------------------------------------------------------------- /ogs/hookers/hooker.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/hookers/hooker.hpp -------------------------------------------------------------------------------- /ogs/hookers/memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/hookers/memory.cpp -------------------------------------------------------------------------------- /ogs/hookers/memory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/hookers/memory.hpp -------------------------------------------------------------------------------- /ogs/hookers/rehlds_debug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/hookers/rehlds_debug.cpp -------------------------------------------------------------------------------- /ogs/hookers/rehlds_debug.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/hookers/rehlds_debug.hpp -------------------------------------------------------------------------------- /ogs/launcher/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/launcher/CMakeLists.txt -------------------------------------------------------------------------------- /ogs/launcher/ExceptHandle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/launcher/ExceptHandle.hpp -------------------------------------------------------------------------------- /ogs/launcher/LoadBlob.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/launcher/LoadBlob.cpp -------------------------------------------------------------------------------- /ogs/launcher/LoadBlob.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/launcher/LoadBlob.hpp -------------------------------------------------------------------------------- /ogs/launcher/launcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/launcher/launcher.cpp -------------------------------------------------------------------------------- /ogs/launcher/launcher.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/launcher/launcher.ico -------------------------------------------------------------------------------- /ogs/launcher/launcher.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/launcher/launcher.rc -------------------------------------------------------------------------------- /ogs/launcher/launcher_old.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/launcher/launcher_old.cpp -------------------------------------------------------------------------------- /ogs/launcher/plat_win.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/launcher/plat_win.cpp -------------------------------------------------------------------------------- /ogs/launcher/platform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/launcher/platform.hpp -------------------------------------------------------------------------------- /ogs/launcher/registry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/launcher/registry.cpp -------------------------------------------------------------------------------- /ogs/launcher/resource.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/launcher/resource.hpp -------------------------------------------------------------------------------- /ogs/launcher/sys.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/launcher/sys.hpp -------------------------------------------------------------------------------- /ogs/launcher/sys_launcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/launcher/sys_launcher.cpp -------------------------------------------------------------------------------- /ogs/launcher/unused/valve.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/launcher/unused/valve.ico -------------------------------------------------------------------------------- /ogs/ogsnext/dll_loader/1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/ogsnext/dll_loader/1.py -------------------------------------------------------------------------------- /ogs/ogsnext/dll_loader/com.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/ogsnext/dll_loader/com.h -------------------------------------------------------------------------------- /ogs/ogsnext/dll_loader/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/ogsnext/dll_loader/config.h -------------------------------------------------------------------------------- /ogs/ogsnext/dll_loader/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/ogsnext/dll_loader/debug.h -------------------------------------------------------------------------------- /ogs/ogsnext/dll_loader/elfdll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/ogsnext/dll_loader/elfdll.c -------------------------------------------------------------------------------- /ogs/ogsnext/dll_loader/ext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/ogsnext/dll_loader/ext.c -------------------------------------------------------------------------------- /ogs/ogsnext/dll_loader/ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/ogsnext/dll_loader/ext.h -------------------------------------------------------------------------------- /ogs/ogsnext/dll_loader/gldef.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/ogsnext/dll_loader/gldef.in -------------------------------------------------------------------------------- /ogs/ogsnext/dll_loader/glvars.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/ogsnext/dll_loader/glvars.h -------------------------------------------------------------------------------- /ogs/ogsnext/dll_loader/loader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/ogsnext/dll_loader/loader.c -------------------------------------------------------------------------------- /ogs/ogsnext/dll_loader/loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/ogsnext/dll_loader/loader.h -------------------------------------------------------------------------------- /ogs/ogsnext/dll_loader/mangle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/ogsnext/dll_loader/mangle.h -------------------------------------------------------------------------------- /ogs/ogsnext/dll_loader/module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/ogsnext/dll_loader/module.c -------------------------------------------------------------------------------- /ogs/ogsnext/dll_loader/win32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/ogsnext/dll_loader/win32.c -------------------------------------------------------------------------------- /ogs/ogsnext/dll_loader/win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/ogsnext/dll_loader/win32.h -------------------------------------------------------------------------------- /ogs/ogsnext/metamod/.gitignore: -------------------------------------------------------------------------------- 1 | #temporary files 2 | *~ 3 | -------------------------------------------------------------------------------- /ogs/ogsnext/metamod/ABOUT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/ogsnext/metamod/ABOUT.txt -------------------------------------------------------------------------------- /ogs/ogsnext/metamod/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/ogsnext/metamod/COPYING -------------------------------------------------------------------------------- /ogs/ogsnext/metamod/Config.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/ogsnext/metamod/Config.mak -------------------------------------------------------------------------------- /ogs/ogsnext/metamod/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/ogsnext/metamod/Makefile -------------------------------------------------------------------------------- /ogs/ogsnext/metamod/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/ogsnext/metamod/README.md -------------------------------------------------------------------------------- /ogs/ogsnext/metamod/docs/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/ogsnext/metamod/docs/TODO -------------------------------------------------------------------------------- /ogs/ogsnext/metamod/examples/stub_plugin/dummy.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ogs/ogsnext/metamod/examples/stub_plugin/dummy.rc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ogs/ogsnext/metamod/examples/stub_plugin/info_name.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ogs/ogsnext/vgui_support/cl.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/ogsnext/vgui_support/cl.bat -------------------------------------------------------------------------------- /ogs/ogsnext/vguiwrap/UI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/ogsnext/vguiwrap/UI.cpp -------------------------------------------------------------------------------- /ogs/ogsnext/vguiwrap/UI.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/ogsnext/vguiwrap/UI.hpp -------------------------------------------------------------------------------- /ogs/particleman/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/particleman/CMakeLists.txt -------------------------------------------------------------------------------- /ogs/public/dbg/dbg.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/public/dbg/dbg.hpp -------------------------------------------------------------------------------- /ogs/public/rehlds/bspfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/public/rehlds/bspfile.h -------------------------------------------------------------------------------- /ogs/public/rehlds/cmd_rehlds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/public/rehlds/cmd_rehlds.h -------------------------------------------------------------------------------- /ogs/public/rehlds/crc32c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/public/rehlds/crc32c.cpp -------------------------------------------------------------------------------- /ogs/public/rehlds/crc32c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/public/rehlds/crc32c.h -------------------------------------------------------------------------------- /ogs/public/rehlds/d_local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/public/rehlds/d_local.h -------------------------------------------------------------------------------- /ogs/public/rehlds/hookchains.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/public/rehlds/hookchains.h -------------------------------------------------------------------------------- /ogs/public/rehlds/model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/public/rehlds/model.h -------------------------------------------------------------------------------- /ogs/public/rehlds/modelgen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/public/rehlds/modelgen.h -------------------------------------------------------------------------------- /ogs/public/rehlds/osconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/public/rehlds/osconfig.h -------------------------------------------------------------------------------- /ogs/public/rehlds/rehlds_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/public/rehlds/rehlds_api.h -------------------------------------------------------------------------------- /ogs/public/rehlds/spritegn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/public/rehlds/spritegn.h -------------------------------------------------------------------------------- /ogs/public/rehlds/static_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/public/rehlds/static_map.h -------------------------------------------------------------------------------- /ogs/public/rehlds/sys_shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/public/rehlds/sys_shared.h -------------------------------------------------------------------------------- /ogs/public/tier1/interface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/public/tier1/interface.cpp -------------------------------------------------------------------------------- /ogs/public/tier1/interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/public/tier1/interface.h -------------------------------------------------------------------------------- /ogs/rehlds/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ogs/rehlds/FlightRecorderImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/rehlds/FlightRecorderImpl.h -------------------------------------------------------------------------------- /ogs/rehlds/flight_recorder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/rehlds/flight_recorder.cpp -------------------------------------------------------------------------------- /ogs/rehlds/flight_recorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/rehlds/flight_recorder.h -------------------------------------------------------------------------------- /ogs/rehlds/hookchains_impl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/rehlds/hookchains_impl.cpp -------------------------------------------------------------------------------- /ogs/rehlds/hookchains_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/rehlds/hookchains_impl.h -------------------------------------------------------------------------------- /ogs/rehlds/jitasm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/rehlds/jitasm.h -------------------------------------------------------------------------------- /ogs/rehlds/msvc/rehlds.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/rehlds/msvc/rehlds.vcxproj -------------------------------------------------------------------------------- /ogs/rehlds/platform_rehlds.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/rehlds/platform_rehlds.cpp -------------------------------------------------------------------------------- /ogs/rehlds/platform_rehlds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/rehlds/platform_rehlds.h -------------------------------------------------------------------------------- /ogs/rehlds/precompiled.cpp: -------------------------------------------------------------------------------- 1 | #include "precompiled.h" -------------------------------------------------------------------------------- /ogs/rehlds/precompiled.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/rehlds/precompiled.h -------------------------------------------------------------------------------- /ogs/rehlds/rehlds_api_impl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/rehlds/rehlds_api_impl.cpp -------------------------------------------------------------------------------- /ogs/rehlds/rehlds_api_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/rehlds/rehlds_api_impl.h -------------------------------------------------------------------------------- /ogs/rehlds/rehlds_pch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/rehlds/rehlds_pch.hpp -------------------------------------------------------------------------------- /ogs/rehlds/rehlds_security.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/rehlds/rehlds_security.cpp -------------------------------------------------------------------------------- /ogs/rehlds/rehlds_security.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/rehlds/rehlds_security.h -------------------------------------------------------------------------------- /ogs/rehlds/structSizeCheck.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/rehlds/structSizeCheck.cpp -------------------------------------------------------------------------------- /ogs/render/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/render/CMakeLists.txt -------------------------------------------------------------------------------- /ogs/render/RenderImpl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/render/RenderImpl.hpp -------------------------------------------------------------------------------- /ogs/render/gl/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ogs/render/gl/RenderImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/render/gl/RenderImpl.cpp -------------------------------------------------------------------------------- /ogs/render/gl/anormtab.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/render/gl/anormtab.hpp -------------------------------------------------------------------------------- /ogs/render/gl/gl_draw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/render/gl/gl_draw.cpp -------------------------------------------------------------------------------- /ogs/render/gl/gl_image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/render/gl/gl_image.cpp -------------------------------------------------------------------------------- /ogs/render/gl/gl_light.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/render/gl/gl_light.cpp -------------------------------------------------------------------------------- /ogs/render/gl/gl_local.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/render/gl/gl_local.hpp -------------------------------------------------------------------------------- /ogs/render/gl/gl_mesh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/render/gl/gl_mesh.cpp -------------------------------------------------------------------------------- /ogs/render/gl/gl_model.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/render/gl/gl_model.cpp -------------------------------------------------------------------------------- /ogs/render/gl/gl_model.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/render/gl/gl_model.hpp -------------------------------------------------------------------------------- /ogs/render/gl/gl_rmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/render/gl/gl_rmain.cpp -------------------------------------------------------------------------------- /ogs/render/gl/gl_rmisc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/render/gl/gl_rmisc.cpp -------------------------------------------------------------------------------- /ogs/render/gl/gl_rsurf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/render/gl/gl_rsurf.cpp -------------------------------------------------------------------------------- /ogs/render/gl/gl_warp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/render/gl/gl_warp.cpp -------------------------------------------------------------------------------- /ogs/render/gl/msvc/r_gl.001: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/render/gl/msvc/r_gl.001 -------------------------------------------------------------------------------- /ogs/render/gl/msvc/r_gl.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/render/gl/msvc/r_gl.dsp -------------------------------------------------------------------------------- /ogs/render/gl/qgl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/render/gl/qgl.hpp -------------------------------------------------------------------------------- /ogs/render/gl/triapi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/render/gl/triapi.cpp -------------------------------------------------------------------------------- /ogs/render/gl/warpsin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/render/gl/warpsin.hpp -------------------------------------------------------------------------------- /ogs/render/merge/Renderer/gl_studio.cpp: -------------------------------------------------------------------------------- 1 | #include "gl_local.h" 2 | 3 | void GL_StudioDrawShadow(void) 4 | { 5 | } -------------------------------------------------------------------------------- /ogs/render/merge/Renderer/qgl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/render/merge/Renderer/qgl.h -------------------------------------------------------------------------------- /ogs/render/merge/draw/draw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/render/merge/draw/draw.cpp -------------------------------------------------------------------------------- /ogs/render/merge/draw2/draw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/render/merge/draw2/draw.cpp -------------------------------------------------------------------------------- /ogs/render/merge/draw2/draw.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/render/merge/draw2/draw.hpp -------------------------------------------------------------------------------- /ogs/render/merge/glquake.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/render/merge/glquake.hpp -------------------------------------------------------------------------------- /ogs/render/merge/gsr/gl/glHud.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/render/merge/gsr/gl/glHud.h -------------------------------------------------------------------------------- /ogs/render/merge/gsr/gl/qgl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/render/merge/gsr/gl/qgl.cpp -------------------------------------------------------------------------------- /ogs/render/merge/gsr/gl/qgl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/render/merge/gsr/gl/qgl.h -------------------------------------------------------------------------------- /ogs/render/merge/warpsin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/render/merge/warpsin.hpp -------------------------------------------------------------------------------- /ogs/render/msvc/render.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/render/msvc/render.vcxproj -------------------------------------------------------------------------------- /ogs/render/null/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ogs/render/null/RenderImpl.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ogs/render/software/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ogs/render/software/adivtab.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/render/software/adivtab.hpp -------------------------------------------------------------------------------- /ogs/render/software/block16.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/render/software/block16.inc -------------------------------------------------------------------------------- /ogs/render/software/block8.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/render/software/block8.inc -------------------------------------------------------------------------------- /ogs/render/software/d_if.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/render/software/d_if.inc -------------------------------------------------------------------------------- /ogs/render/software/qasm.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/render/software/qasm.inc -------------------------------------------------------------------------------- /ogs/render/software/r_aclip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/render/software/r_aclip.cpp -------------------------------------------------------------------------------- /ogs/render/software/r_alias.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/render/software/r_alias.cpp -------------------------------------------------------------------------------- /ogs/render/software/r_bsp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/render/software/r_bsp.cpp -------------------------------------------------------------------------------- /ogs/render/software/r_draw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/render/software/r_draw.cpp -------------------------------------------------------------------------------- /ogs/render/software/r_drawa.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/render/software/r_drawa.asm -------------------------------------------------------------------------------- /ogs/render/software/r_edge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/render/software/r_edge.cpp -------------------------------------------------------------------------------- /ogs/render/software/r_edgea.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/render/software/r_edgea.asm -------------------------------------------------------------------------------- /ogs/render/software/r_image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/render/software/r_image.cpp -------------------------------------------------------------------------------- /ogs/render/software/r_light.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/render/software/r_light.cpp -------------------------------------------------------------------------------- /ogs/render/software/r_local.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/render/software/r_local.hpp -------------------------------------------------------------------------------- /ogs/render/software/r_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/render/software/r_main.cpp -------------------------------------------------------------------------------- /ogs/render/software/r_misc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/render/software/r_misc.cpp -------------------------------------------------------------------------------- /ogs/render/software/r_model.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/render/software/r_model.cpp -------------------------------------------------------------------------------- /ogs/render/software/r_model.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/render/software/r_model.hpp -------------------------------------------------------------------------------- /ogs/render/software/r_part.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/render/software/r_part.cpp -------------------------------------------------------------------------------- /ogs/render/software/r_poly.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/render/software/r_poly.cpp -------------------------------------------------------------------------------- /ogs/render/software/r_rast.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/render/software/r_rast.cpp -------------------------------------------------------------------------------- /ogs/render/software/r_scan.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/render/software/r_scan.cpp -------------------------------------------------------------------------------- /ogs/render/software/r_scana.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/render/software/r_scana.asm -------------------------------------------------------------------------------- /ogs/render/software/r_spr8.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/render/software/r_spr8.asm -------------------------------------------------------------------------------- /ogs/render/software/r_surf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/render/software/r_surf.cpp -------------------------------------------------------------------------------- /ogs/render/software/r_surf8.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/render/software/r_surf8.asm -------------------------------------------------------------------------------- /ogs/render/software/r_varsa.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/render/software/r_varsa.asm -------------------------------------------------------------------------------- /ogs/render/software/rand1k.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/render/software/rand1k.hpp -------------------------------------------------------------------------------- /ogs/render/software/triapi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/render/software/triapi.cpp -------------------------------------------------------------------------------- /ogs/rw17/game/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ogs/rw17/game/client/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ogs/rw17/game/server/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ogs/rw17/game/server/Game.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/rw17/game/server/Game.cpp -------------------------------------------------------------------------------- /ogs/rw17/game/server/Game.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/rw17/game/server/Game.hpp -------------------------------------------------------------------------------- /ogs/temp/input/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ogs/temp/input/null/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ogs/temp/network/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ogs/temp/network/null/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ogs/temp/sound/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ogs/temp/sound/SoundImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/temp/sound/SoundImpl.cpp -------------------------------------------------------------------------------- /ogs/temp/sound/SoundImpl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/temp/sound/SoundImpl.hpp -------------------------------------------------------------------------------- /ogs/temp/sound/dsound/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ogs/temp/sound/null/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ogs/temp/system/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ogs/temp/system/null/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ogs/testsuite/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/testsuite/CMakeLists.txt -------------------------------------------------------------------------------- /ogs/testsuite/anonymizer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/testsuite/anonymizer.cpp -------------------------------------------------------------------------------- /ogs/testsuite/anonymizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/testsuite/anonymizer.h -------------------------------------------------------------------------------- /ogs/testsuite/funccalls.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/testsuite/funccalls.cpp -------------------------------------------------------------------------------- /ogs/testsuite/funccalls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/testsuite/funccalls.h -------------------------------------------------------------------------------- /ogs/testsuite/player.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/testsuite/player.cpp -------------------------------------------------------------------------------- /ogs/testsuite/player.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/testsuite/player.h -------------------------------------------------------------------------------- /ogs/testsuite/recorder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/testsuite/recorder.cpp -------------------------------------------------------------------------------- /ogs/testsuite/recorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/testsuite/recorder.h -------------------------------------------------------------------------------- /ogs/testsuite/testsuite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/testsuite/testsuite.cpp -------------------------------------------------------------------------------- /ogs/testsuite/testsuite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/testsuite/testsuite.h -------------------------------------------------------------------------------- /ogs/tier0/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/tier0/CMakeLists.txt -------------------------------------------------------------------------------- /ogs/tier0/assert_dialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/tier0/assert_dialog.cpp -------------------------------------------------------------------------------- /ogs/tier0/cpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/tier0/cpu.cpp -------------------------------------------------------------------------------- /ogs/tier0/cpu_posix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/tier0/cpu_posix.cpp -------------------------------------------------------------------------------- /ogs/tier0/dbg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/tier0/dbg.cpp -------------------------------------------------------------------------------- /ogs/tier0/fasttimer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/tier0/fasttimer.cpp -------------------------------------------------------------------------------- /ogs/tier0/gsr/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/tier0/gsr/CMakeLists.txt -------------------------------------------------------------------------------- /ogs/tier0/gsr/dbg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/tier0/gsr/dbg.cpp -------------------------------------------------------------------------------- /ogs/tier0/mem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/tier0/mem.cpp -------------------------------------------------------------------------------- /ogs/tier0/mem_helpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/tier0/mem_helpers.cpp -------------------------------------------------------------------------------- /ogs/tier0/memblockhdr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/tier0/memblockhdr.cpp -------------------------------------------------------------------------------- /ogs/tier0/memstd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/tier0/memstd.cpp -------------------------------------------------------------------------------- /ogs/tier0/memvalidate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/tier0/memvalidate.cpp -------------------------------------------------------------------------------- /ogs/tier0/minidump.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/tier0/minidump.cpp -------------------------------------------------------------------------------- /ogs/tier0/msvc/tier0.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/tier0/msvc/tier0.vcxproj -------------------------------------------------------------------------------- /ogs/tier0/pch_tier0.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/tier0/pch_tier0.cpp -------------------------------------------------------------------------------- /ogs/tier0/platform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/tier0/platform.cpp -------------------------------------------------------------------------------- /ogs/tier0/platform_linux.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/tier0/platform_linux.cpp -------------------------------------------------------------------------------- /ogs/tier0/platform_win32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/tier0/platform_win32.cpp -------------------------------------------------------------------------------- /ogs/tier0/pme.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/tier0/pme.cpp -------------------------------------------------------------------------------- /ogs/tier0/pme_posix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/tier0/pme_posix.cpp -------------------------------------------------------------------------------- /ogs/tier0/testthread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/tier0/testthread.cpp -------------------------------------------------------------------------------- /ogs/tier0/thread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/tier0/thread.cpp -------------------------------------------------------------------------------- /ogs/tier0/threadtools.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/tier0/threadtools.cpp -------------------------------------------------------------------------------- /ogs/tier0/tier0.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/tier0/tier0.cpp -------------------------------------------------------------------------------- /ogs/tier0/validator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/tier0/validator.cpp -------------------------------------------------------------------------------- /ogs/tier0/valobject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/tier0/valobject.cpp -------------------------------------------------------------------------------- /ogs/tier0/vcrmode_posix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/tier0/vcrmode_posix.cpp -------------------------------------------------------------------------------- /ogs/tier0/vprof.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/tier0/vprof.cpp -------------------------------------------------------------------------------- /ogs/tier1/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/tier1/CMakeLists.txt -------------------------------------------------------------------------------- /ogs/tier1/KeyValues.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/tier1/KeyValues.cpp -------------------------------------------------------------------------------- /ogs/tier1/NetAdr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/tier1/NetAdr.cpp -------------------------------------------------------------------------------- /ogs/tier1/bitbuf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/tier1/bitbuf.cpp -------------------------------------------------------------------------------- /ogs/tier1/byteswap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/tier1/byteswap.cpp -------------------------------------------------------------------------------- /ogs/tier1/characterset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/tier1/characterset.cpp -------------------------------------------------------------------------------- /ogs/tier1/checksum_crc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/tier1/checksum_crc.cpp -------------------------------------------------------------------------------- /ogs/tier1/checksum_md5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/tier1/checksum_md5.cpp -------------------------------------------------------------------------------- /ogs/tier1/checksum_sha1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/tier1/checksum_sha1.cpp -------------------------------------------------------------------------------- /ogs/tier1/commandbuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/tier1/commandbuffer.cpp -------------------------------------------------------------------------------- /ogs/tier1/convar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/tier1/convar.cpp -------------------------------------------------------------------------------- /ogs/tier1/datamanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/tier1/datamanager.cpp -------------------------------------------------------------------------------- /ogs/tier1/diff.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/tier1/diff.cpp -------------------------------------------------------------------------------- /ogs/tier1/fileio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/tier1/fileio.cpp -------------------------------------------------------------------------------- /ogs/tier1/generichash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/tier1/generichash.cpp -------------------------------------------------------------------------------- /ogs/tier1/ilocalize.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/tier1/ilocalize.cpp -------------------------------------------------------------------------------- /ogs/tier1/interface_src.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/tier1/interface_src.cpp -------------------------------------------------------------------------------- /ogs/tier1/kvpacker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/tier1/kvpacker.cpp -------------------------------------------------------------------------------- /ogs/tier1/lzmaDecoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/tier1/lzmaDecoder.cpp -------------------------------------------------------------------------------- /ogs/tier1/mempool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/tier1/mempool.cpp -------------------------------------------------------------------------------- /ogs/tier1/memstack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/tier1/memstack.cpp -------------------------------------------------------------------------------- /ogs/tier1/msvc/tier1.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/tier1/msvc/tier1.vcxproj -------------------------------------------------------------------------------- /ogs/tier1/newbitbuf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/tier1/newbitbuf.cpp -------------------------------------------------------------------------------- /ogs/tier1/pathmatch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/tier1/pathmatch.cpp -------------------------------------------------------------------------------- /ogs/tier1/processor_detect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/tier1/processor_detect.cpp -------------------------------------------------------------------------------- /ogs/tier1/qsort_s.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/tier1/qsort_s.cpp -------------------------------------------------------------------------------- /ogs/tier1/rangecheckedvar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/tier1/rangecheckedvar.cpp -------------------------------------------------------------------------------- /ogs/tier1/reliabletimer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/tier1/reliabletimer.cpp -------------------------------------------------------------------------------- /ogs/tier1/snappy-internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/tier1/snappy-internal.h -------------------------------------------------------------------------------- /ogs/tier1/snappy-sinksource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/tier1/snappy-sinksource.cpp -------------------------------------------------------------------------------- /ogs/tier1/snappy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/tier1/snappy.cpp -------------------------------------------------------------------------------- /ogs/tier1/sparsematrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/tier1/sparsematrix.cpp -------------------------------------------------------------------------------- /ogs/tier1/splitstring.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/tier1/splitstring.cpp -------------------------------------------------------------------------------- /ogs/tier1/stringpool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/tier1/stringpool.cpp -------------------------------------------------------------------------------- /ogs/tier1/strtools.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/tier1/strtools.cpp -------------------------------------------------------------------------------- /ogs/tier1/strtools_unicode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/tier1/strtools_unicode.cpp -------------------------------------------------------------------------------- /ogs/tier1/tier1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/tier1/tier1.cpp -------------------------------------------------------------------------------- /ogs/tier1/tier1.vpc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/tier1/tier1.vpc -------------------------------------------------------------------------------- /ogs/tier1/tokenreader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/tier1/tokenreader.cpp -------------------------------------------------------------------------------- /ogs/tier1/undiff.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/tier1/undiff.cpp -------------------------------------------------------------------------------- /ogs/tier1/uniqueid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/tier1/uniqueid.cpp -------------------------------------------------------------------------------- /ogs/tier1/utlbinaryblock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/tier1/utlbinaryblock.cpp -------------------------------------------------------------------------------- /ogs/tier1/utlbuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/tier1/utlbuffer.cpp -------------------------------------------------------------------------------- /ogs/tier1/utlbufferutil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/tier1/utlbufferutil.cpp -------------------------------------------------------------------------------- /ogs/tier1/utlstring.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/tier1/utlstring.cpp -------------------------------------------------------------------------------- /ogs/tier1/utlsymbol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/tier1/utlsymbol.cpp -------------------------------------------------------------------------------- /ogs/unittests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/unittests/CMakeLists.txt -------------------------------------------------------------------------------- /ogs/unittests/TestRunner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/unittests/TestRunner.cpp -------------------------------------------------------------------------------- /ogs/unittests/common_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/unittests/common_tests.cpp -------------------------------------------------------------------------------- /ogs/unittests/crc32c_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/unittests/crc32c_tests.cpp -------------------------------------------------------------------------------- /ogs/unittests/delta_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/unittests/delta_tests.cpp -------------------------------------------------------------------------------- /ogs/unittests/info_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/unittests/info_tests.cpp -------------------------------------------------------------------------------- /ogs/unittests/mathlib_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/unittests/mathlib_tests.cpp -------------------------------------------------------------------------------- /ogs/unittests/memory_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/unittests/memory_tests.cpp -------------------------------------------------------------------------------- /ogs/unittests/unicode_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/unittests/unicode_tests.cpp -------------------------------------------------------------------------------- /ogs/vgui/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/vgui/.gitignore -------------------------------------------------------------------------------- /ogs/vgui/App.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/vgui/App.cpp -------------------------------------------------------------------------------- /ogs/vgui/Bitmap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/vgui/Bitmap.cpp -------------------------------------------------------------------------------- /ogs/vgui/BitmapTGA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/vgui/BitmapTGA.cpp -------------------------------------------------------------------------------- /ogs/vgui/Border.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/vgui/Border.cpp -------------------------------------------------------------------------------- /ogs/vgui/BorderLayout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/vgui/BorderLayout.cpp -------------------------------------------------------------------------------- /ogs/vgui/BorderPair.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/vgui/BorderPair.cpp -------------------------------------------------------------------------------- /ogs/vgui/BuildGroup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/vgui/BuildGroup.cpp -------------------------------------------------------------------------------- /ogs/vgui/Button.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/vgui/Button.cpp -------------------------------------------------------------------------------- /ogs/vgui/ButtonGroup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/vgui/ButtonGroup.cpp -------------------------------------------------------------------------------- /ogs/vgui/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/vgui/CMakeLists.txt -------------------------------------------------------------------------------- /ogs/vgui/CheckButton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/vgui/CheckButton.cpp -------------------------------------------------------------------------------- /ogs/vgui/Color.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/vgui/Color.cpp -------------------------------------------------------------------------------- /ogs/vgui/ConfigWizard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/vgui/ConfigWizard.cpp -------------------------------------------------------------------------------- /ogs/vgui/Cursor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/vgui/Cursor.cpp -------------------------------------------------------------------------------- /ogs/vgui/DataInputStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/vgui/DataInputStream.cpp -------------------------------------------------------------------------------- /ogs/vgui/Desktop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/vgui/Desktop.cpp -------------------------------------------------------------------------------- /ogs/vgui/DesktopIcon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/vgui/DesktopIcon.cpp -------------------------------------------------------------------------------- /ogs/vgui/EditPanel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/vgui/EditPanel.cpp -------------------------------------------------------------------------------- /ogs/vgui/EtchedBorder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/vgui/EtchedBorder.cpp -------------------------------------------------------------------------------- /ogs/vgui/FileInputStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/vgui/FileInputStream.cpp -------------------------------------------------------------------------------- /ogs/vgui/FlowLayout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/vgui/FlowLayout.cpp -------------------------------------------------------------------------------- /ogs/vgui/FocusNavGroup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/vgui/FocusNavGroup.cpp -------------------------------------------------------------------------------- /ogs/vgui/Font.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/vgui/Font.cpp -------------------------------------------------------------------------------- /ogs/vgui/Frame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/vgui/Frame.cpp -------------------------------------------------------------------------------- /ogs/vgui/GridLayout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/vgui/GridLayout.cpp -------------------------------------------------------------------------------- /ogs/vgui/HeaderPanel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/vgui/HeaderPanel.cpp -------------------------------------------------------------------------------- /ogs/vgui/Image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/vgui/Image.cpp -------------------------------------------------------------------------------- /ogs/vgui/ImagePanel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/vgui/ImagePanel.cpp -------------------------------------------------------------------------------- /ogs/vgui/IntLabel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/vgui/IntLabel.cpp -------------------------------------------------------------------------------- /ogs/vgui/Label.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/vgui/Label.cpp -------------------------------------------------------------------------------- /ogs/vgui/Layout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/vgui/Layout.cpp -------------------------------------------------------------------------------- /ogs/vgui/LineBorder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/vgui/LineBorder.cpp -------------------------------------------------------------------------------- /ogs/vgui/ListPanel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/vgui/ListPanel.cpp -------------------------------------------------------------------------------- /ogs/vgui/LoweredBorder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/vgui/LoweredBorder.cpp -------------------------------------------------------------------------------- /ogs/vgui/Menu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/vgui/Menu.cpp -------------------------------------------------------------------------------- /ogs/vgui/MenuItem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/vgui/MenuItem.cpp -------------------------------------------------------------------------------- /ogs/vgui/MenuSeparator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/vgui/MenuSeparator.cpp -------------------------------------------------------------------------------- /ogs/vgui/MessageBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/vgui/MessageBox.cpp -------------------------------------------------------------------------------- /ogs/vgui/MiniApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/vgui/MiniApp.cpp -------------------------------------------------------------------------------- /ogs/vgui/Panel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/vgui/Panel.cpp -------------------------------------------------------------------------------- /ogs/vgui/PopupMenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/vgui/PopupMenu.cpp -------------------------------------------------------------------------------- /ogs/vgui/ProgressBar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/vgui/ProgressBar.cpp -------------------------------------------------------------------------------- /ogs/vgui/RadioButton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/vgui/RadioButton.cpp -------------------------------------------------------------------------------- /ogs/vgui/RaisedBorder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/vgui/RaisedBorder.cpp -------------------------------------------------------------------------------- /ogs/vgui/Scheme.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/vgui/Scheme.cpp -------------------------------------------------------------------------------- /ogs/vgui/ScrollBar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/vgui/ScrollBar.cpp -------------------------------------------------------------------------------- /ogs/vgui/ScrollPanel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/vgui/ScrollPanel.cpp -------------------------------------------------------------------------------- /ogs/vgui/Slider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/vgui/Slider.cpp -------------------------------------------------------------------------------- /ogs/vgui/StackLayout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/vgui/StackLayout.cpp -------------------------------------------------------------------------------- /ogs/vgui/String.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/vgui/String.cpp -------------------------------------------------------------------------------- /ogs/vgui/Surface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/vgui/Surface.cpp -------------------------------------------------------------------------------- /ogs/vgui/SurfaceBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/vgui/SurfaceBase.cpp -------------------------------------------------------------------------------- /ogs/vgui/TabPanel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/vgui/TabPanel.cpp -------------------------------------------------------------------------------- /ogs/vgui/TablePanel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/vgui/TablePanel.cpp -------------------------------------------------------------------------------- /ogs/vgui/TaskBar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/vgui/TaskBar.cpp -------------------------------------------------------------------------------- /ogs/vgui/TextEntry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/vgui/TextEntry.cpp -------------------------------------------------------------------------------- /ogs/vgui/TextGrid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/vgui/TextGrid.cpp -------------------------------------------------------------------------------- /ogs/vgui/TextImage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/vgui/TextImage.cpp -------------------------------------------------------------------------------- /ogs/vgui/TextPanel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/vgui/TextPanel.cpp -------------------------------------------------------------------------------- /ogs/vgui/ToggleButton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/vgui/ToggleButton.cpp -------------------------------------------------------------------------------- /ogs/vgui/TreeFolder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/vgui/TreeFolder.cpp -------------------------------------------------------------------------------- /ogs/vgui/WizardPanel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/vgui/WizardPanel.cpp -------------------------------------------------------------------------------- /ogs/vgui/linux/App.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ogs/vgui/linux/Cursor.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ogs/vgui/linux/Font.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ogs/vgui/linux/Surface.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ogs/vgui/linux/fileimage.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ogs/vgui/linux/vfontdata.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ogs/vgui/linux/vgui.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ogs/vgui/msvc/vgui.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/vgui/msvc/vgui.vcxproj -------------------------------------------------------------------------------- /ogs/vgui/msvc/vgui_dll.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/vgui/msvc/vgui_dll.sln -------------------------------------------------------------------------------- /ogs/vgui/msvc/vgui_dll.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/vgui/msvc/vgui_dll.vcproj -------------------------------------------------------------------------------- /ogs/vgui/vgui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/vgui/vgui.cpp -------------------------------------------------------------------------------- /ogs/vgui2/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/vgui2/CMakeLists.txt -------------------------------------------------------------------------------- /ogs/vgui2/controls/Button.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/vgui2/controls/Button.cpp -------------------------------------------------------------------------------- /ogs/vgui2/controls/ComboBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/vgui2/controls/ComboBox.cpp -------------------------------------------------------------------------------- /ogs/vgui2/controls/Controls.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/vgui2/controls/Controls.cpp -------------------------------------------------------------------------------- /ogs/vgui2/controls/Divider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/vgui2/controls/Divider.cpp -------------------------------------------------------------------------------- /ogs/vgui2/controls/Frame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/vgui2/controls/Frame.cpp -------------------------------------------------------------------------------- /ogs/vgui2/controls/HTML.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/vgui2/controls/HTML.cpp -------------------------------------------------------------------------------- /ogs/vgui2/controls/Image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/vgui2/controls/Image.cpp -------------------------------------------------------------------------------- /ogs/vgui2/controls/Label.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/vgui2/controls/Label.cpp -------------------------------------------------------------------------------- /ogs/vgui2/controls/Menu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/vgui2/controls/Menu.cpp -------------------------------------------------------------------------------- /ogs/vgui2/controls/MenuBar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/vgui2/controls/MenuBar.cpp -------------------------------------------------------------------------------- /ogs/vgui2/controls/MenuItem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/vgui2/controls/MenuItem.cpp -------------------------------------------------------------------------------- /ogs/vgui2/controls/Panel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/vgui2/controls/Panel.cpp -------------------------------------------------------------------------------- /ogs/vgui2/controls/QueryBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/vgui2/controls/QueryBox.cpp -------------------------------------------------------------------------------- /ogs/vgui2/controls/RichText.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/vgui2/controls/RichText.cpp -------------------------------------------------------------------------------- /ogs/vgui2/controls/Slider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/vgui2/controls/Slider.cpp -------------------------------------------------------------------------------- /ogs/vgui2/controls/Splitter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/vgui2/controls/Splitter.cpp -------------------------------------------------------------------------------- /ogs/vgui2/controls/Tooltip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/vgui2/controls/Tooltip.cpp -------------------------------------------------------------------------------- /ogs/vgui2/controls/TreeView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/vgui2/controls/TreeView.cpp -------------------------------------------------------------------------------- /ogs/vgui2/controls/URLLabel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/vgui2/controls/URLLabel.cpp -------------------------------------------------------------------------------- /ogs/vgui2/src/Border.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/vgui2/src/Border.hpp -------------------------------------------------------------------------------- /ogs/vgui2/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/vgui2/src/CMakeLists.txt -------------------------------------------------------------------------------- /ogs/vgui2/src/HTMLWindow.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/vgui2/src/HTMLWindow.hpp -------------------------------------------------------------------------------- /ogs/vgui2/src/Image.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/vgui2/src/Image.hpp -------------------------------------------------------------------------------- /ogs/vgui2/src/Input.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/vgui2/src/Input.hpp -------------------------------------------------------------------------------- /ogs/vgui2/src/InputInternal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/vgui2/src/InputInternal.hpp -------------------------------------------------------------------------------- /ogs/vgui2/src/Localize.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/vgui2/src/Localize.hpp -------------------------------------------------------------------------------- /ogs/vgui2/src/Panel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/vgui2/src/Panel.hpp -------------------------------------------------------------------------------- /ogs/vgui2/src/Scheme.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/vgui2/src/Scheme.hpp -------------------------------------------------------------------------------- /ogs/vgui2/src/SchemeManager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/vgui2/src/SchemeManager.hpp -------------------------------------------------------------------------------- /ogs/vgui2/src/Surface.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/vgui2/src/Surface.hpp -------------------------------------------------------------------------------- /ogs/vgui2/src/System.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/vgui2/src/System.hpp -------------------------------------------------------------------------------- /ogs/vgui2/src/VGUI.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/vgui2/src/VGUI.hpp -------------------------------------------------------------------------------- /ogs/vgui2/src/custom/Border.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/vgui2/src/custom/Border.cpp -------------------------------------------------------------------------------- /ogs/vgui2/src/custom/Image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/vgui2/src/custom/Image.cpp -------------------------------------------------------------------------------- /ogs/vgui2/src/custom/Input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/vgui2/src/custom/Input.cpp -------------------------------------------------------------------------------- /ogs/vgui2/src/custom/Panel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/vgui2/src/custom/Panel.cpp -------------------------------------------------------------------------------- /ogs/vgui2/src/custom/Scheme.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/vgui2/src/custom/Scheme.cpp -------------------------------------------------------------------------------- /ogs/vgui2/src/custom/System.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/vgui2/src/custom/System.cpp -------------------------------------------------------------------------------- /ogs/vgui2/src/custom/VGUI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/vgui2/src/custom/VGUI.cpp -------------------------------------------------------------------------------- /ogs/vgui2/src/null/Border.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/vgui2/src/null/Border.cpp -------------------------------------------------------------------------------- /ogs/vgui2/src/null/Image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/vgui2/src/null/Image.cpp -------------------------------------------------------------------------------- /ogs/vgui2/src/null/Input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/vgui2/src/null/Input.cpp -------------------------------------------------------------------------------- /ogs/vgui2/src/null/Localize.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/vgui2/src/null/Localize.cpp -------------------------------------------------------------------------------- /ogs/vgui2/src/null/Panel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/vgui2/src/null/Panel.cpp -------------------------------------------------------------------------------- /ogs/vgui2/src/null/Scheme.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/vgui2/src/null/Scheme.cpp -------------------------------------------------------------------------------- /ogs/vgui2/src/null/Surface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/vgui2/src/null/Surface.cpp -------------------------------------------------------------------------------- /ogs/vgui2/src/null/System.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/vgui2/src/null/System.cpp -------------------------------------------------------------------------------- /ogs/vgui2/src/null/VGUI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/vgui2/src/null/VGUI.cpp -------------------------------------------------------------------------------- /ogs/vgui2/vgui_surfacelib/linuxfont.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ogs/vgui2/vgui_surfacelib/linuxfont.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ogs/voice/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/voice/CMakeLists.txt -------------------------------------------------------------------------------- /ogs/voice/null/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ogs/voice/speex/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ogs/vstdlib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/vstdlib/CMakeLists.txt -------------------------------------------------------------------------------- /ogs/vstdlib/KeyValuesSystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/vstdlib/KeyValuesSystem.cpp -------------------------------------------------------------------------------- /ogs/vstdlib/KeyValuesSystem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/vstdlib/KeyValuesSystem.hpp -------------------------------------------------------------------------------- /ogs/vstdlib/commandline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/vstdlib/commandline.cpp -------------------------------------------------------------------------------- /ogs/vstdlib/commandline.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/vstdlib/commandline.hpp -------------------------------------------------------------------------------- /ogs/vstdlib/coroutine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/vstdlib/coroutine.cpp -------------------------------------------------------------------------------- /ogs/vstdlib/cvar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/vstdlib/cvar.cpp -------------------------------------------------------------------------------- /ogs/vstdlib/osversion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/vstdlib/osversion.cpp -------------------------------------------------------------------------------- /ogs/vstdlib/random.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/vstdlib/random.cpp -------------------------------------------------------------------------------- /ogs/vstdlib/stringnormalize.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/vstdlib/stringnormalize.cpp -------------------------------------------------------------------------------- /ogs/vstdlib/stringnormalize.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/vstdlib/stringnormalize.hpp -------------------------------------------------------------------------------- /ogs/vstdlib/strtools.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/ogs/vstdlib/strtools.cpp -------------------------------------------------------------------------------- /projects/engine-ac96.mdsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/projects/engine-ac96.mdsp -------------------------------------------------------------------------------- /projects/engine.mdsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/projects/engine.mdsp -------------------------------------------------------------------------------- /projects/launcher.mdsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Counter-Strike-16/OpenGoldSrc/HEAD/projects/launcher.mdsp --------------------------------------------------------------------------------