├── .gitignore ├── .gitmodules ├── CMakeLists.txt ├── LICENSE ├── README.md ├── appveyor.yml ├── bugfixedapi ├── CMakeLists.txt └── IBugfixedServer.h ├── bugfixedapi_amxx ├── CMakeLists.txt ├── IGameConfigs.h ├── ITextParsers.h ├── amxxmodule.cpp ├── amxxmodule.h ├── bhl_api.cpp ├── bhl_api.h ├── bugfixedapi_amxx.cpp ├── bugfixedapi_amxx.def └── moduleconfig.h ├── cl_dll ├── CHud.cpp ├── CHudAmmo.cpp ├── CHudAmmo.h ├── CHudAmmoSecondary.cpp ├── CHudAmmoSecondary.h ├── CHudBase.cpp ├── CHudBase.h ├── CHudBattery.cpp ├── CHudBattery.h ├── CHudCrosshair.cpp ├── CHudCrosshair.h ├── CHudDeathNotice.cpp ├── CHudDeathNotice.h ├── CHudFlashlight.cpp ├── CHudFlashlight.h ├── CHudGeiger.cpp ├── CHudGeiger.h ├── CHudHealth.cpp ├── CHudHealth.h ├── CHudMenu.cpp ├── CHudMenu.h ├── CHudMessage.cpp ├── CHudMessage.h ├── CHudSayText.cpp ├── CHudSayText.h ├── CHudScores.cpp ├── CHudScores.h ├── CHudSpectator.cpp ├── CHudSpectator.h ├── CHudSpeedometer.cpp ├── CHudSpeedometer.h ├── CHudStatusBar.cpp ├── CHudStatusBar.h ├── CHudStatusIcons.cpp ├── CHudStatusIcons.h ├── CHudTextMessage.cpp ├── CHudTextMessage.h ├── CHudTimer.cpp ├── CHudTimer.h ├── CHudTrain.cpp ├── CHudTrain.h ├── CMakeLists.txt ├── CUpdateNotification.cpp ├── CUpdateNotification.h ├── GameStudioModelRenderer.cpp ├── GameStudioModelRenderer.h ├── GameStudioModelRenderer_Sample.cpp ├── GameStudioModelRenderer_Sample.h ├── StudioModelRenderer.cpp ├── StudioModelRenderer.h ├── aghudcountdown.cpp ├── aghudcountdown.h ├── aghudctf.cpp ├── aghudctf.h ├── aghudglobal.cpp ├── aghudglobal.h ├── aghudlocation.cpp ├── aghudlocation.h ├── aghudlongjump.cpp ├── aghudlongjump.h ├── aghudnextmap.cpp ├── aghudnextmap.h ├── aghudplayerid.cpp ├── aghudplayerid.h ├── aghudsettings.cpp ├── aghudsettings.h ├── aghudsuddendeath.cpp ├── aghudsuddendeath.h ├── aghudtimeout.cpp ├── aghudtimeout.h ├── aghudvote.cpp ├── aghudvote.h ├── aglocation.cpp ├── aglocation.h ├── ammo.h ├── ammohistory.cpp ├── ammohistory.h ├── bhlcfg.cpp ├── bhlcfg.h ├── camera.h ├── cdll_int.cpp ├── cl_dll.dsp ├── cl_dll.h ├── cl_util.h ├── client.rc ├── clientsteamcontext.cpp ├── clientsteamcontext.h ├── com_weapons.cpp ├── com_weapons.h ├── demo.cpp ├── demo.h ├── dinput │ ├── CMakeLists.txt │ ├── dinput.h │ ├── dinput8.lib │ └── dxguid.lib ├── dllexport.h ├── entity.cpp ├── ev_common.cpp ├── ev_hldm.cpp ├── ev_hldm.h ├── events.cpp ├── eventscripts.h ├── hl │ ├── CMakeLists.txt │ ├── hl_baseentity.cpp │ ├── hl_events.cpp │ ├── hl_objects.cpp │ └── hl_weapons.cpp ├── hud.h ├── hud_iface.h ├── hud_msg.cpp ├── hud_redraw.cpp ├── hud_servers.cpp ├── hud_servers.h ├── hud_servers_priv.h ├── hud_update.cpp ├── in_camera.cpp ├── in_camera_sdl.cpp ├── in_defs.h ├── input.cpp ├── inputw32.cpp ├── inputw32_sdl.cpp ├── jpeg │ ├── CMakeLists.txt │ ├── jpge.cpp │ └── jpge.h ├── kbutton.h ├── lodepng │ ├── CMakeLists.txt │ ├── lodepng.cpp │ └── lodepng.h ├── memory.h ├── memory_common.cpp ├── memory_linux.cpp ├── memory_stub.cpp ├── memory_win32.cpp ├── net.cpp ├── net.h ├── overview.cpp ├── overview.h ├── parsemsg.cpp ├── parsemsg.h ├── readme.txt ├── resource.h ├── results.cpp ├── results.h ├── soundsystem.cpp ├── studio_util.cpp ├── studio_util.h ├── svc_messages.cpp ├── svc_messages.h ├── tf_defs.h ├── tri.cpp ├── util.cpp ├── util_vector.h ├── vgui2 │ ├── CAvatarImage.cpp │ ├── CAvatarImage.h │ ├── CBackGroundPanel.cpp │ ├── CBackGroundPanel.h │ ├── CBaseHudChat.cpp │ ├── CBaseHudChat.h │ ├── CBaseViewport.cpp │ ├── CBaseViewport.h │ ├── CClientMOTD.cpp │ ├── CClientMOTD.h │ ├── CClientVGUI.cpp │ ├── CClientVGUI.h │ ├── CHudChat.cpp │ ├── CHudChat.h │ ├── CHudScoreBoard.cpp │ ├── CHudScoreBoard.h │ ├── CHudTextVgui.cpp │ ├── CHudTextVgui.h │ ├── CHudViewport.cpp │ ├── CHudViewport.h │ ├── CMakeLists.txt │ ├── CPlayerListPanel.cpp │ ├── CPlayerListPanel.h │ ├── CPngImage.cpp │ ├── CPngImage.h │ ├── CScorePanel.cpp │ ├── CScorePanel.h │ ├── CVoiceStatus2.cpp │ ├── CVoiceStatus2.h │ ├── IEngineVgui.h │ ├── IViewport.h │ ├── IViewportPanel.h │ ├── KeyValuesCompat.cpp │ ├── KeyValuesCompat.h │ ├── VGUI2Paths.h │ ├── ViewportPanelNames.h │ └── gameui │ │ ├── CChangeLogDialog.cpp │ │ ├── CChangeLogDialog.h │ │ ├── CGameUITestPanel.cpp │ │ ├── CGameUITestPanel.h │ │ ├── CGameUIViewport.cpp │ │ ├── CGameUIViewport.h │ │ ├── CMakeLists.txt │ │ ├── CUpdateNotificationDialog.cpp │ │ ├── CUpdateNotificationDialog.h │ │ ├── CUpdaterDebugDialog.cpp │ │ ├── CUpdaterDebugDialog.h │ │ ├── GameUIPanelNames.h │ │ ├── IGameUIPanel.h │ │ └── options │ │ ├── CAboutSubOptions.cpp │ │ ├── CAboutSubOptions.h │ │ ├── CAdvOptionsDialog.cpp │ │ ├── CAdvOptionsDialog.h │ │ ├── CChatSubOptions.cpp │ │ ├── CChatSubOptions.h │ │ ├── CColorPicker.cpp │ │ ├── CColorPicker.h │ │ ├── CCrosshairSubOptions.cpp │ │ ├── CCrosshairSubOptions.h │ │ ├── CCvarCheckButton.cpp │ │ ├── CCvarCheckButton.h │ │ ├── CCvarColor.cpp │ │ ├── CCvarColor.h │ │ ├── CCvarSlider.cpp │ │ ├── CCvarSlider.h │ │ ├── CCvarTextEntry.cpp │ │ ├── CCvarTextEntry.h │ │ ├── CGeneralSubOptions.cpp │ │ ├── CGeneralSubOptions.h │ │ ├── CHudSubOptions.cpp │ │ ├── CHudSubOptions.h │ │ ├── CMakeLists.txt │ │ ├── CScoreboardSubOptions.cpp │ │ ├── CScoreboardSubOptions.h │ │ └── colorpicker │ │ ├── CBarPanel.cpp │ │ ├── CBarPanel.h │ │ ├── CMakeLists.txt │ │ ├── CPickerPanel.cpp │ │ ├── CPickerPanel.h │ │ ├── CSelCirclePanel.cpp │ │ ├── CSelCirclePanel.h │ │ ├── CTextureManager.cpp │ │ └── CTextureManager.h ├── vgui_ClassMenu.cpp ├── vgui_ConsolePanel.cpp ├── vgui_ConsolePanel.h ├── vgui_ControlConfigPanel.cpp ├── vgui_ControlConfigPanel.h ├── vgui_CustomObjects.cpp ├── vgui_MOTDWindow.cpp ├── vgui_SchemeManager.cpp ├── vgui_SchemeManager.h ├── vgui_ScorePanel.cpp ├── vgui_ScorePanel.h ├── vgui_ServerBrowser.cpp ├── vgui_ServerBrowser.h ├── vgui_SpectatorPanel.cpp ├── vgui_SpectatorPanel.h ├── vgui_TeamFortressViewport.cpp ├── vgui_TeamFortressViewport.h ├── vgui_int.cpp ├── vgui_int.h ├── vgui_teammenu.cpp ├── view.cpp ├── view.h └── wrect.h ├── cmake ├── FindDInput.cmake ├── FindDXGUID.cmake ├── FindSDL2.cmake ├── FindSteamAPI.cmake ├── Findtier0.cmake ├── Findvgui.cmake ├── Findvstdlib.cmake ├── GetGitRevisionDescription.cmake ├── GetGitRevisionDescription.cmake.in ├── InputFilesList.cmake ├── Linux32Toolchain.cmake ├── MSVCRuntime.cmake ├── Ternary.cmake └── WinXPSupport.cmake ├── common ├── CMakeLists.txt ├── MinMax.h ├── Sequence.h ├── appversion.h.in ├── beamdef.h ├── cl_entity.h ├── com_model.h ├── con_nprint.h ├── const.h ├── crc.h ├── cvardef.h ├── demo_api.h ├── director_cmds.h ├── dlight.h ├── dll_state.h ├── entity_state.h ├── entity_types.h ├── enum_utils.h ├── enums.h ├── event_api.h ├── event_args.h ├── event_flags.h ├── hltv.h ├── in_buttons.h ├── interface.cpp ├── interface.h ├── ivoicetweak.h ├── mathlib.h ├── net_api.h ├── netadr.h ├── nowin.h ├── particledef.h ├── pmtrace.h ├── port.h ├── qfont.h ├── r_efx.h ├── r_studioint.h ├── ref_params.h ├── screenfade.h ├── studio_event.h ├── triangleapi.h ├── usercmd.h ├── weaponinfo.h ├── winsani_in.h └── winsani_out.h ├── dedicated ├── Dedicated.dsp ├── Makefile ├── NetGame.ico ├── conproc.cpp ├── conproc.h ├── dedicated.h ├── dedicated.rc ├── engine.cpp ├── enginecallback.h ├── exports.h ├── resource.h ├── sys_ded.cpp └── sys_ded.h ├── dlls ├── AI_BaseNPC_Schedule.cpp ├── CBugfixedServer.cpp ├── CBugfixedServer.h ├── CMakeLists.txt ├── Makefile ├── Wxdebug.cpp ├── activity.h ├── activitymap.h ├── aflock.cpp ├── agrunt.cpp ├── airtank.cpp ├── animating.cpp ├── animation.cpp ├── animation.h ├── apache.cpp ├── barnacle.cpp ├── barney.cpp ├── basemonster.h ├── bigmomma.cpp ├── bloater.cpp ├── bmodels.cpp ├── bullsquid.cpp ├── buttons.cpp ├── cbase.cpp ├── cbase.h ├── cdll_dll.h ├── client.cpp ├── client.h ├── com_utils.cpp ├── com_utils.h ├── combat.cpp ├── controller.cpp ├── convar.cpp ├── convar.h ├── crossbow.cpp ├── crowbar.cpp ├── decals.h ├── defaultai.cpp ├── defaultai.h ├── doors.cpp ├── doors.h ├── effects.cpp ├── effects.h ├── egon.cpp ├── enginecallback.h ├── explode.cpp ├── explode.h ├── extdll.h ├── flyingmonster.cpp ├── flyingmonster.h ├── func_break.cpp ├── func_break.h ├── func_tank.cpp ├── game.cpp ├── game.h ├── gamerules.cpp ├── gamerules.h ├── gargantua.cpp ├── gauss.cpp ├── genericmonster.cpp ├── ggrenade.cpp ├── globals.cpp ├── glock.cpp ├── gman.cpp ├── h_ai.cpp ├── h_battery.cpp ├── h_cine.cpp ├── h_cycler.cpp ├── h_export.cpp ├── handgrenade.cpp ├── hassassin.cpp ├── headcrab.cpp ├── healthkit.cpp ├── hgrunt.cpp ├── hl.def ├── hl.rc ├── hornet.cpp ├── hornet.h ├── hornetgun.cpp ├── houndeye.cpp ├── ichthyosaur.cpp ├── islave.cpp ├── items.cpp ├── items.h ├── leech.cpp ├── lights.cpp ├── maprules.cpp ├── maprules.h ├── monsterevent.h ├── monstermaker.cpp ├── monsters.cpp ├── monsters.h ├── monsterstate.cpp ├── mortar.cpp ├── mp5.cpp ├── multiplay_gamerules.cpp ├── nihilanth.cpp ├── nodes.cpp ├── nodes.h ├── observer.cpp ├── osprey.cpp ├── path.cpp ├── path.h ├── pathcorner.cpp ├── pcre │ ├── CMakeLists.txt │ ├── config.h │ ├── pcre.h │ ├── pcre_chartables.c │ ├── pcre_compile.c │ ├── pcre_exec.c │ ├── pcre_globals.c │ ├── pcre_internal.h │ ├── pcre_newline.c │ ├── pcre_tables.c │ ├── pcre_try_flipped.c │ └── ucp.h ├── plane.cpp ├── plane.h ├── plats.cpp ├── player.cpp ├── player.h ├── playermonster.cpp ├── python.cpp ├── rat.cpp ├── resource.h ├── roach.cpp ├── rpg.cpp ├── satchel.cpp ├── saverestore.h ├── schedule.cpp ├── schedule.h ├── scientist.cpp ├── scripted.cpp ├── scripted.h ├── scriptevent.h ├── shotgun.cpp ├── singleplay_gamerules.cpp ├── skill.cpp ├── skill.h ├── sound.cpp ├── soundent.cpp ├── soundent.h ├── spectator.cpp ├── spectator.h ├── squad.h ├── squadmonster.cpp ├── squadmonster.h ├── squeakgrenade.cpp ├── stats.cpp ├── subs.cpp ├── talkmonster.cpp ├── talkmonster.h ├── teamplay_gamerules.cpp ├── teamplay_gamerules.h ├── tempmonster.cpp ├── tentacle.cpp ├── trains.h ├── triggers.cpp ├── tripmine.cpp ├── turret.cpp ├── util.cpp ├── util.h ├── vector.h ├── weapons.cpp ├── weapons.h ├── world.cpp ├── wpn_shared │ ├── CMakeLists.txt │ └── hl_wpn_glock.cpp ├── wxdebug.h ├── xen.cpp └── zombie.cpp ├── engine ├── APIProxy.h ├── CMakeLists.txt ├── IBaseUI.h ├── IClientVGUI.h ├── IGameUIFuncs.h ├── anorms.h ├── cdll_int.h ├── cmd_function_t.h ├── custom.h ├── customentity.h ├── edict.h ├── eiface.h ├── keydefs.h ├── progdefs.h ├── progs.h ├── shake.h └── studio.h ├── external ├── SDL2 │ ├── include │ │ └── SDL2 │ │ │ ├── SDL.h │ │ │ ├── SDL_assert.h │ │ │ ├── SDL_atomic.h │ │ │ ├── SDL_audio.h │ │ │ ├── SDL_bits.h │ │ │ ├── SDL_blendmode.h │ │ │ ├── SDL_clipboard.h │ │ │ ├── SDL_config.h │ │ │ ├── SDL_config_android.h │ │ │ ├── SDL_config_iphoneos.h │ │ │ ├── SDL_config_macosx.h │ │ │ ├── SDL_config_minimal.h │ │ │ ├── SDL_config_nintendods.h │ │ │ ├── SDL_config_pandora.h │ │ │ ├── SDL_config_windows.h │ │ │ ├── SDL_config_wiz.h │ │ │ ├── SDL_copying.h │ │ │ ├── SDL_cpuinfo.h │ │ │ ├── SDL_endian.h │ │ │ ├── SDL_error.h │ │ │ ├── SDL_events.h │ │ │ ├── SDL_gamecontroller.h │ │ │ ├── SDL_gesture.h │ │ │ ├── SDL_haptic.h │ │ │ ├── SDL_hints.h │ │ │ ├── SDL_input.h │ │ │ ├── SDL_joystick.h │ │ │ ├── SDL_keyboard.h │ │ │ ├── SDL_keycode.h │ │ │ ├── SDL_loadso.h │ │ │ ├── SDL_log.h │ │ │ ├── SDL_main.h │ │ │ ├── SDL_messagebox.h │ │ │ ├── SDL_mouse.h │ │ │ ├── SDL_mutex.h │ │ │ ├── SDL_name.h │ │ │ ├── SDL_opengl.h │ │ │ ├── SDL_opengles.h │ │ │ ├── SDL_opengles2.h │ │ │ ├── SDL_pixels.h │ │ │ ├── SDL_platform.h │ │ │ ├── SDL_power.h │ │ │ ├── SDL_quit.h │ │ │ ├── SDL_rect.h │ │ │ ├── SDL_render.h │ │ │ ├── SDL_revision.h │ │ │ ├── SDL_rwops.h │ │ │ ├── SDL_scancode.h │ │ │ ├── SDL_shape.h │ │ │ ├── SDL_stdinc.h │ │ │ ├── SDL_surface.h │ │ │ ├── SDL_system.h │ │ │ ├── SDL_syswm.h │ │ │ ├── SDL_test.h │ │ │ ├── SDL_test_assert.h │ │ │ ├── SDL_test_common.h │ │ │ ├── SDL_test_compare.h │ │ │ ├── SDL_test_crc32.h │ │ │ ├── SDL_test_font.h │ │ │ ├── SDL_test_fuzzer.h │ │ │ ├── SDL_test_harness.h │ │ │ ├── SDL_test_images.h │ │ │ ├── SDL_test_log.h │ │ │ ├── SDL_test_md5.h │ │ │ ├── SDL_test_random.h │ │ │ ├── SDL_thread.h │ │ │ ├── SDL_timer.h │ │ │ ├── SDL_touch.h │ │ │ ├── SDL_types.h │ │ │ ├── SDL_version.h │ │ │ ├── SDL_video.h │ │ │ ├── begin_code.h │ │ │ ├── close_code.h │ │ │ └── merge_sdl2.sh │ └── lib │ │ ├── SDL2.lib │ │ ├── libSDL2-2.0.0.dylib │ │ ├── libSDL2-2.0.so.0 │ │ └── libSDL2.dylib ├── curl │ ├── README.txt │ ├── include │ │ └── curl │ │ │ ├── curl.h │ │ │ ├── curlver.h │ │ │ ├── easy.h │ │ │ ├── mprintf.h │ │ │ ├── multi.h │ │ │ ├── stdcheaders.h │ │ │ ├── system.h │ │ │ ├── typecheck-gcc.h │ │ │ └── urlapi.h │ └── lib │ │ ├── libcurl_static.lib │ │ └── libcurl_static_debug.lib ├── nlohmann_json │ ├── CMakeLists.txt │ ├── LICENSE.MIT │ ├── README.txt │ └── include │ │ └── json.hpp └── semver.c │ ├── CMakeLists.txt │ ├── LICENSE │ ├── README.txt │ ├── include │ └── semver.h │ └── semver.c ├── game_shared ├── CGameVersion.cpp ├── CGameVersion.h ├── CMakeLists.txt ├── ClientSupportsFlags.h ├── IGameVersion.h ├── bitvec.h ├── client │ ├── CMakeLists.txt │ ├── vgui_checkbutton2.cpp │ ├── vgui_checkbutton2.h │ ├── vgui_defaultinputsignal.h │ ├── vgui_grid.cpp │ ├── vgui_grid.h │ ├── vgui_helpers.cpp │ ├── vgui_helpers.h │ ├── vgui_listbox.cpp │ ├── vgui_listbox.h │ ├── vgui_loadtga.cpp │ ├── vgui_loadtga.h │ ├── vgui_scrollbar2.cpp │ ├── vgui_scrollbar2.h │ ├── vgui_slider2.cpp │ ├── vgui_slider2.h │ ├── voice_banmgr.cpp │ ├── voice_banmgr.h │ ├── voice_status.cpp │ ├── voice_status.h │ ├── voice_vgui_tweakdlg.cpp │ └── voice_vgui_tweakdlg.h ├── server │ ├── CMakeLists.txt │ ├── voice_gamemgr.cpp │ └── voice_gamemgr.h ├── updater │ ├── CGameUpdater.cpp │ ├── CGameUpdater.h │ └── CMakeLists.txt └── voice_common.h ├── gamedir ├── addons │ └── amxmodx │ │ └── scripting │ │ └── include │ │ └── bugfixedapi.inc ├── delta.lst ├── resource │ └── GameMenu.res ├── sprites │ ├── ag_ctf.spr │ ├── ag_ctf_score.spr │ └── hud.txt └── ui │ ├── gfx │ ├── 800corner.tga │ ├── 800corner1.tga │ ├── 800corner2.tga │ ├── 800corner3.tga │ ├── 800corner4.tga │ ├── CircleBg.png │ ├── CircleFg.png │ ├── MutedIcon32.png │ └── cross_bg.tga │ ├── resource │ ├── BaseChat.res │ ├── ChangelogDialog.res │ ├── ChatFilters.res │ ├── ChatScheme.res │ ├── GameScheme.res │ ├── MOTD.res │ ├── ScorePanel.res │ ├── SourceScheme.res │ ├── UpdateNotificationDialog.res │ ├── UpdaterDebugDialog.res │ ├── language │ │ ├── bugfixedhl_english.txt │ │ ├── chat_english.txt │ │ ├── chat_french.txt │ │ ├── chat_german.txt │ │ ├── chat_italian.txt │ │ ├── chat_korean.txt │ │ ├── chat_russian.txt │ │ ├── chat_schinese.txt │ │ ├── chat_spanish.txt │ │ └── chat_tchinese.txt │ └── options │ │ ├── AboutSubOptions.res │ │ ├── ChatSubOptions.res │ │ ├── ColorPicker.res │ │ ├── CrosshairSubOptions.res │ │ ├── GeneralSubOptions.res │ │ ├── HudSubOptions.res │ │ └── ScoreboardSubOptions.res │ └── scripts │ ├── HudLayout.res │ └── hudanimations.txt ├── lib └── public │ ├── game_controls.lib │ ├── libsteam_api.so │ ├── libtier0.dylib │ ├── libtier0.so │ ├── libvstdlib.dylib │ ├── libvstdlib.so │ ├── steam_api.lib │ ├── tier0.def │ ├── tier0.exp │ ├── tier0.lib │ ├── vgui.dylib │ ├── vgui.so │ ├── vstdlib.def │ ├── vstdlib.exp │ └── vstdlib.lib ├── pm_shared ├── CMakeLists.txt ├── pm_debug.c ├── pm_debug.h ├── pm_defs.h ├── pm_info.h ├── pm_materials.h ├── pm_math.c ├── pm_movevars.h ├── pm_shared.c └── pm_shared.h ├── public ├── CMakeLists.txt ├── FileSystem.h ├── archtypes.h ├── cl_dll │ └── IGameClientExports.h ├── keydefs.h ├── math │ ├── CMakeLists.txt │ ├── Matrix3x4.h │ ├── interpolation.cpp │ ├── interpolation.h │ ├── mathlib.cpp │ ├── mathlib.h │ └── vector.h ├── particleman.h ├── pman_particlemem.h ├── pman_triangleffect.h ├── public_interface.h └── steam │ ├── isteamapplist.h │ ├── isteamapps.h │ ├── isteamclient.h │ ├── isteamcontroller.h │ ├── isteamfriends.h │ ├── isteamgameserver.h │ ├── isteamgameserverstats.h │ ├── isteamhtmlsurface.h │ ├── isteamhttp.h │ ├── isteammatchmaking.h │ ├── isteammusic.h │ ├── isteammusicremote.h │ ├── isteamnetworking.h │ ├── isteamremotestorage.h │ ├── isteamscreenshots.h │ ├── isteamugc.h │ ├── isteamunifiedmessages.h │ ├── isteamuser.h │ ├── isteamuserstats.h │ ├── isteamutils.h │ ├── matchmakingtypes.h │ ├── steam_api.h │ ├── steam_gameserver.h │ ├── steamclientpublic.h │ ├── steamhttpenums.h │ ├── steamtypes.h │ └── steamuniverse.h ├── scripts ├── BuildRelease.ps1 ├── DeployLibs.bat ├── DeployLibs.sh ├── FixClientLibPath.sh ├── inc_Linux.ps1 ├── inc_Targets.ps1 └── inc_Windows.ps1 ├── source_sdk ├── CMakeLists.txt ├── common │ ├── CMakeLists.txt │ ├── ifilesystemopendialog.h │ ├── randoverride.cpp │ └── xbox │ │ └── xboxstubs.h ├── public │ ├── CMakeLists.txt │ ├── FileSystem_Helpers.cpp │ ├── FileSystem_Helpers.h │ ├── ICVar.h │ ├── OfflineMode.h │ ├── SDK_Color.h │ ├── Vector.h │ ├── Vector2D.h │ ├── appframework │ │ ├── AppFramework.h │ │ ├── CMakeLists.txt │ │ ├── IAppSystem.h │ │ ├── IAppSystemGroup.h │ │ └── VguiMatSysApp.h │ ├── basetypes.h │ ├── bitmap │ │ ├── Bitmap.h │ │ ├── CMakeLists.txt │ │ ├── Float_BM.h │ │ ├── ImageFormat.h │ │ ├── PSD.h │ │ ├── TGALoader.h │ │ └── TGAWriter.h │ ├── commonmacros.h │ ├── coordsize.h │ ├── datamap.h │ ├── datamodel │ │ ├── AttributeFlags.h │ │ ├── CMakeLists.txt │ │ ├── DmAttributeVar.h │ │ ├── DmElementRef.h │ │ ├── DmElementUtils.h │ │ ├── IDataModel.h │ │ ├── IDmAttribute.h │ │ ├── IDmElement.h │ │ └── idmelementinternal.h │ ├── html │ │ ├── CMakeLists.txt │ │ ├── htmlmessages.h │ │ ├── ichromehtmlwrapper.h │ │ ├── ihtmlchrome.h │ │ ├── ihtmlserializer.h │ │ └── ipainthtml.h │ ├── mathlib.h │ ├── mathlib │ │ ├── CMakeLists.txt │ │ ├── halton.h │ │ ├── lightdesc.h │ │ ├── math_base.h │ │ └── ssemath.h │ ├── tier0 │ │ ├── CMakeLists.txt │ │ ├── afxmem_override.cpp │ │ ├── basetypes.h │ │ ├── commonmacros.h │ │ ├── dbg.h │ │ ├── dbgflag.h │ │ ├── eventmasks.h │ │ ├── eventmodes.h │ │ ├── fasttimer.h │ │ ├── ia32detect.h │ │ ├── icommandline.h │ │ ├── ioctlcodes.h │ │ ├── k8performancecounters.h │ │ ├── l2cache.h │ │ ├── mem.h │ │ ├── memalloc.h │ │ ├── memdbgoff.h │ │ ├── memdbgon.h │ │ ├── memoverride-vc7.cpp │ │ ├── memoverride.cpp │ │ ├── minidump.h │ │ ├── p4performancecounters.h │ │ ├── p5p6performancecounters.h │ │ ├── platform.h │ │ ├── pmelib.h │ │ ├── protected_things.h │ │ ├── testthread.h │ │ ├── threadtools.h │ │ ├── tslist.h │ │ ├── validator.h │ │ ├── valobject.h │ │ ├── valve_off.h │ │ ├── valve_on.h │ │ ├── vcr_shared.h │ │ ├── vcrmode.h │ │ ├── vprof.h │ │ ├── wchartypes.h │ │ └── xbox_codeline_defines.h │ ├── tier1 │ │ ├── CMakeLists.txt │ │ ├── CharacterSet.h │ │ ├── ConVar.h │ │ ├── DataManager.h │ │ ├── Diff.h │ │ ├── FmtStr.h │ │ ├── JobThread.h │ │ ├── KeyValues.h │ │ ├── MemPool.h │ │ ├── MemStack.h │ │ ├── RangeCheckedVar.h │ │ ├── RefCount.h │ │ ├── SmartPtr.h │ │ ├── StringPool.h │ │ ├── TokenReader.h │ │ ├── UtlBidirectionalSet.h │ │ ├── UtlBuffer.h │ │ ├── UtlDict.h │ │ ├── UtlFixedLinkedList.h │ │ ├── UtlFixedMemory.h │ │ ├── UtlFlags.h │ │ ├── UtlHandleTable.h │ │ ├── UtlHash.h │ │ ├── UtlLinkedList.h │ │ ├── UtlMap.h │ │ ├── UtlMemory.h │ │ ├── UtlMultiList.h │ │ ├── UtlNTree.h │ │ ├── UtlPriorityQueue.h │ │ ├── UtlQueue.h │ │ ├── UtlRBTree.h │ │ ├── UtlSortVector.h │ │ ├── UtlStack.h │ │ ├── UtlString.h │ │ ├── UtlStringMap.h │ │ ├── UtlSymbol.h │ │ ├── UtlVector.h │ │ ├── bitbuf.h │ │ ├── byteswap.h │ │ ├── checksum_crc.h │ │ ├── checksum_md5.h │ │ ├── generichash.h │ │ ├── interface.h │ │ ├── netadr.h │ │ ├── processor_detect.h │ │ ├── strtools.h │ │ └── tier1.h │ ├── vgui │ │ ├── CMakeLists.txt │ │ ├── Cursor.h │ │ ├── Dar.h │ │ ├── IBorder.h │ │ ├── IClientPanel.h │ │ ├── IHTML.h │ │ ├── IImage.h │ │ ├── IInput.h │ │ ├── IInputInternal.h │ │ ├── ILocalize.h │ │ ├── IPanel.h │ │ ├── IScheme.h │ │ ├── ISurface.h │ │ ├── ISurfaceV28.h │ │ ├── ISurfaceV29.h │ │ ├── ISystem.h │ │ ├── IVGui.h │ │ ├── IVguiMatInfo.h │ │ ├── IVguiMatInfoVar.h │ │ ├── IVguiV06.h │ │ ├── KeyCode.h │ │ ├── MouseCode.h │ │ ├── Point.h │ │ └── VGUI2.h │ ├── vgui_controls │ │ ├── AnimatingImagePanel.h │ │ ├── AnimationController.h │ │ ├── BitmapImagePanel.h │ │ ├── BuildGroup.h │ │ ├── BuildModeDialog.h │ │ ├── Button.h │ │ ├── CMakeLists.txt │ │ ├── CheckButton.h │ │ ├── CheckButtonList.h │ │ ├── ComboBox.h │ │ ├── Controls.h │ │ ├── DialogManager.h │ │ ├── DirectorySelectDialog.h │ │ ├── Divider.h │ │ ├── EditablePanel.h │ │ ├── ExpandButton.h │ │ ├── FileOpenDialog.h │ │ ├── FocusNavGroup.h │ │ ├── Frame.h │ │ ├── GraphPanel.h │ │ ├── HTML.h │ │ ├── Image.h │ │ ├── ImageList.h │ │ ├── ImagePanel.h │ │ ├── InputDialog.h │ │ ├── KeyBindingHelpDialog.h │ │ ├── KeyBindingMap.h │ │ ├── KeyBoardEditorDialog.h │ │ ├── Label.h │ │ ├── ListPanel.h │ │ ├── ListViewPanel.h │ │ ├── Menu.h │ │ ├── MenuBar.h │ │ ├── MenuButton.h │ │ ├── MenuItem.h │ │ ├── MessageBox.h │ │ ├── MessageMap.h │ │ ├── PHandle.h │ │ ├── Panel.h │ │ ├── PanelAnimationVar.h │ │ ├── PanelListPanel.h │ │ ├── ProgressBar.h │ │ ├── ProgressBox.h │ │ ├── PropertyDialog.h │ │ ├── PropertyPage.h │ │ ├── PropertySheet.h │ │ ├── QueryBox.h │ │ ├── RadioButton.h │ │ ├── RichText.h │ │ ├── ScrollBar.h │ │ ├── ScrollBarSlider.h │ │ ├── SectionedListPanel.h │ │ ├── Slider.h │ │ ├── Splitter.h │ │ ├── TextEntry.h │ │ ├── TextImage.h │ │ ├── ToggleButton.h │ │ ├── ToolWindow.h │ │ ├── Tooltip.h │ │ ├── TreeView.h │ │ ├── TreeViewListControl.h │ │ ├── URLLabel.h │ │ ├── WizardPanel.h │ │ ├── WizardSubPanel.h │ │ ├── pch_vgui_controls.h │ │ └── vgui_controls.cpp │ ├── vstdlib │ │ ├── CMakeLists.txt │ │ ├── ICommandline.h │ │ ├── IKeyValuesSystem.h │ │ ├── cvar.h │ │ ├── pch_vstdlib.h │ │ ├── random.h │ │ ├── strtools.h │ │ └── vstdlib.h │ ├── winlite.h │ └── worldsize.h ├── tier1 │ ├── .gitignore │ ├── CMakeLists.txt │ ├── CharacterSet.cpp │ ├── ConVar.cpp │ ├── DataManager.cpp │ ├── Diff.cpp │ ├── JobThread.cpp │ ├── KeyValues.cpp │ ├── MemPool.cpp │ ├── MemStack.cpp │ ├── RangeCheckedVar.cpp │ ├── StringPool.cpp │ ├── TokenReader.cpp │ ├── UtlBuffer.cpp │ ├── UtlString.cpp │ ├── UtlSymbol.cpp │ ├── bitbuf.cpp │ ├── byteswap.cpp │ ├── checksum_crc.cpp │ ├── checksum_md5.cpp │ ├── generichash.cpp │ ├── interface.cpp │ ├── netadr.cpp │ ├── processor_detect.cpp │ ├── processor_detect_linux.cpp │ ├── strtools.cpp │ ├── tier1.cpp │ ├── tier1.vcxproj │ ├── tier1.vcxproj.filters │ ├── tier1.vcxproj.user │ └── xboxstubs.cpp └── vgui2 │ ├── controls │ ├── .gitignore │ ├── 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 │ ├── vgui2_controls.vcxproj │ ├── vgui2_controls.vcxproj.filters │ └── vgui2_controls.vcxproj.user │ └── src │ ├── CMakeLists.txt │ ├── vgui_key_translation.cpp │ └── vgui_key_translation.h └── utils ├── bspinfo ├── bspinfo.c ├── bspinfo.dsp └── bspinfo.dsw ├── common ├── bspfile.c ├── bspfile.h ├── cmdlib.c ├── cmdlib.h ├── lbmlib.c ├── lbmlib.h ├── mathlib.c ├── mathlib.h ├── movie.h ├── polylib.c ├── polylib.h ├── scriplib.c ├── scriplib.h ├── threads.c ├── threads.h ├── trilib.c ├── trilib.h ├── wadlib.c └── wadlib.h ├── light ├── light.c ├── light.dsp ├── light.h ├── ltface.c └── trace.c ├── makefont ├── makefont.cpp ├── makefont.dsp └── makefont.dsw ├── makels ├── makels.cpp ├── makels.dsp ├── makels.dsw └── makels.mak ├── mdlviewer ├── mdlviewer.cpp ├── mdlviewer.dsp ├── mdlviewer.dsw ├── mdlviewer.h ├── studio_render.cpp └── studio_utils.cpp ├── mkmovie └── mkmovie.c ├── procinfo ├── lib │ └── win32_vc6 │ │ └── procinfo.lib └── procinfo.h ├── qbsp2 ├── bsp5.h ├── cull.c ├── gldraw.c ├── merge.c ├── nodraw.c ├── outside.c ├── portals.c ├── qbsp.c ├── qbsp2.dsp ├── qbsp2.dsw ├── solidbsp.c ├── surfaces.c ├── tjunc.c └── writebsp.c ├── qcsg ├── brush.c ├── csg.h ├── gldraw.c ├── hullfile.c ├── hulls.txt ├── map.c ├── qcsg.c ├── qcsg.dsp ├── qcsg.dsw └── textures.c ├── qlumpy ├── qlumpy.c ├── qlumpy.dsp ├── qlumpy.dsw ├── qlumpy.h └── quakegrb.c ├── qrad ├── lightmap.c ├── qrad.c ├── qrad.dsp ├── qrad.dsw ├── qrad.h ├── trace.c └── vismat.c ├── serverctrl ├── ServerCtrl.cpp ├── ServerCtrl.h ├── ServerCtrl.rc ├── ServerCtrlDlg.cpp ├── ServerCtrlDlg.h ├── StdAfx.cpp ├── StdAfx.h ├── res │ ├── serverctrl.ico │ └── serverctrl.rc2 ├── resource.h └── serverctrl.dsp ├── smdlexp ├── smdlexp.cpp ├── smdlexp.def ├── smdlexp.dsp ├── smdlexp.dsw ├── smdlexp.rc ├── smedefs.h └── smexprc.h ├── sprgen ├── sprgen.c ├── sprgen.dsp ├── sprgen.dsw └── spritegn.h ├── studiomdl ├── bmpread.c ├── studiomdl.c ├── studiomdl.dsp ├── studiomdl.dsw ├── studiomdl.h ├── tristrip.c └── write.c ├── vgui ├── include │ ├── VGUI.h │ ├── VGUI_ActionSignal.h │ ├── VGUI_App.h │ ├── VGUI_Bitmap.h │ ├── VGUI_BitmapTGA.h │ ├── VGUI_Border.h │ ├── VGUI_BorderLayout.h │ ├── VGUI_BorderPair.h │ ├── VGUI_BuildGroup.h │ ├── VGUI_Button.h │ ├── VGUI_ButtonController.h │ ├── VGUI_ButtonGroup.h │ ├── VGUI_ChangeSignal.h │ ├── VGUI_CheckButton.h │ ├── VGUI_Color.h │ ├── VGUI_ComboKey.h │ ├── VGUI_ConfigWizard.h │ ├── VGUI_Cursor.h │ ├── VGUI_Dar.h │ ├── VGUI_DataInputStream.h │ ├── VGUI_Desktop.h │ ├── VGUI_DesktopIcon.h │ ├── VGUI_EditPanel.h │ ├── VGUI_EtchedBorder.h │ ├── VGUI_FileInputStream.h │ ├── VGUI_FlowLayout.h │ ├── VGUI_FocusChangeSignal.h │ ├── VGUI_FocusNavGroup.h │ ├── VGUI_Font.h │ ├── VGUI_Frame.h │ ├── VGUI_FrameSignal.h │ ├── VGUI_GridLayout.h │ ├── VGUI_HeaderPanel.h │ ├── VGUI_Image.h │ ├── VGUI_ImagePanel.h │ ├── VGUI_InputSignal.h │ ├── VGUI_InputStream.h │ ├── VGUI_IntChangeSignal.h │ ├── VGUI_IntLabel.h │ ├── VGUI_KeyCode.h │ ├── VGUI_Label.h │ ├── VGUI_Layout.h │ ├── VGUI_LayoutInfo.h │ ├── VGUI_LineBorder.h │ ├── VGUI_ListPanel.h │ ├── VGUI_LoweredBorder.h │ ├── VGUI_Menu.h │ ├── VGUI_MenuItem.h │ ├── VGUI_MenuSeparator.h │ ├── VGUI_MessageBox.h │ ├── VGUI_MiniApp.h │ ├── VGUI_MouseCode.h │ ├── VGUI_Panel.h │ ├── VGUI_Point.h │ ├── VGUI_PopupMenu.h │ ├── VGUI_ProgressBar.h │ ├── VGUI_RadioButton.h │ ├── VGUI_RaisedBorder.h │ ├── VGUI_RepaintSignal.h │ ├── VGUI_Scheme.h │ ├── VGUI_ScrollBar.h │ ├── VGUI_ScrollPanel.h │ ├── VGUI_Slider.h │ ├── VGUI_StackLayout.h │ ├── VGUI_String.h │ ├── VGUI_Surface.h │ ├── VGUI_SurfaceBase.h │ ├── VGUI_SurfaceGL.h │ ├── VGUI_TabPanel.h │ ├── VGUI_TablePanel.h │ ├── VGUI_TaskBar.h │ ├── VGUI_TextEntry.h │ ├── VGUI_TextGrid.h │ ├── VGUI_TextImage.h │ ├── VGUI_TextPanel.h │ ├── VGUI_TickSignal.h │ ├── VGUI_ToggleButton.h │ ├── VGUI_TreeFolder.h │ └── VGUI_WizardPanel.h └── lib │ └── win32_vc6 │ └── vgui.lib ├── visx2 ├── flow.c ├── soundpvs.c ├── vis.c ├── vis.dsp ├── vis.dsw └── vis.h └── xwad └── xwad.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/.gitmodules -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/README.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/appveyor.yml -------------------------------------------------------------------------------- /bugfixedapi/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_sources( 2 | CMakeLists.txt 3 | IBugfixedServer.h 4 | ) 5 | -------------------------------------------------------------------------------- /bugfixedapi/IBugfixedServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/bugfixedapi/IBugfixedServer.h -------------------------------------------------------------------------------- /bugfixedapi_amxx/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/bugfixedapi_amxx/CMakeLists.txt -------------------------------------------------------------------------------- /bugfixedapi_amxx/IGameConfigs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/bugfixedapi_amxx/IGameConfigs.h -------------------------------------------------------------------------------- /bugfixedapi_amxx/ITextParsers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/bugfixedapi_amxx/ITextParsers.h -------------------------------------------------------------------------------- /bugfixedapi_amxx/amxxmodule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/bugfixedapi_amxx/amxxmodule.cpp -------------------------------------------------------------------------------- /bugfixedapi_amxx/amxxmodule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/bugfixedapi_amxx/amxxmodule.h -------------------------------------------------------------------------------- /bugfixedapi_amxx/bhl_api.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/bugfixedapi_amxx/bhl_api.cpp -------------------------------------------------------------------------------- /bugfixedapi_amxx/bhl_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/bugfixedapi_amxx/bhl_api.h -------------------------------------------------------------------------------- /bugfixedapi_amxx/bugfixedapi_amxx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/bugfixedapi_amxx/bugfixedapi_amxx.cpp -------------------------------------------------------------------------------- /bugfixedapi_amxx/moduleconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/bugfixedapi_amxx/moduleconfig.h -------------------------------------------------------------------------------- /cl_dll/CHud.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/CHud.cpp -------------------------------------------------------------------------------- /cl_dll/CHudAmmo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/CHudAmmo.cpp -------------------------------------------------------------------------------- /cl_dll/CHudAmmo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/CHudAmmo.h -------------------------------------------------------------------------------- /cl_dll/CHudAmmoSecondary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/CHudAmmoSecondary.cpp -------------------------------------------------------------------------------- /cl_dll/CHudAmmoSecondary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/CHudAmmoSecondary.h -------------------------------------------------------------------------------- /cl_dll/CHudBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/CHudBase.cpp -------------------------------------------------------------------------------- /cl_dll/CHudBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/CHudBase.h -------------------------------------------------------------------------------- /cl_dll/CHudBattery.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/CHudBattery.cpp -------------------------------------------------------------------------------- /cl_dll/CHudBattery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/CHudBattery.h -------------------------------------------------------------------------------- /cl_dll/CHudCrosshair.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/CHudCrosshair.cpp -------------------------------------------------------------------------------- /cl_dll/CHudCrosshair.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/CHudCrosshair.h -------------------------------------------------------------------------------- /cl_dll/CHudDeathNotice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/CHudDeathNotice.cpp -------------------------------------------------------------------------------- /cl_dll/CHudDeathNotice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/CHudDeathNotice.h -------------------------------------------------------------------------------- /cl_dll/CHudFlashlight.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/CHudFlashlight.cpp -------------------------------------------------------------------------------- /cl_dll/CHudFlashlight.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/CHudFlashlight.h -------------------------------------------------------------------------------- /cl_dll/CHudGeiger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/CHudGeiger.cpp -------------------------------------------------------------------------------- /cl_dll/CHudGeiger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/CHudGeiger.h -------------------------------------------------------------------------------- /cl_dll/CHudHealth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/CHudHealth.cpp -------------------------------------------------------------------------------- /cl_dll/CHudHealth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/CHudHealth.h -------------------------------------------------------------------------------- /cl_dll/CHudMenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/CHudMenu.cpp -------------------------------------------------------------------------------- /cl_dll/CHudMenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/CHudMenu.h -------------------------------------------------------------------------------- /cl_dll/CHudMessage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/CHudMessage.cpp -------------------------------------------------------------------------------- /cl_dll/CHudMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/CHudMessage.h -------------------------------------------------------------------------------- /cl_dll/CHudSayText.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/CHudSayText.cpp -------------------------------------------------------------------------------- /cl_dll/CHudSayText.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/CHudSayText.h -------------------------------------------------------------------------------- /cl_dll/CHudScores.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/CHudScores.cpp -------------------------------------------------------------------------------- /cl_dll/CHudScores.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/CHudScores.h -------------------------------------------------------------------------------- /cl_dll/CHudSpectator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/CHudSpectator.cpp -------------------------------------------------------------------------------- /cl_dll/CHudSpectator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/CHudSpectator.h -------------------------------------------------------------------------------- /cl_dll/CHudSpeedometer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/CHudSpeedometer.cpp -------------------------------------------------------------------------------- /cl_dll/CHudSpeedometer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/CHudSpeedometer.h -------------------------------------------------------------------------------- /cl_dll/CHudStatusBar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/CHudStatusBar.cpp -------------------------------------------------------------------------------- /cl_dll/CHudStatusBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/CHudStatusBar.h -------------------------------------------------------------------------------- /cl_dll/CHudStatusIcons.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/CHudStatusIcons.cpp -------------------------------------------------------------------------------- /cl_dll/CHudStatusIcons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/CHudStatusIcons.h -------------------------------------------------------------------------------- /cl_dll/CHudTextMessage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/CHudTextMessage.cpp -------------------------------------------------------------------------------- /cl_dll/CHudTextMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/CHudTextMessage.h -------------------------------------------------------------------------------- /cl_dll/CHudTimer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/CHudTimer.cpp -------------------------------------------------------------------------------- /cl_dll/CHudTimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/CHudTimer.h -------------------------------------------------------------------------------- /cl_dll/CHudTrain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/CHudTrain.cpp -------------------------------------------------------------------------------- /cl_dll/CHudTrain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/CHudTrain.h -------------------------------------------------------------------------------- /cl_dll/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/CMakeLists.txt -------------------------------------------------------------------------------- /cl_dll/CUpdateNotification.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/CUpdateNotification.cpp -------------------------------------------------------------------------------- /cl_dll/CUpdateNotification.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/CUpdateNotification.h -------------------------------------------------------------------------------- /cl_dll/GameStudioModelRenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/GameStudioModelRenderer.cpp -------------------------------------------------------------------------------- /cl_dll/GameStudioModelRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/GameStudioModelRenderer.h -------------------------------------------------------------------------------- /cl_dll/StudioModelRenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/StudioModelRenderer.cpp -------------------------------------------------------------------------------- /cl_dll/StudioModelRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/StudioModelRenderer.h -------------------------------------------------------------------------------- /cl_dll/aghudcountdown.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/aghudcountdown.cpp -------------------------------------------------------------------------------- /cl_dll/aghudcountdown.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/aghudcountdown.h -------------------------------------------------------------------------------- /cl_dll/aghudctf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/aghudctf.cpp -------------------------------------------------------------------------------- /cl_dll/aghudctf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/aghudctf.h -------------------------------------------------------------------------------- /cl_dll/aghudglobal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/aghudglobal.cpp -------------------------------------------------------------------------------- /cl_dll/aghudglobal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/aghudglobal.h -------------------------------------------------------------------------------- /cl_dll/aghudlocation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/aghudlocation.cpp -------------------------------------------------------------------------------- /cl_dll/aghudlocation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/aghudlocation.h -------------------------------------------------------------------------------- /cl_dll/aghudlongjump.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/aghudlongjump.cpp -------------------------------------------------------------------------------- /cl_dll/aghudlongjump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/aghudlongjump.h -------------------------------------------------------------------------------- /cl_dll/aghudnextmap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/aghudnextmap.cpp -------------------------------------------------------------------------------- /cl_dll/aghudnextmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/aghudnextmap.h -------------------------------------------------------------------------------- /cl_dll/aghudplayerid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/aghudplayerid.cpp -------------------------------------------------------------------------------- /cl_dll/aghudplayerid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/aghudplayerid.h -------------------------------------------------------------------------------- /cl_dll/aghudsettings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/aghudsettings.cpp -------------------------------------------------------------------------------- /cl_dll/aghudsettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/aghudsettings.h -------------------------------------------------------------------------------- /cl_dll/aghudsuddendeath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/aghudsuddendeath.cpp -------------------------------------------------------------------------------- /cl_dll/aghudsuddendeath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/aghudsuddendeath.h -------------------------------------------------------------------------------- /cl_dll/aghudtimeout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/aghudtimeout.cpp -------------------------------------------------------------------------------- /cl_dll/aghudtimeout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/aghudtimeout.h -------------------------------------------------------------------------------- /cl_dll/aghudvote.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/aghudvote.cpp -------------------------------------------------------------------------------- /cl_dll/aghudvote.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/aghudvote.h -------------------------------------------------------------------------------- /cl_dll/aglocation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/aglocation.cpp -------------------------------------------------------------------------------- /cl_dll/aglocation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/aglocation.h -------------------------------------------------------------------------------- /cl_dll/ammo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/ammo.h -------------------------------------------------------------------------------- /cl_dll/ammohistory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/ammohistory.cpp -------------------------------------------------------------------------------- /cl_dll/ammohistory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/ammohistory.h -------------------------------------------------------------------------------- /cl_dll/bhlcfg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/bhlcfg.cpp -------------------------------------------------------------------------------- /cl_dll/bhlcfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/bhlcfg.h -------------------------------------------------------------------------------- /cl_dll/camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/camera.h -------------------------------------------------------------------------------- /cl_dll/cdll_int.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/cdll_int.cpp -------------------------------------------------------------------------------- /cl_dll/cl_dll.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/cl_dll.dsp -------------------------------------------------------------------------------- /cl_dll/cl_dll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/cl_dll.h -------------------------------------------------------------------------------- /cl_dll/cl_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/cl_util.h -------------------------------------------------------------------------------- /cl_dll/client.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/client.rc -------------------------------------------------------------------------------- /cl_dll/clientsteamcontext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/clientsteamcontext.cpp -------------------------------------------------------------------------------- /cl_dll/clientsteamcontext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/clientsteamcontext.h -------------------------------------------------------------------------------- /cl_dll/com_weapons.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/com_weapons.cpp -------------------------------------------------------------------------------- /cl_dll/com_weapons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/com_weapons.h -------------------------------------------------------------------------------- /cl_dll/demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/demo.cpp -------------------------------------------------------------------------------- /cl_dll/demo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/demo.h -------------------------------------------------------------------------------- /cl_dll/dinput/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_sources( 2 | CMakeLists.txt 3 | dinput.h 4 | ) 5 | 6 | -------------------------------------------------------------------------------- /cl_dll/dinput/dinput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/dinput/dinput.h -------------------------------------------------------------------------------- /cl_dll/dinput/dinput8.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/dinput/dinput8.lib -------------------------------------------------------------------------------- /cl_dll/dinput/dxguid.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/dinput/dxguid.lib -------------------------------------------------------------------------------- /cl_dll/dllexport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/dllexport.h -------------------------------------------------------------------------------- /cl_dll/entity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/entity.cpp -------------------------------------------------------------------------------- /cl_dll/ev_common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/ev_common.cpp -------------------------------------------------------------------------------- /cl_dll/ev_hldm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/ev_hldm.cpp -------------------------------------------------------------------------------- /cl_dll/ev_hldm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/ev_hldm.h -------------------------------------------------------------------------------- /cl_dll/events.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/events.cpp -------------------------------------------------------------------------------- /cl_dll/eventscripts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/eventscripts.h -------------------------------------------------------------------------------- /cl_dll/hl/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/hl/CMakeLists.txt -------------------------------------------------------------------------------- /cl_dll/hl/hl_baseentity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/hl/hl_baseentity.cpp -------------------------------------------------------------------------------- /cl_dll/hl/hl_events.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/hl/hl_events.cpp -------------------------------------------------------------------------------- /cl_dll/hl/hl_objects.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/hl/hl_objects.cpp -------------------------------------------------------------------------------- /cl_dll/hl/hl_weapons.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/hl/hl_weapons.cpp -------------------------------------------------------------------------------- /cl_dll/hud.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/hud.h -------------------------------------------------------------------------------- /cl_dll/hud_iface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/hud_iface.h -------------------------------------------------------------------------------- /cl_dll/hud_msg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/hud_msg.cpp -------------------------------------------------------------------------------- /cl_dll/hud_redraw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/hud_redraw.cpp -------------------------------------------------------------------------------- /cl_dll/hud_servers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/hud_servers.cpp -------------------------------------------------------------------------------- /cl_dll/hud_servers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/hud_servers.h -------------------------------------------------------------------------------- /cl_dll/hud_servers_priv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/hud_servers_priv.h -------------------------------------------------------------------------------- /cl_dll/hud_update.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/hud_update.cpp -------------------------------------------------------------------------------- /cl_dll/in_camera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/in_camera.cpp -------------------------------------------------------------------------------- /cl_dll/in_camera_sdl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/in_camera_sdl.cpp -------------------------------------------------------------------------------- /cl_dll/in_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/in_defs.h -------------------------------------------------------------------------------- /cl_dll/input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/input.cpp -------------------------------------------------------------------------------- /cl_dll/inputw32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/inputw32.cpp -------------------------------------------------------------------------------- /cl_dll/inputw32_sdl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/inputw32_sdl.cpp -------------------------------------------------------------------------------- /cl_dll/jpeg/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/jpeg/CMakeLists.txt -------------------------------------------------------------------------------- /cl_dll/jpeg/jpge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/jpeg/jpge.cpp -------------------------------------------------------------------------------- /cl_dll/jpeg/jpge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/jpeg/jpge.h -------------------------------------------------------------------------------- /cl_dll/kbutton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/kbutton.h -------------------------------------------------------------------------------- /cl_dll/lodepng/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/lodepng/CMakeLists.txt -------------------------------------------------------------------------------- /cl_dll/lodepng/lodepng.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/lodepng/lodepng.cpp -------------------------------------------------------------------------------- /cl_dll/lodepng/lodepng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/lodepng/lodepng.h -------------------------------------------------------------------------------- /cl_dll/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/memory.h -------------------------------------------------------------------------------- /cl_dll/memory_common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/memory_common.cpp -------------------------------------------------------------------------------- /cl_dll/memory_linux.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/memory_linux.cpp -------------------------------------------------------------------------------- /cl_dll/memory_stub.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/memory_stub.cpp -------------------------------------------------------------------------------- /cl_dll/memory_win32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/memory_win32.cpp -------------------------------------------------------------------------------- /cl_dll/net.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/net.cpp -------------------------------------------------------------------------------- /cl_dll/net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/net.h -------------------------------------------------------------------------------- /cl_dll/overview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/overview.cpp -------------------------------------------------------------------------------- /cl_dll/overview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/overview.h -------------------------------------------------------------------------------- /cl_dll/parsemsg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/parsemsg.cpp -------------------------------------------------------------------------------- /cl_dll/parsemsg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/parsemsg.h -------------------------------------------------------------------------------- /cl_dll/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/readme.txt -------------------------------------------------------------------------------- /cl_dll/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/resource.h -------------------------------------------------------------------------------- /cl_dll/results.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/results.cpp -------------------------------------------------------------------------------- /cl_dll/results.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/results.h -------------------------------------------------------------------------------- /cl_dll/soundsystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/soundsystem.cpp -------------------------------------------------------------------------------- /cl_dll/studio_util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/studio_util.cpp -------------------------------------------------------------------------------- /cl_dll/studio_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/studio_util.h -------------------------------------------------------------------------------- /cl_dll/svc_messages.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/svc_messages.cpp -------------------------------------------------------------------------------- /cl_dll/svc_messages.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/svc_messages.h -------------------------------------------------------------------------------- /cl_dll/tf_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/tf_defs.h -------------------------------------------------------------------------------- /cl_dll/tri.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/tri.cpp -------------------------------------------------------------------------------- /cl_dll/util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/util.cpp -------------------------------------------------------------------------------- /cl_dll/util_vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/util_vector.h -------------------------------------------------------------------------------- /cl_dll/vgui2/CAvatarImage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/vgui2/CAvatarImage.cpp -------------------------------------------------------------------------------- /cl_dll/vgui2/CAvatarImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/vgui2/CAvatarImage.h -------------------------------------------------------------------------------- /cl_dll/vgui2/CBackGroundPanel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/vgui2/CBackGroundPanel.cpp -------------------------------------------------------------------------------- /cl_dll/vgui2/CBackGroundPanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/vgui2/CBackGroundPanel.h -------------------------------------------------------------------------------- /cl_dll/vgui2/CBaseHudChat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/vgui2/CBaseHudChat.cpp -------------------------------------------------------------------------------- /cl_dll/vgui2/CBaseHudChat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/vgui2/CBaseHudChat.h -------------------------------------------------------------------------------- /cl_dll/vgui2/CBaseViewport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/vgui2/CBaseViewport.cpp -------------------------------------------------------------------------------- /cl_dll/vgui2/CBaseViewport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/vgui2/CBaseViewport.h -------------------------------------------------------------------------------- /cl_dll/vgui2/CClientMOTD.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/vgui2/CClientMOTD.cpp -------------------------------------------------------------------------------- /cl_dll/vgui2/CClientMOTD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/vgui2/CClientMOTD.h -------------------------------------------------------------------------------- /cl_dll/vgui2/CClientVGUI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/vgui2/CClientVGUI.cpp -------------------------------------------------------------------------------- /cl_dll/vgui2/CClientVGUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/vgui2/CClientVGUI.h -------------------------------------------------------------------------------- /cl_dll/vgui2/CHudChat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/vgui2/CHudChat.cpp -------------------------------------------------------------------------------- /cl_dll/vgui2/CHudChat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/vgui2/CHudChat.h -------------------------------------------------------------------------------- /cl_dll/vgui2/CHudScoreBoard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/vgui2/CHudScoreBoard.cpp -------------------------------------------------------------------------------- /cl_dll/vgui2/CHudScoreBoard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/vgui2/CHudScoreBoard.h -------------------------------------------------------------------------------- /cl_dll/vgui2/CHudTextVgui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/vgui2/CHudTextVgui.cpp -------------------------------------------------------------------------------- /cl_dll/vgui2/CHudTextVgui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/vgui2/CHudTextVgui.h -------------------------------------------------------------------------------- /cl_dll/vgui2/CHudViewport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/vgui2/CHudViewport.cpp -------------------------------------------------------------------------------- /cl_dll/vgui2/CHudViewport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/vgui2/CHudViewport.h -------------------------------------------------------------------------------- /cl_dll/vgui2/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/vgui2/CMakeLists.txt -------------------------------------------------------------------------------- /cl_dll/vgui2/CPlayerListPanel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/vgui2/CPlayerListPanel.cpp -------------------------------------------------------------------------------- /cl_dll/vgui2/CPlayerListPanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/vgui2/CPlayerListPanel.h -------------------------------------------------------------------------------- /cl_dll/vgui2/CPngImage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/vgui2/CPngImage.cpp -------------------------------------------------------------------------------- /cl_dll/vgui2/CPngImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/vgui2/CPngImage.h -------------------------------------------------------------------------------- /cl_dll/vgui2/CScorePanel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/vgui2/CScorePanel.cpp -------------------------------------------------------------------------------- /cl_dll/vgui2/CScorePanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/vgui2/CScorePanel.h -------------------------------------------------------------------------------- /cl_dll/vgui2/CVoiceStatus2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/vgui2/CVoiceStatus2.cpp -------------------------------------------------------------------------------- /cl_dll/vgui2/CVoiceStatus2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/vgui2/CVoiceStatus2.h -------------------------------------------------------------------------------- /cl_dll/vgui2/IEngineVgui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/vgui2/IEngineVgui.h -------------------------------------------------------------------------------- /cl_dll/vgui2/IViewport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/vgui2/IViewport.h -------------------------------------------------------------------------------- /cl_dll/vgui2/IViewportPanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/vgui2/IViewportPanel.h -------------------------------------------------------------------------------- /cl_dll/vgui2/KeyValuesCompat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/vgui2/KeyValuesCompat.cpp -------------------------------------------------------------------------------- /cl_dll/vgui2/KeyValuesCompat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/vgui2/KeyValuesCompat.h -------------------------------------------------------------------------------- /cl_dll/vgui2/VGUI2Paths.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/vgui2/VGUI2Paths.h -------------------------------------------------------------------------------- /cl_dll/vgui2/ViewportPanelNames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/vgui2/ViewportPanelNames.h -------------------------------------------------------------------------------- /cl_dll/vgui2/gameui/CChangeLogDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/vgui2/gameui/CChangeLogDialog.h -------------------------------------------------------------------------------- /cl_dll/vgui2/gameui/CGameUITestPanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/vgui2/gameui/CGameUITestPanel.h -------------------------------------------------------------------------------- /cl_dll/vgui2/gameui/CGameUIViewport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/vgui2/gameui/CGameUIViewport.h -------------------------------------------------------------------------------- /cl_dll/vgui2/gameui/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/vgui2/gameui/CMakeLists.txt -------------------------------------------------------------------------------- /cl_dll/vgui2/gameui/GameUIPanelNames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/vgui2/gameui/GameUIPanelNames.h -------------------------------------------------------------------------------- /cl_dll/vgui2/gameui/IGameUIPanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/vgui2/gameui/IGameUIPanel.h -------------------------------------------------------------------------------- /cl_dll/vgui_ClassMenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/vgui_ClassMenu.cpp -------------------------------------------------------------------------------- /cl_dll/vgui_ConsolePanel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/vgui_ConsolePanel.cpp -------------------------------------------------------------------------------- /cl_dll/vgui_ConsolePanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/vgui_ConsolePanel.h -------------------------------------------------------------------------------- /cl_dll/vgui_ControlConfigPanel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/vgui_ControlConfigPanel.cpp -------------------------------------------------------------------------------- /cl_dll/vgui_ControlConfigPanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/vgui_ControlConfigPanel.h -------------------------------------------------------------------------------- /cl_dll/vgui_CustomObjects.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/vgui_CustomObjects.cpp -------------------------------------------------------------------------------- /cl_dll/vgui_MOTDWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/vgui_MOTDWindow.cpp -------------------------------------------------------------------------------- /cl_dll/vgui_SchemeManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/vgui_SchemeManager.cpp -------------------------------------------------------------------------------- /cl_dll/vgui_SchemeManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/vgui_SchemeManager.h -------------------------------------------------------------------------------- /cl_dll/vgui_ScorePanel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/vgui_ScorePanel.cpp -------------------------------------------------------------------------------- /cl_dll/vgui_ScorePanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/vgui_ScorePanel.h -------------------------------------------------------------------------------- /cl_dll/vgui_ServerBrowser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/vgui_ServerBrowser.cpp -------------------------------------------------------------------------------- /cl_dll/vgui_ServerBrowser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/vgui_ServerBrowser.h -------------------------------------------------------------------------------- /cl_dll/vgui_SpectatorPanel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/vgui_SpectatorPanel.cpp -------------------------------------------------------------------------------- /cl_dll/vgui_SpectatorPanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/vgui_SpectatorPanel.h -------------------------------------------------------------------------------- /cl_dll/vgui_TeamFortressViewport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/vgui_TeamFortressViewport.cpp -------------------------------------------------------------------------------- /cl_dll/vgui_TeamFortressViewport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/vgui_TeamFortressViewport.h -------------------------------------------------------------------------------- /cl_dll/vgui_int.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/vgui_int.cpp -------------------------------------------------------------------------------- /cl_dll/vgui_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/vgui_int.h -------------------------------------------------------------------------------- /cl_dll/vgui_teammenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/vgui_teammenu.cpp -------------------------------------------------------------------------------- /cl_dll/view.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/view.cpp -------------------------------------------------------------------------------- /cl_dll/view.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/view.h -------------------------------------------------------------------------------- /cl_dll/wrect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cl_dll/wrect.h -------------------------------------------------------------------------------- /cmake/FindDInput.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cmake/FindDInput.cmake -------------------------------------------------------------------------------- /cmake/FindDXGUID.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cmake/FindDXGUID.cmake -------------------------------------------------------------------------------- /cmake/FindSDL2.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cmake/FindSDL2.cmake -------------------------------------------------------------------------------- /cmake/FindSteamAPI.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cmake/FindSteamAPI.cmake -------------------------------------------------------------------------------- /cmake/Findtier0.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cmake/Findtier0.cmake -------------------------------------------------------------------------------- /cmake/Findvgui.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cmake/Findvgui.cmake -------------------------------------------------------------------------------- /cmake/Findvstdlib.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cmake/Findvstdlib.cmake -------------------------------------------------------------------------------- /cmake/GetGitRevisionDescription.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cmake/GetGitRevisionDescription.cmake -------------------------------------------------------------------------------- /cmake/InputFilesList.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cmake/InputFilesList.cmake -------------------------------------------------------------------------------- /cmake/Linux32Toolchain.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cmake/Linux32Toolchain.cmake -------------------------------------------------------------------------------- /cmake/MSVCRuntime.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cmake/MSVCRuntime.cmake -------------------------------------------------------------------------------- /cmake/Ternary.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cmake/Ternary.cmake -------------------------------------------------------------------------------- /cmake/WinXPSupport.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/cmake/WinXPSupport.cmake -------------------------------------------------------------------------------- /common/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/common/CMakeLists.txt -------------------------------------------------------------------------------- /common/MinMax.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/common/MinMax.h -------------------------------------------------------------------------------- /common/Sequence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/common/Sequence.h -------------------------------------------------------------------------------- /common/appversion.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/common/appversion.h.in -------------------------------------------------------------------------------- /common/beamdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/common/beamdef.h -------------------------------------------------------------------------------- /common/cl_entity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/common/cl_entity.h -------------------------------------------------------------------------------- /common/com_model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/common/com_model.h -------------------------------------------------------------------------------- /common/con_nprint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/common/con_nprint.h -------------------------------------------------------------------------------- /common/const.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/common/const.h -------------------------------------------------------------------------------- /common/crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/common/crc.h -------------------------------------------------------------------------------- /common/cvardef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/common/cvardef.h -------------------------------------------------------------------------------- /common/demo_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/common/demo_api.h -------------------------------------------------------------------------------- /common/director_cmds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/common/director_cmds.h -------------------------------------------------------------------------------- /common/dlight.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/common/dlight.h -------------------------------------------------------------------------------- /common/dll_state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/common/dll_state.h -------------------------------------------------------------------------------- /common/entity_state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/common/entity_state.h -------------------------------------------------------------------------------- /common/entity_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/common/entity_types.h -------------------------------------------------------------------------------- /common/enum_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/common/enum_utils.h -------------------------------------------------------------------------------- /common/enums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/common/enums.h -------------------------------------------------------------------------------- /common/event_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/common/event_api.h -------------------------------------------------------------------------------- /common/event_args.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/common/event_args.h -------------------------------------------------------------------------------- /common/event_flags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/common/event_flags.h -------------------------------------------------------------------------------- /common/hltv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/common/hltv.h -------------------------------------------------------------------------------- /common/in_buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/common/in_buttons.h -------------------------------------------------------------------------------- /common/interface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/common/interface.cpp -------------------------------------------------------------------------------- /common/interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/common/interface.h -------------------------------------------------------------------------------- /common/ivoicetweak.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/common/ivoicetweak.h -------------------------------------------------------------------------------- /common/mathlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/common/mathlib.h -------------------------------------------------------------------------------- /common/net_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/common/net_api.h -------------------------------------------------------------------------------- /common/netadr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/common/netadr.h -------------------------------------------------------------------------------- /common/nowin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/common/nowin.h -------------------------------------------------------------------------------- /common/particledef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/common/particledef.h -------------------------------------------------------------------------------- /common/pmtrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/common/pmtrace.h -------------------------------------------------------------------------------- /common/port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/common/port.h -------------------------------------------------------------------------------- /common/qfont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/common/qfont.h -------------------------------------------------------------------------------- /common/r_efx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/common/r_efx.h -------------------------------------------------------------------------------- /common/r_studioint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/common/r_studioint.h -------------------------------------------------------------------------------- /common/ref_params.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/common/ref_params.h -------------------------------------------------------------------------------- /common/screenfade.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/common/screenfade.h -------------------------------------------------------------------------------- /common/studio_event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/common/studio_event.h -------------------------------------------------------------------------------- /common/triangleapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/common/triangleapi.h -------------------------------------------------------------------------------- /common/usercmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/common/usercmd.h -------------------------------------------------------------------------------- /common/weaponinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/common/weaponinfo.h -------------------------------------------------------------------------------- /common/winsani_in.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/common/winsani_in.h -------------------------------------------------------------------------------- /dedicated/Dedicated.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/dedicated/Dedicated.dsp -------------------------------------------------------------------------------- /dedicated/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/dedicated/Makefile -------------------------------------------------------------------------------- /dedicated/NetGame.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/dedicated/NetGame.ico -------------------------------------------------------------------------------- /dedicated/conproc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/dedicated/conproc.cpp -------------------------------------------------------------------------------- /dedicated/conproc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/dedicated/conproc.h -------------------------------------------------------------------------------- /dedicated/dedicated.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/dedicated/dedicated.h -------------------------------------------------------------------------------- /dedicated/dedicated.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/dedicated/dedicated.rc -------------------------------------------------------------------------------- /dedicated/engine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/dedicated/engine.cpp -------------------------------------------------------------------------------- /dedicated/enginecallback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/dedicated/enginecallback.h -------------------------------------------------------------------------------- /dedicated/exports.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/dedicated/exports.h -------------------------------------------------------------------------------- /dedicated/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/dedicated/resource.h -------------------------------------------------------------------------------- /dedicated/sys_ded.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/dedicated/sys_ded.cpp -------------------------------------------------------------------------------- /dedicated/sys_ded.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/dedicated/sys_ded.h -------------------------------------------------------------------------------- /dlls/AI_BaseNPC_Schedule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/dlls/AI_BaseNPC_Schedule.cpp -------------------------------------------------------------------------------- /dlls/CBugfixedServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/dlls/CBugfixedServer.cpp -------------------------------------------------------------------------------- /dlls/CBugfixedServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/dlls/CBugfixedServer.h -------------------------------------------------------------------------------- /dlls/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/dlls/CMakeLists.txt -------------------------------------------------------------------------------- /dlls/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/dlls/Makefile -------------------------------------------------------------------------------- /dlls/Wxdebug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/dlls/Wxdebug.cpp -------------------------------------------------------------------------------- /dlls/activity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/dlls/activity.h -------------------------------------------------------------------------------- /dlls/activitymap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/dlls/activitymap.h -------------------------------------------------------------------------------- /dlls/aflock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/dlls/aflock.cpp -------------------------------------------------------------------------------- /dlls/agrunt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/dlls/agrunt.cpp -------------------------------------------------------------------------------- /dlls/airtank.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/dlls/airtank.cpp -------------------------------------------------------------------------------- /dlls/animating.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/dlls/animating.cpp -------------------------------------------------------------------------------- /dlls/animation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/dlls/animation.cpp -------------------------------------------------------------------------------- /dlls/animation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/dlls/animation.h -------------------------------------------------------------------------------- /dlls/apache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/dlls/apache.cpp -------------------------------------------------------------------------------- /dlls/barnacle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/dlls/barnacle.cpp -------------------------------------------------------------------------------- /dlls/barney.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/dlls/barney.cpp -------------------------------------------------------------------------------- /dlls/basemonster.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/dlls/basemonster.h -------------------------------------------------------------------------------- /dlls/bigmomma.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/dlls/bigmomma.cpp -------------------------------------------------------------------------------- /dlls/bloater.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/dlls/bloater.cpp -------------------------------------------------------------------------------- /dlls/bmodels.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/dlls/bmodels.cpp -------------------------------------------------------------------------------- /dlls/bullsquid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/dlls/bullsquid.cpp -------------------------------------------------------------------------------- /dlls/buttons.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/dlls/buttons.cpp -------------------------------------------------------------------------------- /dlls/cbase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/dlls/cbase.cpp -------------------------------------------------------------------------------- /dlls/cbase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/dlls/cbase.h -------------------------------------------------------------------------------- /dlls/cdll_dll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/dlls/cdll_dll.h -------------------------------------------------------------------------------- /dlls/client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/dlls/client.cpp -------------------------------------------------------------------------------- /dlls/client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/dlls/client.h -------------------------------------------------------------------------------- /dlls/com_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/dlls/com_utils.cpp -------------------------------------------------------------------------------- /dlls/com_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/dlls/com_utils.h -------------------------------------------------------------------------------- /dlls/combat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/dlls/combat.cpp -------------------------------------------------------------------------------- /dlls/controller.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/dlls/controller.cpp -------------------------------------------------------------------------------- /dlls/convar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/dlls/convar.cpp -------------------------------------------------------------------------------- /dlls/convar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/dlls/convar.h -------------------------------------------------------------------------------- /dlls/crossbow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/dlls/crossbow.cpp -------------------------------------------------------------------------------- /dlls/crowbar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/dlls/crowbar.cpp -------------------------------------------------------------------------------- /dlls/decals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/dlls/decals.h -------------------------------------------------------------------------------- /dlls/defaultai.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/dlls/defaultai.cpp -------------------------------------------------------------------------------- /dlls/defaultai.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/dlls/defaultai.h -------------------------------------------------------------------------------- /dlls/doors.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/dlls/doors.cpp -------------------------------------------------------------------------------- /dlls/doors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/dlls/doors.h -------------------------------------------------------------------------------- /dlls/effects.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/dlls/effects.cpp -------------------------------------------------------------------------------- /dlls/effects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/dlls/effects.h -------------------------------------------------------------------------------- /dlls/egon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/dlls/egon.cpp -------------------------------------------------------------------------------- /dlls/enginecallback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/dlls/enginecallback.h -------------------------------------------------------------------------------- /dlls/explode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/dlls/explode.cpp -------------------------------------------------------------------------------- /dlls/explode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/dlls/explode.h -------------------------------------------------------------------------------- /dlls/extdll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/dlls/extdll.h -------------------------------------------------------------------------------- /dlls/flyingmonster.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/dlls/flyingmonster.cpp -------------------------------------------------------------------------------- /dlls/flyingmonster.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/dlls/flyingmonster.h -------------------------------------------------------------------------------- /dlls/func_break.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/dlls/func_break.cpp -------------------------------------------------------------------------------- /dlls/func_break.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/dlls/func_break.h -------------------------------------------------------------------------------- /dlls/func_tank.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/dlls/func_tank.cpp -------------------------------------------------------------------------------- /dlls/game.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/dlls/game.cpp -------------------------------------------------------------------------------- /dlls/game.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/dlls/game.h -------------------------------------------------------------------------------- /dlls/gamerules.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/dlls/gamerules.cpp -------------------------------------------------------------------------------- /dlls/gamerules.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/dlls/gamerules.h -------------------------------------------------------------------------------- /dlls/gargantua.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/dlls/gargantua.cpp -------------------------------------------------------------------------------- /dlls/gauss.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/dlls/gauss.cpp -------------------------------------------------------------------------------- /dlls/genericmonster.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/dlls/genericmonster.cpp -------------------------------------------------------------------------------- /dlls/ggrenade.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/dlls/ggrenade.cpp -------------------------------------------------------------------------------- /dlls/globals.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/dlls/globals.cpp -------------------------------------------------------------------------------- /dlls/glock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/dlls/glock.cpp -------------------------------------------------------------------------------- /dlls/gman.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/dlls/gman.cpp -------------------------------------------------------------------------------- /dlls/h_ai.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/dlls/h_ai.cpp -------------------------------------------------------------------------------- /dlls/h_battery.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/dlls/h_battery.cpp -------------------------------------------------------------------------------- /dlls/h_cine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/dlls/h_cine.cpp -------------------------------------------------------------------------------- /dlls/h_cycler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/dlls/h_cycler.cpp -------------------------------------------------------------------------------- /dlls/h_export.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/dlls/h_export.cpp -------------------------------------------------------------------------------- /dlls/handgrenade.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/dlls/handgrenade.cpp -------------------------------------------------------------------------------- /dlls/hassassin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/dlls/hassassin.cpp -------------------------------------------------------------------------------- /dlls/headcrab.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/dlls/headcrab.cpp -------------------------------------------------------------------------------- /dlls/healthkit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/dlls/healthkit.cpp -------------------------------------------------------------------------------- /dlls/hgrunt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/dlls/hgrunt.cpp -------------------------------------------------------------------------------- /dlls/hl.def: -------------------------------------------------------------------------------- 1 | LIBRARY hl 2 | EXPORTS 3 | GiveFnptrsToDll @1 4 | SECTIONS 5 | .data READ WRITE 6 | -------------------------------------------------------------------------------- /dlls/hl.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/dlls/hl.rc -------------------------------------------------------------------------------- /dlls/hornet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/dlls/hornet.cpp -------------------------------------------------------------------------------- /dlls/hornet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/dlls/hornet.h -------------------------------------------------------------------------------- /dlls/hornetgun.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/dlls/hornetgun.cpp -------------------------------------------------------------------------------- /dlls/houndeye.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/dlls/houndeye.cpp -------------------------------------------------------------------------------- /dlls/ichthyosaur.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/dlls/ichthyosaur.cpp -------------------------------------------------------------------------------- /dlls/islave.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/dlls/islave.cpp -------------------------------------------------------------------------------- /dlls/items.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/dlls/items.cpp -------------------------------------------------------------------------------- /dlls/items.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/dlls/items.h -------------------------------------------------------------------------------- /dlls/leech.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/dlls/leech.cpp -------------------------------------------------------------------------------- /dlls/lights.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/dlls/lights.cpp -------------------------------------------------------------------------------- /dlls/maprules.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/dlls/maprules.cpp -------------------------------------------------------------------------------- /dlls/maprules.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/dlls/maprules.h -------------------------------------------------------------------------------- /dlls/monsterevent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/dlls/monsterevent.h -------------------------------------------------------------------------------- /dlls/monstermaker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/dlls/monstermaker.cpp -------------------------------------------------------------------------------- /dlls/monsters.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/dlls/monsters.cpp -------------------------------------------------------------------------------- /dlls/monsters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/dlls/monsters.h -------------------------------------------------------------------------------- /dlls/monsterstate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/dlls/monsterstate.cpp -------------------------------------------------------------------------------- /dlls/mortar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/dlls/mortar.cpp -------------------------------------------------------------------------------- /dlls/mp5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/dlls/mp5.cpp -------------------------------------------------------------------------------- /dlls/multiplay_gamerules.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/dlls/multiplay_gamerules.cpp -------------------------------------------------------------------------------- /dlls/nihilanth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/dlls/nihilanth.cpp -------------------------------------------------------------------------------- /dlls/nodes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/dlls/nodes.cpp -------------------------------------------------------------------------------- /dlls/nodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/dlls/nodes.h -------------------------------------------------------------------------------- /dlls/observer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/dlls/observer.cpp -------------------------------------------------------------------------------- /dlls/osprey.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/dlls/osprey.cpp -------------------------------------------------------------------------------- /dlls/path.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/dlls/path.cpp -------------------------------------------------------------------------------- /dlls/path.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/dlls/path.h -------------------------------------------------------------------------------- /dlls/pathcorner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/dlls/pathcorner.cpp -------------------------------------------------------------------------------- /dlls/pcre/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/dlls/pcre/CMakeLists.txt -------------------------------------------------------------------------------- /dlls/pcre/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/dlls/pcre/config.h -------------------------------------------------------------------------------- /dlls/pcre/pcre.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/dlls/pcre/pcre.h -------------------------------------------------------------------------------- /dlls/pcre/pcre_chartables.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/dlls/pcre/pcre_chartables.c -------------------------------------------------------------------------------- /dlls/pcre/pcre_compile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/dlls/pcre/pcre_compile.c -------------------------------------------------------------------------------- /dlls/pcre/pcre_exec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/dlls/pcre/pcre_exec.c -------------------------------------------------------------------------------- /dlls/pcre/pcre_globals.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/dlls/pcre/pcre_globals.c -------------------------------------------------------------------------------- /dlls/pcre/pcre_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/dlls/pcre/pcre_internal.h -------------------------------------------------------------------------------- /dlls/pcre/pcre_newline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/dlls/pcre/pcre_newline.c -------------------------------------------------------------------------------- /dlls/pcre/pcre_tables.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/dlls/pcre/pcre_tables.c -------------------------------------------------------------------------------- /dlls/pcre/pcre_try_flipped.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/dlls/pcre/pcre_try_flipped.c -------------------------------------------------------------------------------- /dlls/pcre/ucp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/dlls/pcre/ucp.h -------------------------------------------------------------------------------- /dlls/plane.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/dlls/plane.cpp -------------------------------------------------------------------------------- /dlls/plane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/dlls/plane.h -------------------------------------------------------------------------------- /dlls/plats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/dlls/plats.cpp -------------------------------------------------------------------------------- /dlls/player.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/dlls/player.cpp -------------------------------------------------------------------------------- /dlls/player.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/dlls/player.h -------------------------------------------------------------------------------- /dlls/playermonster.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/dlls/playermonster.cpp -------------------------------------------------------------------------------- /dlls/python.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/dlls/python.cpp -------------------------------------------------------------------------------- /dlls/rat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/dlls/rat.cpp -------------------------------------------------------------------------------- /dlls/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/dlls/resource.h -------------------------------------------------------------------------------- /dlls/roach.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/dlls/roach.cpp -------------------------------------------------------------------------------- /dlls/rpg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/dlls/rpg.cpp -------------------------------------------------------------------------------- /dlls/satchel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/dlls/satchel.cpp -------------------------------------------------------------------------------- /dlls/saverestore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/dlls/saverestore.h -------------------------------------------------------------------------------- /dlls/schedule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/dlls/schedule.cpp -------------------------------------------------------------------------------- /dlls/schedule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/dlls/schedule.h -------------------------------------------------------------------------------- /dlls/scientist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/dlls/scientist.cpp -------------------------------------------------------------------------------- /dlls/scripted.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/dlls/scripted.cpp -------------------------------------------------------------------------------- /dlls/scripted.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/dlls/scripted.h -------------------------------------------------------------------------------- /dlls/scriptevent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/dlls/scriptevent.h -------------------------------------------------------------------------------- /dlls/shotgun.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/dlls/shotgun.cpp -------------------------------------------------------------------------------- /dlls/singleplay_gamerules.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/dlls/singleplay_gamerules.cpp -------------------------------------------------------------------------------- /dlls/skill.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/dlls/skill.cpp -------------------------------------------------------------------------------- /dlls/skill.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/dlls/skill.h -------------------------------------------------------------------------------- /dlls/sound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/dlls/sound.cpp -------------------------------------------------------------------------------- /dlls/soundent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/dlls/soundent.cpp -------------------------------------------------------------------------------- /dlls/soundent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/dlls/soundent.h -------------------------------------------------------------------------------- /dlls/spectator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/dlls/spectator.cpp -------------------------------------------------------------------------------- /dlls/spectator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/dlls/spectator.h -------------------------------------------------------------------------------- /dlls/squad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/dlls/squad.h -------------------------------------------------------------------------------- /dlls/squadmonster.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/dlls/squadmonster.cpp -------------------------------------------------------------------------------- /dlls/squadmonster.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/dlls/squadmonster.h -------------------------------------------------------------------------------- /dlls/squeakgrenade.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/dlls/squeakgrenade.cpp -------------------------------------------------------------------------------- /dlls/stats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/dlls/stats.cpp -------------------------------------------------------------------------------- /dlls/subs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/dlls/subs.cpp -------------------------------------------------------------------------------- /dlls/talkmonster.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/dlls/talkmonster.cpp -------------------------------------------------------------------------------- /dlls/talkmonster.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/dlls/talkmonster.h -------------------------------------------------------------------------------- /dlls/teamplay_gamerules.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/dlls/teamplay_gamerules.cpp -------------------------------------------------------------------------------- /dlls/teamplay_gamerules.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/dlls/teamplay_gamerules.h -------------------------------------------------------------------------------- /dlls/tempmonster.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/dlls/tempmonster.cpp -------------------------------------------------------------------------------- /dlls/tentacle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/dlls/tentacle.cpp -------------------------------------------------------------------------------- /dlls/trains.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/dlls/trains.h -------------------------------------------------------------------------------- /dlls/triggers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/dlls/triggers.cpp -------------------------------------------------------------------------------- /dlls/tripmine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/dlls/tripmine.cpp -------------------------------------------------------------------------------- /dlls/turret.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/dlls/turret.cpp -------------------------------------------------------------------------------- /dlls/util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/dlls/util.cpp -------------------------------------------------------------------------------- /dlls/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/dlls/util.h -------------------------------------------------------------------------------- /dlls/vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/dlls/vector.h -------------------------------------------------------------------------------- /dlls/weapons.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/dlls/weapons.cpp -------------------------------------------------------------------------------- /dlls/weapons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/dlls/weapons.h -------------------------------------------------------------------------------- /dlls/world.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/dlls/world.cpp -------------------------------------------------------------------------------- /dlls/wpn_shared/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_sources( 2 | CMakeLists.txt 3 | hl_wpn_glock.cpp 4 | ) 5 | 6 | -------------------------------------------------------------------------------- /dlls/wpn_shared/hl_wpn_glock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/dlls/wpn_shared/hl_wpn_glock.cpp -------------------------------------------------------------------------------- /dlls/wxdebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/dlls/wxdebug.h -------------------------------------------------------------------------------- /dlls/xen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/dlls/xen.cpp -------------------------------------------------------------------------------- /dlls/zombie.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/dlls/zombie.cpp -------------------------------------------------------------------------------- /engine/APIProxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/engine/APIProxy.h -------------------------------------------------------------------------------- /engine/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/engine/CMakeLists.txt -------------------------------------------------------------------------------- /engine/IBaseUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/engine/IBaseUI.h -------------------------------------------------------------------------------- /engine/IClientVGUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/engine/IClientVGUI.h -------------------------------------------------------------------------------- /engine/IGameUIFuncs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/engine/IGameUIFuncs.h -------------------------------------------------------------------------------- /engine/anorms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/engine/anorms.h -------------------------------------------------------------------------------- /engine/cdll_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/engine/cdll_int.h -------------------------------------------------------------------------------- /engine/cmd_function_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/engine/cmd_function_t.h -------------------------------------------------------------------------------- /engine/custom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/engine/custom.h -------------------------------------------------------------------------------- /engine/customentity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/engine/customentity.h -------------------------------------------------------------------------------- /engine/edict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/engine/edict.h -------------------------------------------------------------------------------- /engine/eiface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/engine/eiface.h -------------------------------------------------------------------------------- /engine/keydefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/engine/keydefs.h -------------------------------------------------------------------------------- /engine/progdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/engine/progdefs.h -------------------------------------------------------------------------------- /engine/progs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/engine/progs.h -------------------------------------------------------------------------------- /engine/shake.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/engine/shake.h -------------------------------------------------------------------------------- /engine/studio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/engine/studio.h -------------------------------------------------------------------------------- /external/SDL2/include/SDL2/SDL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/external/SDL2/include/SDL2/SDL.h -------------------------------------------------------------------------------- /external/SDL2/include/SDL2/SDL_audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/external/SDL2/include/SDL2/SDL_audio.h -------------------------------------------------------------------------------- /external/SDL2/include/SDL2/SDL_bits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/external/SDL2/include/SDL2/SDL_bits.h -------------------------------------------------------------------------------- /external/SDL2/include/SDL2/SDL_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/external/SDL2/include/SDL2/SDL_error.h -------------------------------------------------------------------------------- /external/SDL2/include/SDL2/SDL_hints.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/external/SDL2/include/SDL2/SDL_hints.h -------------------------------------------------------------------------------- /external/SDL2/include/SDL2/SDL_input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/external/SDL2/include/SDL2/SDL_input.h -------------------------------------------------------------------------------- /external/SDL2/include/SDL2/SDL_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/external/SDL2/include/SDL2/SDL_log.h -------------------------------------------------------------------------------- /external/SDL2/include/SDL2/SDL_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/external/SDL2/include/SDL2/SDL_main.h -------------------------------------------------------------------------------- /external/SDL2/lib/SDL2.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/external/SDL2/lib/SDL2.lib -------------------------------------------------------------------------------- /external/SDL2/lib/libSDL2-2.0.so.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/external/SDL2/lib/libSDL2-2.0.so.0 -------------------------------------------------------------------------------- /external/SDL2/lib/libSDL2.dylib: -------------------------------------------------------------------------------- 1 | libSDL2-2.0.0.dylib -------------------------------------------------------------------------------- /external/curl/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/external/curl/README.txt -------------------------------------------------------------------------------- /external/curl/include/curl/curl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/external/curl/include/curl/curl.h -------------------------------------------------------------------------------- /external/curl/include/curl/easy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/external/curl/include/curl/easy.h -------------------------------------------------------------------------------- /external/curl/include/curl/multi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/external/curl/include/curl/multi.h -------------------------------------------------------------------------------- /external/curl/include/curl/system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/external/curl/include/curl/system.h -------------------------------------------------------------------------------- /external/curl/include/curl/urlapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/external/curl/include/curl/urlapi.h -------------------------------------------------------------------------------- /external/nlohmann_json/LICENSE.MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/external/nlohmann_json/LICENSE.MIT -------------------------------------------------------------------------------- /external/nlohmann_json/README.txt: -------------------------------------------------------------------------------- 1 | JSON for Modern C++ 2 | https://github.com/nlohmann/json 3 | 4 | Version 3.7.3 5 | -------------------------------------------------------------------------------- /external/semver.c/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/external/semver.c/CMakeLists.txt -------------------------------------------------------------------------------- /external/semver.c/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/external/semver.c/LICENSE -------------------------------------------------------------------------------- /external/semver.c/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/external/semver.c/README.txt -------------------------------------------------------------------------------- /external/semver.c/include/semver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/external/semver.c/include/semver.h -------------------------------------------------------------------------------- /external/semver.c/semver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/external/semver.c/semver.c -------------------------------------------------------------------------------- /game_shared/CGameVersion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/game_shared/CGameVersion.cpp -------------------------------------------------------------------------------- /game_shared/CGameVersion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/game_shared/CGameVersion.h -------------------------------------------------------------------------------- /game_shared/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/game_shared/CMakeLists.txt -------------------------------------------------------------------------------- /game_shared/ClientSupportsFlags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/game_shared/ClientSupportsFlags.h -------------------------------------------------------------------------------- /game_shared/IGameVersion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/game_shared/IGameVersion.h -------------------------------------------------------------------------------- /game_shared/bitvec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/game_shared/bitvec.h -------------------------------------------------------------------------------- /game_shared/client/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/game_shared/client/CMakeLists.txt -------------------------------------------------------------------------------- /game_shared/client/vgui_grid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/game_shared/client/vgui_grid.cpp -------------------------------------------------------------------------------- /game_shared/client/vgui_grid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/game_shared/client/vgui_grid.h -------------------------------------------------------------------------------- /game_shared/client/vgui_helpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/game_shared/client/vgui_helpers.cpp -------------------------------------------------------------------------------- /game_shared/client/vgui_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/game_shared/client/vgui_helpers.h -------------------------------------------------------------------------------- /game_shared/client/vgui_listbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/game_shared/client/vgui_listbox.cpp -------------------------------------------------------------------------------- /game_shared/client/vgui_listbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/game_shared/client/vgui_listbox.h -------------------------------------------------------------------------------- /game_shared/client/vgui_loadtga.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/game_shared/client/vgui_loadtga.cpp -------------------------------------------------------------------------------- /game_shared/client/vgui_loadtga.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/game_shared/client/vgui_loadtga.h -------------------------------------------------------------------------------- /game_shared/client/vgui_slider2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/game_shared/client/vgui_slider2.cpp -------------------------------------------------------------------------------- /game_shared/client/vgui_slider2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/game_shared/client/vgui_slider2.h -------------------------------------------------------------------------------- /game_shared/client/voice_banmgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/game_shared/client/voice_banmgr.cpp -------------------------------------------------------------------------------- /game_shared/client/voice_banmgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/game_shared/client/voice_banmgr.h -------------------------------------------------------------------------------- /game_shared/client/voice_status.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/game_shared/client/voice_status.cpp -------------------------------------------------------------------------------- /game_shared/client/voice_status.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/game_shared/client/voice_status.h -------------------------------------------------------------------------------- /game_shared/server/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/game_shared/server/CMakeLists.txt -------------------------------------------------------------------------------- /game_shared/server/voice_gamemgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/game_shared/server/voice_gamemgr.h -------------------------------------------------------------------------------- /game_shared/updater/CGameUpdater.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/game_shared/updater/CGameUpdater.h -------------------------------------------------------------------------------- /game_shared/updater/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/game_shared/updater/CMakeLists.txt -------------------------------------------------------------------------------- /game_shared/voice_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/game_shared/voice_common.h -------------------------------------------------------------------------------- /gamedir/delta.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/gamedir/delta.lst -------------------------------------------------------------------------------- /gamedir/resource/GameMenu.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/gamedir/resource/GameMenu.res -------------------------------------------------------------------------------- /gamedir/sprites/ag_ctf.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/gamedir/sprites/ag_ctf.spr -------------------------------------------------------------------------------- /gamedir/sprites/ag_ctf_score.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/gamedir/sprites/ag_ctf_score.spr -------------------------------------------------------------------------------- /gamedir/sprites/hud.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/gamedir/sprites/hud.txt -------------------------------------------------------------------------------- /gamedir/ui/gfx/800corner.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/gamedir/ui/gfx/800corner.tga -------------------------------------------------------------------------------- /gamedir/ui/gfx/800corner1.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/gamedir/ui/gfx/800corner1.tga -------------------------------------------------------------------------------- /gamedir/ui/gfx/800corner2.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/gamedir/ui/gfx/800corner2.tga -------------------------------------------------------------------------------- /gamedir/ui/gfx/800corner3.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/gamedir/ui/gfx/800corner3.tga -------------------------------------------------------------------------------- /gamedir/ui/gfx/800corner4.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/gamedir/ui/gfx/800corner4.tga -------------------------------------------------------------------------------- /gamedir/ui/gfx/CircleBg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/gamedir/ui/gfx/CircleBg.png -------------------------------------------------------------------------------- /gamedir/ui/gfx/CircleFg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/gamedir/ui/gfx/CircleFg.png -------------------------------------------------------------------------------- /gamedir/ui/gfx/MutedIcon32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/gamedir/ui/gfx/MutedIcon32.png -------------------------------------------------------------------------------- /gamedir/ui/gfx/cross_bg.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/gamedir/ui/gfx/cross_bg.tga -------------------------------------------------------------------------------- /gamedir/ui/resource/BaseChat.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/gamedir/ui/resource/BaseChat.res -------------------------------------------------------------------------------- /gamedir/ui/resource/ChatFilters.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/gamedir/ui/resource/ChatFilters.res -------------------------------------------------------------------------------- /gamedir/ui/resource/ChatScheme.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/gamedir/ui/resource/ChatScheme.res -------------------------------------------------------------------------------- /gamedir/ui/resource/GameScheme.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/gamedir/ui/resource/GameScheme.res -------------------------------------------------------------------------------- /gamedir/ui/resource/MOTD.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/gamedir/ui/resource/MOTD.res -------------------------------------------------------------------------------- /gamedir/ui/resource/ScorePanel.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/gamedir/ui/resource/ScorePanel.res -------------------------------------------------------------------------------- /gamedir/ui/scripts/HudLayout.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/gamedir/ui/scripts/HudLayout.res -------------------------------------------------------------------------------- /lib/public/game_controls.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/lib/public/game_controls.lib -------------------------------------------------------------------------------- /lib/public/libsteam_api.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/lib/public/libsteam_api.so -------------------------------------------------------------------------------- /lib/public/libtier0.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/lib/public/libtier0.dylib -------------------------------------------------------------------------------- /lib/public/libtier0.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/lib/public/libtier0.so -------------------------------------------------------------------------------- /lib/public/libvstdlib.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/lib/public/libvstdlib.dylib -------------------------------------------------------------------------------- /lib/public/libvstdlib.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/lib/public/libvstdlib.so -------------------------------------------------------------------------------- /lib/public/steam_api.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/lib/public/steam_api.lib -------------------------------------------------------------------------------- /lib/public/tier0.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/lib/public/tier0.def -------------------------------------------------------------------------------- /lib/public/tier0.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/lib/public/tier0.exp -------------------------------------------------------------------------------- /lib/public/tier0.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/lib/public/tier0.lib -------------------------------------------------------------------------------- /lib/public/vgui.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/lib/public/vgui.dylib -------------------------------------------------------------------------------- /lib/public/vgui.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/lib/public/vgui.so -------------------------------------------------------------------------------- /lib/public/vstdlib.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/lib/public/vstdlib.def -------------------------------------------------------------------------------- /lib/public/vstdlib.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/lib/public/vstdlib.exp -------------------------------------------------------------------------------- /lib/public/vstdlib.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/lib/public/vstdlib.lib -------------------------------------------------------------------------------- /pm_shared/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/pm_shared/CMakeLists.txt -------------------------------------------------------------------------------- /pm_shared/pm_debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/pm_shared/pm_debug.c -------------------------------------------------------------------------------- /pm_shared/pm_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/pm_shared/pm_debug.h -------------------------------------------------------------------------------- /pm_shared/pm_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/pm_shared/pm_defs.h -------------------------------------------------------------------------------- /pm_shared/pm_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/pm_shared/pm_info.h -------------------------------------------------------------------------------- /pm_shared/pm_materials.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/pm_shared/pm_materials.h -------------------------------------------------------------------------------- /pm_shared/pm_math.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/pm_shared/pm_math.c -------------------------------------------------------------------------------- /pm_shared/pm_movevars.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/pm_shared/pm_movevars.h -------------------------------------------------------------------------------- /pm_shared/pm_shared.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/pm_shared/pm_shared.c -------------------------------------------------------------------------------- /pm_shared/pm_shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/pm_shared/pm_shared.h -------------------------------------------------------------------------------- /public/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/public/CMakeLists.txt -------------------------------------------------------------------------------- /public/FileSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/public/FileSystem.h -------------------------------------------------------------------------------- /public/archtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/public/archtypes.h -------------------------------------------------------------------------------- /public/cl_dll/IGameClientExports.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/public/cl_dll/IGameClientExports.h -------------------------------------------------------------------------------- /public/keydefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/public/keydefs.h -------------------------------------------------------------------------------- /public/math/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/public/math/CMakeLists.txt -------------------------------------------------------------------------------- /public/math/Matrix3x4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/public/math/Matrix3x4.h -------------------------------------------------------------------------------- /public/math/interpolation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/public/math/interpolation.cpp -------------------------------------------------------------------------------- /public/math/interpolation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/public/math/interpolation.h -------------------------------------------------------------------------------- /public/math/mathlib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/public/math/mathlib.cpp -------------------------------------------------------------------------------- /public/math/mathlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/public/math/mathlib.h -------------------------------------------------------------------------------- /public/math/vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/public/math/vector.h -------------------------------------------------------------------------------- /public/particleman.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/public/particleman.h -------------------------------------------------------------------------------- /public/pman_particlemem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/public/pman_particlemem.h -------------------------------------------------------------------------------- /public/pman_triangleffect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/public/pman_triangleffect.h -------------------------------------------------------------------------------- /public/public_interface.h: -------------------------------------------------------------------------------- 1 | 2 | #include "../common/interface.h" -------------------------------------------------------------------------------- /public/steam/isteamapplist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/public/steam/isteamapplist.h -------------------------------------------------------------------------------- /public/steam/isteamapps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/public/steam/isteamapps.h -------------------------------------------------------------------------------- /public/steam/isteamclient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/public/steam/isteamclient.h -------------------------------------------------------------------------------- /public/steam/isteamcontroller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/public/steam/isteamcontroller.h -------------------------------------------------------------------------------- /public/steam/isteamfriends.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/public/steam/isteamfriends.h -------------------------------------------------------------------------------- /public/steam/isteamgameserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/public/steam/isteamgameserver.h -------------------------------------------------------------------------------- /public/steam/isteamhtmlsurface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/public/steam/isteamhtmlsurface.h -------------------------------------------------------------------------------- /public/steam/isteamhttp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/public/steam/isteamhttp.h -------------------------------------------------------------------------------- /public/steam/isteammatchmaking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/public/steam/isteammatchmaking.h -------------------------------------------------------------------------------- /public/steam/isteammusic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/public/steam/isteammusic.h -------------------------------------------------------------------------------- /public/steam/isteammusicremote.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/public/steam/isteammusicremote.h -------------------------------------------------------------------------------- /public/steam/isteamnetworking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/public/steam/isteamnetworking.h -------------------------------------------------------------------------------- /public/steam/isteamremotestorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/public/steam/isteamremotestorage.h -------------------------------------------------------------------------------- /public/steam/isteamscreenshots.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/public/steam/isteamscreenshots.h -------------------------------------------------------------------------------- /public/steam/isteamugc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/public/steam/isteamugc.h -------------------------------------------------------------------------------- /public/steam/isteamuser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/public/steam/isteamuser.h -------------------------------------------------------------------------------- /public/steam/isteamuserstats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/public/steam/isteamuserstats.h -------------------------------------------------------------------------------- /public/steam/isteamutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/public/steam/isteamutils.h -------------------------------------------------------------------------------- /public/steam/matchmakingtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/public/steam/matchmakingtypes.h -------------------------------------------------------------------------------- /public/steam/steam_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/public/steam/steam_api.h -------------------------------------------------------------------------------- /public/steam/steam_gameserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/public/steam/steam_gameserver.h -------------------------------------------------------------------------------- /public/steam/steamclientpublic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/public/steam/steamclientpublic.h -------------------------------------------------------------------------------- /public/steam/steamhttpenums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/public/steam/steamhttpenums.h -------------------------------------------------------------------------------- /public/steam/steamtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/public/steam/steamtypes.h -------------------------------------------------------------------------------- /public/steam/steamuniverse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/public/steam/steamuniverse.h -------------------------------------------------------------------------------- /scripts/BuildRelease.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/scripts/BuildRelease.ps1 -------------------------------------------------------------------------------- /scripts/DeployLibs.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/scripts/DeployLibs.bat -------------------------------------------------------------------------------- /scripts/DeployLibs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/scripts/DeployLibs.sh -------------------------------------------------------------------------------- /scripts/FixClientLibPath.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/scripts/FixClientLibPath.sh -------------------------------------------------------------------------------- /scripts/inc_Linux.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/scripts/inc_Linux.ps1 -------------------------------------------------------------------------------- /scripts/inc_Targets.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/scripts/inc_Targets.ps1 -------------------------------------------------------------------------------- /scripts/inc_Windows.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/scripts/inc_Windows.ps1 -------------------------------------------------------------------------------- /source_sdk/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/source_sdk/CMakeLists.txt -------------------------------------------------------------------------------- /source_sdk/common/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/source_sdk/common/CMakeLists.txt -------------------------------------------------------------------------------- /source_sdk/common/randoverride.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/source_sdk/common/randoverride.cpp -------------------------------------------------------------------------------- /source_sdk/common/xbox/xboxstubs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/source_sdk/common/xbox/xboxstubs.h -------------------------------------------------------------------------------- /source_sdk/public/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/source_sdk/public/CMakeLists.txt -------------------------------------------------------------------------------- /source_sdk/public/ICVar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/source_sdk/public/ICVar.h -------------------------------------------------------------------------------- /source_sdk/public/OfflineMode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/source_sdk/public/OfflineMode.h -------------------------------------------------------------------------------- /source_sdk/public/SDK_Color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/source_sdk/public/SDK_Color.h -------------------------------------------------------------------------------- /source_sdk/public/Vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/source_sdk/public/Vector.h -------------------------------------------------------------------------------- /source_sdk/public/Vector2D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/source_sdk/public/Vector2D.h -------------------------------------------------------------------------------- /source_sdk/public/basetypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/source_sdk/public/basetypes.h -------------------------------------------------------------------------------- /source_sdk/public/bitmap/Bitmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/source_sdk/public/bitmap/Bitmap.h -------------------------------------------------------------------------------- /source_sdk/public/bitmap/Float_BM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/source_sdk/public/bitmap/Float_BM.h -------------------------------------------------------------------------------- /source_sdk/public/bitmap/PSD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/source_sdk/public/bitmap/PSD.h -------------------------------------------------------------------------------- /source_sdk/public/commonmacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/source_sdk/public/commonmacros.h -------------------------------------------------------------------------------- /source_sdk/public/coordsize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/source_sdk/public/coordsize.h -------------------------------------------------------------------------------- /source_sdk/public/datamap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/source_sdk/public/datamap.h -------------------------------------------------------------------------------- /source_sdk/public/html/ipainthtml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/source_sdk/public/html/ipainthtml.h -------------------------------------------------------------------------------- /source_sdk/public/mathlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/source_sdk/public/mathlib.h -------------------------------------------------------------------------------- /source_sdk/public/mathlib/halton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/source_sdk/public/mathlib/halton.h -------------------------------------------------------------------------------- /source_sdk/public/mathlib/ssemath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/source_sdk/public/mathlib/ssemath.h -------------------------------------------------------------------------------- /source_sdk/public/tier0/basetypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/source_sdk/public/tier0/basetypes.h -------------------------------------------------------------------------------- /source_sdk/public/tier0/dbg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/source_sdk/public/tier0/dbg.h -------------------------------------------------------------------------------- /source_sdk/public/tier0/dbgflag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/source_sdk/public/tier0/dbgflag.h -------------------------------------------------------------------------------- /source_sdk/public/tier0/fasttimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/source_sdk/public/tier0/fasttimer.h -------------------------------------------------------------------------------- /source_sdk/public/tier0/l2cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/source_sdk/public/tier0/l2cache.h -------------------------------------------------------------------------------- /source_sdk/public/tier0/mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/source_sdk/public/tier0/mem.h -------------------------------------------------------------------------------- /source_sdk/public/tier0/memalloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/source_sdk/public/tier0/memalloc.h -------------------------------------------------------------------------------- /source_sdk/public/tier0/memdbgoff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/source_sdk/public/tier0/memdbgoff.h -------------------------------------------------------------------------------- /source_sdk/public/tier0/memdbgon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/source_sdk/public/tier0/memdbgon.h -------------------------------------------------------------------------------- /source_sdk/public/tier0/minidump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/source_sdk/public/tier0/minidump.h -------------------------------------------------------------------------------- /source_sdk/public/tier0/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/source_sdk/public/tier0/platform.h -------------------------------------------------------------------------------- /source_sdk/public/tier0/pmelib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/source_sdk/public/tier0/pmelib.h -------------------------------------------------------------------------------- /source_sdk/public/tier0/tslist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/source_sdk/public/tier0/tslist.h -------------------------------------------------------------------------------- /source_sdk/public/tier0/validator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/source_sdk/public/tier0/validator.h -------------------------------------------------------------------------------- /source_sdk/public/tier0/valobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/source_sdk/public/tier0/valobject.h -------------------------------------------------------------------------------- /source_sdk/public/tier0/valve_off.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/source_sdk/public/tier0/valve_off.h -------------------------------------------------------------------------------- /source_sdk/public/tier0/valve_on.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/source_sdk/public/tier0/valve_on.h -------------------------------------------------------------------------------- /source_sdk/public/tier0/vcrmode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/source_sdk/public/tier0/vcrmode.h -------------------------------------------------------------------------------- /source_sdk/public/tier0/vprof.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/source_sdk/public/tier0/vprof.h -------------------------------------------------------------------------------- /source_sdk/public/tier1/ConVar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/source_sdk/public/tier1/ConVar.h -------------------------------------------------------------------------------- /source_sdk/public/tier1/Diff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/source_sdk/public/tier1/Diff.h -------------------------------------------------------------------------------- /source_sdk/public/tier1/FmtStr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/source_sdk/public/tier1/FmtStr.h -------------------------------------------------------------------------------- /source_sdk/public/tier1/JobThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/source_sdk/public/tier1/JobThread.h -------------------------------------------------------------------------------- /source_sdk/public/tier1/KeyValues.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/source_sdk/public/tier1/KeyValues.h -------------------------------------------------------------------------------- /source_sdk/public/tier1/MemPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/source_sdk/public/tier1/MemPool.h -------------------------------------------------------------------------------- /source_sdk/public/tier1/MemStack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/source_sdk/public/tier1/MemStack.h -------------------------------------------------------------------------------- /source_sdk/public/tier1/RefCount.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/source_sdk/public/tier1/RefCount.h -------------------------------------------------------------------------------- /source_sdk/public/tier1/SmartPtr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/source_sdk/public/tier1/SmartPtr.h -------------------------------------------------------------------------------- /source_sdk/public/tier1/UtlBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/source_sdk/public/tier1/UtlBuffer.h -------------------------------------------------------------------------------- /source_sdk/public/tier1/UtlDict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/source_sdk/public/tier1/UtlDict.h -------------------------------------------------------------------------------- /source_sdk/public/tier1/UtlFlags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/source_sdk/public/tier1/UtlFlags.h -------------------------------------------------------------------------------- /source_sdk/public/tier1/UtlHash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/source_sdk/public/tier1/UtlHash.h -------------------------------------------------------------------------------- /source_sdk/public/tier1/UtlMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/source_sdk/public/tier1/UtlMap.h -------------------------------------------------------------------------------- /source_sdk/public/tier1/UtlMemory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/source_sdk/public/tier1/UtlMemory.h -------------------------------------------------------------------------------- /source_sdk/public/tier1/UtlNTree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/source_sdk/public/tier1/UtlNTree.h -------------------------------------------------------------------------------- /source_sdk/public/tier1/UtlQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/source_sdk/public/tier1/UtlQueue.h -------------------------------------------------------------------------------- /source_sdk/public/tier1/UtlRBTree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/source_sdk/public/tier1/UtlRBTree.h -------------------------------------------------------------------------------- /source_sdk/public/tier1/UtlStack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/source_sdk/public/tier1/UtlStack.h -------------------------------------------------------------------------------- /source_sdk/public/tier1/UtlString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/source_sdk/public/tier1/UtlString.h -------------------------------------------------------------------------------- /source_sdk/public/tier1/UtlSymbol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/source_sdk/public/tier1/UtlSymbol.h -------------------------------------------------------------------------------- /source_sdk/public/tier1/UtlVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/source_sdk/public/tier1/UtlVector.h -------------------------------------------------------------------------------- /source_sdk/public/tier1/bitbuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/source_sdk/public/tier1/bitbuf.h -------------------------------------------------------------------------------- /source_sdk/public/tier1/byteswap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/source_sdk/public/tier1/byteswap.h -------------------------------------------------------------------------------- /source_sdk/public/tier1/interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/source_sdk/public/tier1/interface.h -------------------------------------------------------------------------------- /source_sdk/public/tier1/netadr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/source_sdk/public/tier1/netadr.h -------------------------------------------------------------------------------- /source_sdk/public/tier1/strtools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/source_sdk/public/tier1/strtools.h -------------------------------------------------------------------------------- /source_sdk/public/tier1/tier1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/source_sdk/public/tier1/tier1.h -------------------------------------------------------------------------------- /source_sdk/public/vgui/Cursor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/source_sdk/public/vgui/Cursor.h -------------------------------------------------------------------------------- /source_sdk/public/vgui/Dar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/source_sdk/public/vgui/Dar.h -------------------------------------------------------------------------------- /source_sdk/public/vgui/IBorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/source_sdk/public/vgui/IBorder.h -------------------------------------------------------------------------------- /source_sdk/public/vgui/IHTML.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/source_sdk/public/vgui/IHTML.h -------------------------------------------------------------------------------- /source_sdk/public/vgui/IImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/source_sdk/public/vgui/IImage.h -------------------------------------------------------------------------------- /source_sdk/public/vgui/IInput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/source_sdk/public/vgui/IInput.h -------------------------------------------------------------------------------- /source_sdk/public/vgui/ILocalize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/source_sdk/public/vgui/ILocalize.h -------------------------------------------------------------------------------- /source_sdk/public/vgui/IPanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/source_sdk/public/vgui/IPanel.h -------------------------------------------------------------------------------- /source_sdk/public/vgui/IScheme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/source_sdk/public/vgui/IScheme.h -------------------------------------------------------------------------------- /source_sdk/public/vgui/ISurface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/source_sdk/public/vgui/ISurface.h -------------------------------------------------------------------------------- /source_sdk/public/vgui/ISystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/source_sdk/public/vgui/ISystem.h -------------------------------------------------------------------------------- /source_sdk/public/vgui/IVGui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/source_sdk/public/vgui/IVGui.h -------------------------------------------------------------------------------- /source_sdk/public/vgui/IVguiV06.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/source_sdk/public/vgui/IVguiV06.h -------------------------------------------------------------------------------- /source_sdk/public/vgui/KeyCode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/source_sdk/public/vgui/KeyCode.h -------------------------------------------------------------------------------- /source_sdk/public/vgui/MouseCode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/source_sdk/public/vgui/MouseCode.h -------------------------------------------------------------------------------- /source_sdk/public/vgui/Point.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/source_sdk/public/vgui/Point.h -------------------------------------------------------------------------------- /source_sdk/public/vgui/VGUI2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/source_sdk/public/vgui/VGUI2.h -------------------------------------------------------------------------------- /source_sdk/public/vstdlib/cvar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/source_sdk/public/vstdlib/cvar.h -------------------------------------------------------------------------------- /source_sdk/public/vstdlib/random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/source_sdk/public/vstdlib/random.h -------------------------------------------------------------------------------- /source_sdk/public/vstdlib/vstdlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/source_sdk/public/vstdlib/vstdlib.h -------------------------------------------------------------------------------- /source_sdk/public/winlite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/source_sdk/public/winlite.h -------------------------------------------------------------------------------- /source_sdk/public/worldsize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/source_sdk/public/worldsize.h -------------------------------------------------------------------------------- /source_sdk/tier1/.gitignore: -------------------------------------------------------------------------------- 1 | Debug 2 | Release 3 | -------------------------------------------------------------------------------- /source_sdk/tier1/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/source_sdk/tier1/CMakeLists.txt -------------------------------------------------------------------------------- /source_sdk/tier1/CharacterSet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/source_sdk/tier1/CharacterSet.cpp -------------------------------------------------------------------------------- /source_sdk/tier1/ConVar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/source_sdk/tier1/ConVar.cpp -------------------------------------------------------------------------------- /source_sdk/tier1/DataManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/source_sdk/tier1/DataManager.cpp -------------------------------------------------------------------------------- /source_sdk/tier1/Diff.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/source_sdk/tier1/Diff.cpp -------------------------------------------------------------------------------- /source_sdk/tier1/JobThread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/source_sdk/tier1/JobThread.cpp -------------------------------------------------------------------------------- /source_sdk/tier1/KeyValues.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/source_sdk/tier1/KeyValues.cpp -------------------------------------------------------------------------------- /source_sdk/tier1/MemPool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/source_sdk/tier1/MemPool.cpp -------------------------------------------------------------------------------- /source_sdk/tier1/MemStack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/source_sdk/tier1/MemStack.cpp -------------------------------------------------------------------------------- /source_sdk/tier1/StringPool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/source_sdk/tier1/StringPool.cpp -------------------------------------------------------------------------------- /source_sdk/tier1/TokenReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/source_sdk/tier1/TokenReader.cpp -------------------------------------------------------------------------------- /source_sdk/tier1/UtlBuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/source_sdk/tier1/UtlBuffer.cpp -------------------------------------------------------------------------------- /source_sdk/tier1/UtlString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/source_sdk/tier1/UtlString.cpp -------------------------------------------------------------------------------- /source_sdk/tier1/UtlSymbol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/source_sdk/tier1/UtlSymbol.cpp -------------------------------------------------------------------------------- /source_sdk/tier1/bitbuf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/source_sdk/tier1/bitbuf.cpp -------------------------------------------------------------------------------- /source_sdk/tier1/byteswap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/source_sdk/tier1/byteswap.cpp -------------------------------------------------------------------------------- /source_sdk/tier1/checksum_crc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/source_sdk/tier1/checksum_crc.cpp -------------------------------------------------------------------------------- /source_sdk/tier1/checksum_md5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/source_sdk/tier1/checksum_md5.cpp -------------------------------------------------------------------------------- /source_sdk/tier1/generichash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/source_sdk/tier1/generichash.cpp -------------------------------------------------------------------------------- /source_sdk/tier1/interface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/source_sdk/tier1/interface.cpp -------------------------------------------------------------------------------- /source_sdk/tier1/netadr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/source_sdk/tier1/netadr.cpp -------------------------------------------------------------------------------- /source_sdk/tier1/strtools.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/source_sdk/tier1/strtools.cpp -------------------------------------------------------------------------------- /source_sdk/tier1/tier1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/source_sdk/tier1/tier1.cpp -------------------------------------------------------------------------------- /source_sdk/tier1/tier1.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/source_sdk/tier1/tier1.vcxproj -------------------------------------------------------------------------------- /source_sdk/tier1/tier1.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/source_sdk/tier1/tier1.vcxproj.user -------------------------------------------------------------------------------- /source_sdk/tier1/xboxstubs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/source_sdk/tier1/xboxstubs.cpp -------------------------------------------------------------------------------- /source_sdk/vgui2/controls/.gitignore: -------------------------------------------------------------------------------- 1 | Debug 2 | Release 3 | -------------------------------------------------------------------------------- /source_sdk/vgui2/controls/Frame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/source_sdk/vgui2/controls/Frame.cpp -------------------------------------------------------------------------------- /source_sdk/vgui2/controls/HTML.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/source_sdk/vgui2/controls/HTML.cpp -------------------------------------------------------------------------------- /source_sdk/vgui2/controls/Image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/source_sdk/vgui2/controls/Image.cpp -------------------------------------------------------------------------------- /source_sdk/vgui2/controls/Label.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/source_sdk/vgui2/controls/Label.cpp -------------------------------------------------------------------------------- /source_sdk/vgui2/controls/Menu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/source_sdk/vgui2/controls/Menu.cpp -------------------------------------------------------------------------------- /source_sdk/vgui2/controls/Panel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/source_sdk/vgui2/controls/Panel.cpp -------------------------------------------------------------------------------- /source_sdk/vgui2/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/source_sdk/vgui2/src/CMakeLists.txt -------------------------------------------------------------------------------- /utils/bspinfo/bspinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/utils/bspinfo/bspinfo.c -------------------------------------------------------------------------------- /utils/bspinfo/bspinfo.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/utils/bspinfo/bspinfo.dsp -------------------------------------------------------------------------------- /utils/bspinfo/bspinfo.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/utils/bspinfo/bspinfo.dsw -------------------------------------------------------------------------------- /utils/common/bspfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/utils/common/bspfile.c -------------------------------------------------------------------------------- /utils/common/bspfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/utils/common/bspfile.h -------------------------------------------------------------------------------- /utils/common/cmdlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/utils/common/cmdlib.c -------------------------------------------------------------------------------- /utils/common/cmdlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/utils/common/cmdlib.h -------------------------------------------------------------------------------- /utils/common/lbmlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/utils/common/lbmlib.c -------------------------------------------------------------------------------- /utils/common/lbmlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/utils/common/lbmlib.h -------------------------------------------------------------------------------- /utils/common/mathlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/utils/common/mathlib.c -------------------------------------------------------------------------------- /utils/common/mathlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/utils/common/mathlib.h -------------------------------------------------------------------------------- /utils/common/movie.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/utils/common/movie.h -------------------------------------------------------------------------------- /utils/common/polylib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/utils/common/polylib.c -------------------------------------------------------------------------------- /utils/common/polylib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/utils/common/polylib.h -------------------------------------------------------------------------------- /utils/common/scriplib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/utils/common/scriplib.c -------------------------------------------------------------------------------- /utils/common/scriplib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/utils/common/scriplib.h -------------------------------------------------------------------------------- /utils/common/threads.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/utils/common/threads.c -------------------------------------------------------------------------------- /utils/common/threads.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/utils/common/threads.h -------------------------------------------------------------------------------- /utils/common/trilib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/utils/common/trilib.c -------------------------------------------------------------------------------- /utils/common/trilib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/utils/common/trilib.h -------------------------------------------------------------------------------- /utils/common/wadlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/utils/common/wadlib.c -------------------------------------------------------------------------------- /utils/common/wadlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/utils/common/wadlib.h -------------------------------------------------------------------------------- /utils/light/light.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/utils/light/light.c -------------------------------------------------------------------------------- /utils/light/light.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/utils/light/light.dsp -------------------------------------------------------------------------------- /utils/light/light.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/utils/light/light.h -------------------------------------------------------------------------------- /utils/light/ltface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/utils/light/ltface.c -------------------------------------------------------------------------------- /utils/light/trace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/utils/light/trace.c -------------------------------------------------------------------------------- /utils/makefont/makefont.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/utils/makefont/makefont.cpp -------------------------------------------------------------------------------- /utils/makefont/makefont.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/utils/makefont/makefont.dsp -------------------------------------------------------------------------------- /utils/makefont/makefont.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/utils/makefont/makefont.dsw -------------------------------------------------------------------------------- /utils/makels/makels.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/utils/makels/makels.cpp -------------------------------------------------------------------------------- /utils/makels/makels.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/utils/makels/makels.dsp -------------------------------------------------------------------------------- /utils/makels/makels.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/utils/makels/makels.dsw -------------------------------------------------------------------------------- /utils/makels/makels.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/utils/makels/makels.mak -------------------------------------------------------------------------------- /utils/mdlviewer/mdlviewer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/utils/mdlviewer/mdlviewer.cpp -------------------------------------------------------------------------------- /utils/mdlviewer/mdlviewer.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/utils/mdlviewer/mdlviewer.dsp -------------------------------------------------------------------------------- /utils/mdlviewer/mdlviewer.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/utils/mdlviewer/mdlviewer.dsw -------------------------------------------------------------------------------- /utils/mdlviewer/mdlviewer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/utils/mdlviewer/mdlviewer.h -------------------------------------------------------------------------------- /utils/mdlviewer/studio_render.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/utils/mdlviewer/studio_render.cpp -------------------------------------------------------------------------------- /utils/mdlviewer/studio_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/utils/mdlviewer/studio_utils.cpp -------------------------------------------------------------------------------- /utils/mkmovie/mkmovie.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/utils/mkmovie/mkmovie.c -------------------------------------------------------------------------------- /utils/procinfo/procinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/utils/procinfo/procinfo.h -------------------------------------------------------------------------------- /utils/qbsp2/bsp5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/utils/qbsp2/bsp5.h -------------------------------------------------------------------------------- /utils/qbsp2/cull.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/utils/qbsp2/cull.c -------------------------------------------------------------------------------- /utils/qbsp2/gldraw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/utils/qbsp2/gldraw.c -------------------------------------------------------------------------------- /utils/qbsp2/merge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/utils/qbsp2/merge.c -------------------------------------------------------------------------------- /utils/qbsp2/nodraw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/utils/qbsp2/nodraw.c -------------------------------------------------------------------------------- /utils/qbsp2/outside.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/utils/qbsp2/outside.c -------------------------------------------------------------------------------- /utils/qbsp2/portals.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/utils/qbsp2/portals.c -------------------------------------------------------------------------------- /utils/qbsp2/qbsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/utils/qbsp2/qbsp.c -------------------------------------------------------------------------------- /utils/qbsp2/qbsp2.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/utils/qbsp2/qbsp2.dsp -------------------------------------------------------------------------------- /utils/qbsp2/qbsp2.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/utils/qbsp2/qbsp2.dsw -------------------------------------------------------------------------------- /utils/qbsp2/solidbsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/utils/qbsp2/solidbsp.c -------------------------------------------------------------------------------- /utils/qbsp2/surfaces.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/utils/qbsp2/surfaces.c -------------------------------------------------------------------------------- /utils/qbsp2/tjunc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/utils/qbsp2/tjunc.c -------------------------------------------------------------------------------- /utils/qbsp2/writebsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/utils/qbsp2/writebsp.c -------------------------------------------------------------------------------- /utils/qcsg/brush.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/utils/qcsg/brush.c -------------------------------------------------------------------------------- /utils/qcsg/csg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/utils/qcsg/csg.h -------------------------------------------------------------------------------- /utils/qcsg/gldraw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/utils/qcsg/gldraw.c -------------------------------------------------------------------------------- /utils/qcsg/hullfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/utils/qcsg/hullfile.c -------------------------------------------------------------------------------- /utils/qcsg/hulls.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/utils/qcsg/hulls.txt -------------------------------------------------------------------------------- /utils/qcsg/map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/utils/qcsg/map.c -------------------------------------------------------------------------------- /utils/qcsg/qcsg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/utils/qcsg/qcsg.c -------------------------------------------------------------------------------- /utils/qcsg/qcsg.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/utils/qcsg/qcsg.dsp -------------------------------------------------------------------------------- /utils/qcsg/qcsg.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/utils/qcsg/qcsg.dsw -------------------------------------------------------------------------------- /utils/qcsg/textures.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/utils/qcsg/textures.c -------------------------------------------------------------------------------- /utils/qlumpy/qlumpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/utils/qlumpy/qlumpy.c -------------------------------------------------------------------------------- /utils/qlumpy/qlumpy.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/utils/qlumpy/qlumpy.dsp -------------------------------------------------------------------------------- /utils/qlumpy/qlumpy.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/utils/qlumpy/qlumpy.dsw -------------------------------------------------------------------------------- /utils/qlumpy/qlumpy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/utils/qlumpy/qlumpy.h -------------------------------------------------------------------------------- /utils/qlumpy/quakegrb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/utils/qlumpy/quakegrb.c -------------------------------------------------------------------------------- /utils/qrad/lightmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/utils/qrad/lightmap.c -------------------------------------------------------------------------------- /utils/qrad/qrad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/utils/qrad/qrad.c -------------------------------------------------------------------------------- /utils/qrad/qrad.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/utils/qrad/qrad.dsp -------------------------------------------------------------------------------- /utils/qrad/qrad.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/utils/qrad/qrad.dsw -------------------------------------------------------------------------------- /utils/qrad/qrad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/utils/qrad/qrad.h -------------------------------------------------------------------------------- /utils/qrad/trace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/utils/qrad/trace.c -------------------------------------------------------------------------------- /utils/qrad/vismat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/utils/qrad/vismat.c -------------------------------------------------------------------------------- /utils/serverctrl/ServerCtrl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/utils/serverctrl/ServerCtrl.cpp -------------------------------------------------------------------------------- /utils/serverctrl/ServerCtrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/utils/serverctrl/ServerCtrl.h -------------------------------------------------------------------------------- /utils/serverctrl/ServerCtrl.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/utils/serverctrl/ServerCtrl.rc -------------------------------------------------------------------------------- /utils/serverctrl/ServerCtrlDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/utils/serverctrl/ServerCtrlDlg.cpp -------------------------------------------------------------------------------- /utils/serverctrl/ServerCtrlDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/utils/serverctrl/ServerCtrlDlg.h -------------------------------------------------------------------------------- /utils/serverctrl/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/utils/serverctrl/StdAfx.cpp -------------------------------------------------------------------------------- /utils/serverctrl/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/utils/serverctrl/StdAfx.h -------------------------------------------------------------------------------- /utils/serverctrl/res/serverctrl.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/utils/serverctrl/res/serverctrl.ico -------------------------------------------------------------------------------- /utils/serverctrl/res/serverctrl.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/utils/serverctrl/res/serverctrl.rc2 -------------------------------------------------------------------------------- /utils/serverctrl/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/utils/serverctrl/resource.h -------------------------------------------------------------------------------- /utils/serverctrl/serverctrl.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/utils/serverctrl/serverctrl.dsp -------------------------------------------------------------------------------- /utils/smdlexp/smdlexp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/utils/smdlexp/smdlexp.cpp -------------------------------------------------------------------------------- /utils/smdlexp/smdlexp.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/utils/smdlexp/smdlexp.def -------------------------------------------------------------------------------- /utils/smdlexp/smdlexp.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/utils/smdlexp/smdlexp.dsp -------------------------------------------------------------------------------- /utils/smdlexp/smdlexp.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/utils/smdlexp/smdlexp.dsw -------------------------------------------------------------------------------- /utils/smdlexp/smdlexp.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/utils/smdlexp/smdlexp.rc -------------------------------------------------------------------------------- /utils/smdlexp/smedefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/utils/smdlexp/smedefs.h -------------------------------------------------------------------------------- /utils/smdlexp/smexprc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/utils/smdlexp/smexprc.h -------------------------------------------------------------------------------- /utils/sprgen/sprgen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/utils/sprgen/sprgen.c -------------------------------------------------------------------------------- /utils/sprgen/sprgen.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/utils/sprgen/sprgen.dsp -------------------------------------------------------------------------------- /utils/sprgen/sprgen.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/utils/sprgen/sprgen.dsw -------------------------------------------------------------------------------- /utils/sprgen/spritegn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/utils/sprgen/spritegn.h -------------------------------------------------------------------------------- /utils/studiomdl/bmpread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/utils/studiomdl/bmpread.c -------------------------------------------------------------------------------- /utils/studiomdl/studiomdl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/utils/studiomdl/studiomdl.c -------------------------------------------------------------------------------- /utils/studiomdl/studiomdl.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/utils/studiomdl/studiomdl.dsp -------------------------------------------------------------------------------- /utils/studiomdl/studiomdl.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/utils/studiomdl/studiomdl.dsw -------------------------------------------------------------------------------- /utils/studiomdl/studiomdl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/utils/studiomdl/studiomdl.h -------------------------------------------------------------------------------- /utils/studiomdl/tristrip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/utils/studiomdl/tristrip.c -------------------------------------------------------------------------------- /utils/studiomdl/write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/utils/studiomdl/write.c -------------------------------------------------------------------------------- /utils/vgui/include/VGUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/utils/vgui/include/VGUI.h -------------------------------------------------------------------------------- /utils/vgui/include/VGUI_App.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/utils/vgui/include/VGUI_App.h -------------------------------------------------------------------------------- /utils/vgui/include/VGUI_Bitmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/utils/vgui/include/VGUI_Bitmap.h -------------------------------------------------------------------------------- /utils/vgui/include/VGUI_BitmapTGA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/utils/vgui/include/VGUI_BitmapTGA.h -------------------------------------------------------------------------------- /utils/vgui/include/VGUI_Border.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/utils/vgui/include/VGUI_Border.h -------------------------------------------------------------------------------- /utils/vgui/include/VGUI_Button.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/utils/vgui/include/VGUI_Button.h -------------------------------------------------------------------------------- /utils/vgui/include/VGUI_Color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/utils/vgui/include/VGUI_Color.h -------------------------------------------------------------------------------- /utils/vgui/include/VGUI_ComboKey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/utils/vgui/include/VGUI_ComboKey.h -------------------------------------------------------------------------------- /utils/vgui/include/VGUI_Cursor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/utils/vgui/include/VGUI_Cursor.h -------------------------------------------------------------------------------- /utils/vgui/include/VGUI_Dar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/utils/vgui/include/VGUI_Dar.h -------------------------------------------------------------------------------- /utils/vgui/include/VGUI_Desktop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/utils/vgui/include/VGUI_Desktop.h -------------------------------------------------------------------------------- /utils/vgui/include/VGUI_EditPanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/utils/vgui/include/VGUI_EditPanel.h -------------------------------------------------------------------------------- /utils/vgui/include/VGUI_Font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/utils/vgui/include/VGUI_Font.h -------------------------------------------------------------------------------- /utils/vgui/include/VGUI_Frame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/utils/vgui/include/VGUI_Frame.h -------------------------------------------------------------------------------- /utils/vgui/include/VGUI_Image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/utils/vgui/include/VGUI_Image.h -------------------------------------------------------------------------------- /utils/vgui/include/VGUI_IntLabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/utils/vgui/include/VGUI_IntLabel.h -------------------------------------------------------------------------------- /utils/vgui/include/VGUI_KeyCode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/utils/vgui/include/VGUI_KeyCode.h -------------------------------------------------------------------------------- /utils/vgui/include/VGUI_Label.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/utils/vgui/include/VGUI_Label.h -------------------------------------------------------------------------------- /utils/vgui/include/VGUI_Layout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/utils/vgui/include/VGUI_Layout.h -------------------------------------------------------------------------------- /utils/vgui/include/VGUI_ListPanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/utils/vgui/include/VGUI_ListPanel.h -------------------------------------------------------------------------------- /utils/vgui/include/VGUI_Menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/utils/vgui/include/VGUI_Menu.h -------------------------------------------------------------------------------- /utils/vgui/include/VGUI_MenuItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/utils/vgui/include/VGUI_MenuItem.h -------------------------------------------------------------------------------- /utils/vgui/include/VGUI_MiniApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/utils/vgui/include/VGUI_MiniApp.h -------------------------------------------------------------------------------- /utils/vgui/include/VGUI_MouseCode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/utils/vgui/include/VGUI_MouseCode.h -------------------------------------------------------------------------------- /utils/vgui/include/VGUI_Panel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/utils/vgui/include/VGUI_Panel.h -------------------------------------------------------------------------------- /utils/vgui/include/VGUI_Point.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/utils/vgui/include/VGUI_Point.h -------------------------------------------------------------------------------- /utils/vgui/include/VGUI_PopupMenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/utils/vgui/include/VGUI_PopupMenu.h -------------------------------------------------------------------------------- /utils/vgui/include/VGUI_Scheme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/utils/vgui/include/VGUI_Scheme.h -------------------------------------------------------------------------------- /utils/vgui/include/VGUI_ScrollBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/utils/vgui/include/VGUI_ScrollBar.h -------------------------------------------------------------------------------- /utils/vgui/include/VGUI_Slider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/utils/vgui/include/VGUI_Slider.h -------------------------------------------------------------------------------- /utils/vgui/include/VGUI_String.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/utils/vgui/include/VGUI_String.h -------------------------------------------------------------------------------- /utils/vgui/include/VGUI_Surface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/utils/vgui/include/VGUI_Surface.h -------------------------------------------------------------------------------- /utils/vgui/include/VGUI_SurfaceGL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/utils/vgui/include/VGUI_SurfaceGL.h -------------------------------------------------------------------------------- /utils/vgui/include/VGUI_TabPanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/utils/vgui/include/VGUI_TabPanel.h -------------------------------------------------------------------------------- /utils/vgui/include/VGUI_TaskBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/utils/vgui/include/VGUI_TaskBar.h -------------------------------------------------------------------------------- /utils/vgui/include/VGUI_TextEntry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/utils/vgui/include/VGUI_TextEntry.h -------------------------------------------------------------------------------- /utils/vgui/include/VGUI_TextGrid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/utils/vgui/include/VGUI_TextGrid.h -------------------------------------------------------------------------------- /utils/vgui/include/VGUI_TextImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/utils/vgui/include/VGUI_TextImage.h -------------------------------------------------------------------------------- /utils/vgui/include/VGUI_TextPanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/utils/vgui/include/VGUI_TextPanel.h -------------------------------------------------------------------------------- /utils/vgui/lib/win32_vc6/vgui.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/utils/vgui/lib/win32_vc6/vgui.lib -------------------------------------------------------------------------------- /utils/visx2/flow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/utils/visx2/flow.c -------------------------------------------------------------------------------- /utils/visx2/soundpvs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/utils/visx2/soundpvs.c -------------------------------------------------------------------------------- /utils/visx2/vis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/utils/visx2/vis.c -------------------------------------------------------------------------------- /utils/visx2/vis.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/utils/visx2/vis.dsp -------------------------------------------------------------------------------- /utils/visx2/vis.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/utils/visx2/vis.dsw -------------------------------------------------------------------------------- /utils/visx2/vis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/utils/visx2/vis.h -------------------------------------------------------------------------------- /utils/xwad/xwad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmp64/BugfixedHL/HEAD/utils/xwad/xwad.c --------------------------------------------------------------------------------