├── .gitattributes ├── .gitignore ├── DoomQuake.sln ├── README.md ├── cl_dll ├── StudioModelRenderer.cpp ├── StudioModelRenderer.h ├── camera.h ├── cdll_int.cpp ├── cl_dll.dsp ├── cl_dll.h ├── cl_dll.vcxproj ├── cl_dll.vcxproj.filters ├── cl_dll.vcxproj.user ├── cl_util.h ├── death.cpp ├── entity.cpp ├── hud.cpp ├── hud.h ├── hud_msg.cpp ├── hud_redraw.cpp ├── hud_sbar.cpp ├── hud_update.cpp ├── in_camera.cpp ├── in_defs.h ├── input.cpp ├── inputw32.cpp ├── kbutton.h ├── message.cpp ├── parsemsg.cpp ├── parsemsg.h ├── readme.txt ├── saytext.cpp ├── scoreboard.cpp ├── text_message.cpp ├── util.cpp ├── util_vector.h ├── view.cpp ├── view.h └── wrect.h ├── common ├── alias_shared.cpp ├── alias_shared.h ├── beamdef.h ├── boneinfo.h ├── bspfile.h ├── cl_entity.h ├── com_model.h ├── con_nprint.h ├── const.h ├── cvardef.h ├── demo_api.h ├── dlight.h ├── entity_state.h ├── entity_types.h ├── event_api.h ├── event_args.h ├── event_flags.h ├── features.h ├── gameinfo.h ├── gl │ ├── glew.h │ ├── glext.h │ └── glut.h ├── hltv.h ├── ivoicetweak.h ├── lightstyle.h ├── mathlib.h ├── net_api.h ├── netadr.h ├── nowin.h ├── particledef.h ├── pmtrace.h ├── qfont.h ├── r_efx.h ├── r_studioint.h ├── ref_params.h ├── render_api.h ├── screenfade.h ├── studio_event.h ├── triangleapi.h ├── usercmd.h ├── wadfile.h ├── weaponinfo.h └── wrect.h ├── dlls ├── activity.h ├── activitymap.cpp ├── bmodels.cpp ├── boss.cpp ├── buttons.cpp ├── cbase.cpp ├── cbase.h ├── client.cpp ├── client.h ├── combat.cpp ├── decals.h ├── demon.cpp ├── dll_int.cpp ├── dog.cpp ├── doors.cpp ├── doors.h ├── ehandle.h ├── enforcer.cpp ├── enginecallback.h ├── env_sprite.cpp ├── env_sprite.h ├── extdll.h ├── fish.cpp ├── game.cpp ├── game.h ├── gamerules.cpp ├── gamerules.h ├── globals.cpp ├── hellknight.cpp ├── items.cpp ├── items.h ├── knight.cpp ├── lights.cpp ├── misc.cpp ├── monster.h ├── monsters.cpp ├── ogre.cpp ├── oldone.cpp ├── physcallback.h ├── physics.cpp ├── plats.cpp ├── player.cpp ├── player.h ├── progs.def ├── progs.dsp ├── progs.vcxproj ├── progs.vcxproj.filters ├── progs.vcxproj.user ├── quakedef.h ├── saverestore.cpp ├── saverestore.h ├── shalrath.cpp ├── shambler.cpp ├── singleplay_gamerules.cpp ├── skill.h ├── soldier.cpp ├── sound.cpp ├── subs.cpp ├── tarbaby.cpp ├── triggers.cpp ├── util.cpp ├── util.h ├── vector.h ├── weapons.cpp ├── weapons.h ├── wizard.cpp ├── wolf_dog.cpp ├── wolf_soldier.cpp ├── world.cpp └── zombie.cpp ├── engine ├── alias.h ├── anorms.h ├── cdll_exp.h ├── cdll_int.h ├── client │ ├── cl_cmds.c │ ├── cl_custom.c │ ├── cl_debug.c │ ├── cl_demo.c │ ├── cl_events.c │ ├── cl_frame.c │ ├── cl_game.c │ ├── cl_gameui.c │ ├── cl_main.c │ ├── cl_netgraph.c │ ├── cl_parse.c │ ├── cl_pmove.c │ ├── cl_qparse.c │ ├── cl_remap.c │ ├── cl_scrn.c │ ├── cl_tent.c │ ├── cl_tent.h │ ├── cl_video.c │ ├── cl_view.c │ ├── client.h │ ├── gl_alias.c │ ├── gl_backend.c │ ├── gl_beams.c │ ├── gl_cull.c │ ├── gl_decals.c │ ├── gl_draw.c │ ├── gl_export.h │ ├── gl_frustum.c │ ├── gl_frustum.h │ ├── gl_image.c │ ├── gl_local.h │ ├── gl_mirror.c │ ├── gl_refrag.c │ ├── gl_rlight.c │ ├── gl_rmain.c │ ├── gl_rmath.c │ ├── gl_rmisc.c │ ├── gl_rpart.c │ ├── gl_rsurf.c │ ├── gl_sprite.c │ ├── gl_studio.c │ ├── gl_vidnt.c │ ├── gl_warp.c │ ├── s_backend.c │ ├── s_dsp.c │ ├── s_load.c │ ├── s_main.c │ ├── s_mix.c │ ├── s_mouth.c │ ├── s_stream.c │ ├── s_utils.c │ ├── s_vox.c │ ├── sound.h │ ├── vgui │ │ ├── vgui_clip.cpp │ │ ├── vgui_draw.c │ │ ├── vgui_draw.h │ │ ├── vgui_input.cpp │ │ ├── vgui_int.cpp │ │ ├── vgui_main.h │ │ └── vgui_surf.cpp │ └── vox.h ├── common │ ├── avikit.c │ ├── build.c │ ├── cfgscript.c │ ├── cmd.c │ ├── com_strings.h │ ├── common.c │ ├── common.h │ ├── con_utils.c │ ├── console.c │ ├── crclib.c │ ├── crtlib.c │ ├── crtlib.h │ ├── custom.c │ ├── cvar.c │ ├── cvar.h │ ├── filesystem.c │ ├── filesystem.h │ ├── gamma.c │ ├── host.c │ ├── host_state.c │ ├── hpak.c │ ├── imagelib │ │ ├── imagelib.h │ │ ├── img_bmp.c │ │ ├── img_dds.c │ │ ├── img_main.c │ │ ├── img_quant.c │ │ ├── img_tga.c │ │ ├── img_utils.c │ │ └── img_wad.c │ ├── infostring.c │ ├── input.c │ ├── input.h │ ├── keys.c │ ├── library.c │ ├── library.h │ ├── mathlib.c │ ├── mathlib.h │ ├── matrixlib.c │ ├── mod_bmodel.c │ ├── mod_dbghulls.c │ ├── mod_local.h │ ├── mod_studio.c │ ├── model.c │ ├── net_buffer.c │ ├── net_buffer.h │ ├── net_chan.c │ ├── net_encode.c │ ├── net_encode.h │ ├── net_ws.c │ ├── net_ws.h │ ├── netchan.h │ ├── pm_debug.c │ ├── pm_local.h │ ├── pm_surface.c │ ├── pm_trace.c │ ├── protocol.h │ ├── soundlib │ │ ├── mpeg.lib │ │ ├── mpeg_dbg.lib │ │ ├── snd_main.c │ │ ├── snd_mp3.c │ │ ├── snd_utils.c │ │ ├── snd_wav.c │ │ └── soundlib.h │ ├── sys_con.c │ ├── sys_win.c │ ├── system.h │ ├── titles.c │ ├── world.c │ ├── world.h │ └── zone.c ├── custom.h ├── customentity.h ├── edict.h ├── eiface.h ├── engine.dsp ├── engine.vcxproj ├── engine.vcxproj.filters ├── engine.vcxproj.user ├── gl_smear.c ├── keydefs.h ├── menu_int.h ├── physint.h ├── progdefs.h ├── server │ ├── server.h │ ├── sv_client.c │ ├── sv_cmds.c │ ├── sv_custom.c │ ├── sv_frame.c │ ├── sv_game.c │ ├── sv_init.c │ ├── sv_log.c │ ├── sv_main.c │ ├── sv_move.c │ ├── sv_phys.c │ ├── sv_pmove.c │ ├── sv_save.c │ └── sv_world.c ├── shake.h ├── sprite.h ├── studio.h └── warpsin.h ├── game_launch ├── game - Copy.rc ├── game.aps ├── game.cpp ├── game.dsp ├── game.rc ├── game.vcxproj ├── game.vcxproj.filters ├── game.vcxproj.user └── qoom.ico ├── game_shared ├── bitvec.h ├── 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_common.h ├── voice_gamemgr.cpp ├── voice_gamemgr.h ├── voice_status.cpp ├── voice_status.h ├── voice_vgui_tweakdlg.cpp └── voice_vgui_tweakdlg.h ├── mainui ├── basemenu.cpp ├── basemenu.h ├── enginecallback.h ├── extdll.h ├── mainui.def ├── mainui.dsp ├── mainui.vcxproj ├── mainui.vcxproj.filters ├── mainui.vcxproj.user ├── menu_advcontrols.cpp ├── menu_audio.cpp ├── menu_btns.cpp ├── menu_btnsbmp_table.h ├── menu_configuration.cpp ├── menu_controls.cpp ├── menu_creategame.cpp ├── menu_credits.cpp ├── menu_customgame.cpp ├── menu_gameoptions.cpp ├── menu_internetgames.cpp ├── menu_langame.cpp ├── menu_loadgame.cpp ├── menu_main.cpp ├── menu_multiplayer.cpp ├── menu_newgame.cpp ├── menu_playersetup.cpp ├── menu_savegame - Copy.cpp ├── menu_savegame.cpp ├── menu_saveload.cpp ├── menu_strings.cpp ├── menu_strings.h ├── menu_video.cpp ├── menu_vidmodes.cpp ├── menu_vidoptions.cpp ├── menufont.H ├── udll_int.cpp ├── ui_title_anim.cpp ├── ui_title_anim.h ├── utils.cpp └── utils.h ├── pm_shared ├── pm_debug.c ├── pm_debug.h ├── pm_defs.h ├── pm_info.h ├── pm_math.c ├── pm_movevars.h ├── pm_shared - quake.c ├── pm_shared.c └── pm_shared.h ├── qeffects ├── code │ ├── gl_headers │ │ └── glext.h │ ├── glsl_dither.h │ ├── glsl_n64point.h │ ├── glsl_palette_doom.h │ ├── glsl_palette_quake.h │ ├── qfx_glprogs.hpp │ ├── qfx_hooks.cpp │ ├── qfx_library.cpp │ ├── qfx_library.hpp │ ├── qfx_log.cpp │ ├── qfx_log.hpp │ ├── qfx_opengl.cpp │ ├── qfx_opengl.hpp │ ├── qfx_renderer.cpp │ ├── qfx_renderer.hpp │ ├── qfx_settings.cpp │ ├── qfx_settings.hpp │ ├── qfx_shader.cpp │ └── qfx_shader.hpp └── msvc │ ├── QeffectsGL.rc │ ├── QeffectsGL.vcxproj │ ├── QeffectsGL.vcxproj.filters │ ├── QeffectsGL.vcxproj.user │ └── opengl32.def └── utils └── 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_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 /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/.gitignore -------------------------------------------------------------------------------- /DoomQuake.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/DoomQuake.sln -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/README.md -------------------------------------------------------------------------------- /cl_dll/StudioModelRenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/cl_dll/StudioModelRenderer.cpp -------------------------------------------------------------------------------- /cl_dll/StudioModelRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/cl_dll/StudioModelRenderer.h -------------------------------------------------------------------------------- /cl_dll/camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/cl_dll/camera.h -------------------------------------------------------------------------------- /cl_dll/cdll_int.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/cl_dll/cdll_int.cpp -------------------------------------------------------------------------------- /cl_dll/cl_dll.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/cl_dll/cl_dll.dsp -------------------------------------------------------------------------------- /cl_dll/cl_dll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/cl_dll/cl_dll.h -------------------------------------------------------------------------------- /cl_dll/cl_dll.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/cl_dll/cl_dll.vcxproj -------------------------------------------------------------------------------- /cl_dll/cl_dll.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/cl_dll/cl_dll.vcxproj.filters -------------------------------------------------------------------------------- /cl_dll/cl_dll.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/cl_dll/cl_dll.vcxproj.user -------------------------------------------------------------------------------- /cl_dll/cl_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/cl_dll/cl_util.h -------------------------------------------------------------------------------- /cl_dll/death.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/cl_dll/death.cpp -------------------------------------------------------------------------------- /cl_dll/entity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/cl_dll/entity.cpp -------------------------------------------------------------------------------- /cl_dll/hud.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/cl_dll/hud.cpp -------------------------------------------------------------------------------- /cl_dll/hud.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/cl_dll/hud.h -------------------------------------------------------------------------------- /cl_dll/hud_msg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/cl_dll/hud_msg.cpp -------------------------------------------------------------------------------- /cl_dll/hud_redraw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/cl_dll/hud_redraw.cpp -------------------------------------------------------------------------------- /cl_dll/hud_sbar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/cl_dll/hud_sbar.cpp -------------------------------------------------------------------------------- /cl_dll/hud_update.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/cl_dll/hud_update.cpp -------------------------------------------------------------------------------- /cl_dll/in_camera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/cl_dll/in_camera.cpp -------------------------------------------------------------------------------- /cl_dll/in_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/cl_dll/in_defs.h -------------------------------------------------------------------------------- /cl_dll/input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/cl_dll/input.cpp -------------------------------------------------------------------------------- /cl_dll/inputw32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/cl_dll/inputw32.cpp -------------------------------------------------------------------------------- /cl_dll/kbutton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/cl_dll/kbutton.h -------------------------------------------------------------------------------- /cl_dll/message.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/cl_dll/message.cpp -------------------------------------------------------------------------------- /cl_dll/parsemsg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/cl_dll/parsemsg.cpp -------------------------------------------------------------------------------- /cl_dll/parsemsg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/cl_dll/parsemsg.h -------------------------------------------------------------------------------- /cl_dll/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/cl_dll/readme.txt -------------------------------------------------------------------------------- /cl_dll/saytext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/cl_dll/saytext.cpp -------------------------------------------------------------------------------- /cl_dll/scoreboard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/cl_dll/scoreboard.cpp -------------------------------------------------------------------------------- /cl_dll/text_message.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/cl_dll/text_message.cpp -------------------------------------------------------------------------------- /cl_dll/util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/cl_dll/util.cpp -------------------------------------------------------------------------------- /cl_dll/util_vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/cl_dll/util_vector.h -------------------------------------------------------------------------------- /cl_dll/view.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/cl_dll/view.cpp -------------------------------------------------------------------------------- /cl_dll/view.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/cl_dll/view.h -------------------------------------------------------------------------------- /cl_dll/wrect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/cl_dll/wrect.h -------------------------------------------------------------------------------- /common/alias_shared.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/common/alias_shared.cpp -------------------------------------------------------------------------------- /common/alias_shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/common/alias_shared.h -------------------------------------------------------------------------------- /common/beamdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/common/beamdef.h -------------------------------------------------------------------------------- /common/boneinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/common/boneinfo.h -------------------------------------------------------------------------------- /common/bspfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/common/bspfile.h -------------------------------------------------------------------------------- /common/cl_entity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/common/cl_entity.h -------------------------------------------------------------------------------- /common/com_model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/common/com_model.h -------------------------------------------------------------------------------- /common/con_nprint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/common/con_nprint.h -------------------------------------------------------------------------------- /common/const.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/common/const.h -------------------------------------------------------------------------------- /common/cvardef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/common/cvardef.h -------------------------------------------------------------------------------- /common/demo_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/common/demo_api.h -------------------------------------------------------------------------------- /common/dlight.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/common/dlight.h -------------------------------------------------------------------------------- /common/entity_state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/common/entity_state.h -------------------------------------------------------------------------------- /common/entity_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/common/entity_types.h -------------------------------------------------------------------------------- /common/event_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/common/event_api.h -------------------------------------------------------------------------------- /common/event_args.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/common/event_args.h -------------------------------------------------------------------------------- /common/event_flags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/common/event_flags.h -------------------------------------------------------------------------------- /common/features.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/common/features.h -------------------------------------------------------------------------------- /common/gameinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/common/gameinfo.h -------------------------------------------------------------------------------- /common/gl/glew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/common/gl/glew.h -------------------------------------------------------------------------------- /common/gl/glext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/common/gl/glext.h -------------------------------------------------------------------------------- /common/gl/glut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/common/gl/glut.h -------------------------------------------------------------------------------- /common/hltv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/common/hltv.h -------------------------------------------------------------------------------- /common/ivoicetweak.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/common/ivoicetweak.h -------------------------------------------------------------------------------- /common/lightstyle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/common/lightstyle.h -------------------------------------------------------------------------------- /common/mathlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/common/mathlib.h -------------------------------------------------------------------------------- /common/net_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/common/net_api.h -------------------------------------------------------------------------------- /common/netadr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/common/netadr.h -------------------------------------------------------------------------------- /common/nowin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/common/nowin.h -------------------------------------------------------------------------------- /common/particledef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/common/particledef.h -------------------------------------------------------------------------------- /common/pmtrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/common/pmtrace.h -------------------------------------------------------------------------------- /common/qfont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/common/qfont.h -------------------------------------------------------------------------------- /common/r_efx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/common/r_efx.h -------------------------------------------------------------------------------- /common/r_studioint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/common/r_studioint.h -------------------------------------------------------------------------------- /common/ref_params.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/common/ref_params.h -------------------------------------------------------------------------------- /common/render_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/common/render_api.h -------------------------------------------------------------------------------- /common/screenfade.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/common/screenfade.h -------------------------------------------------------------------------------- /common/studio_event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/common/studio_event.h -------------------------------------------------------------------------------- /common/triangleapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/common/triangleapi.h -------------------------------------------------------------------------------- /common/usercmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/common/usercmd.h -------------------------------------------------------------------------------- /common/wadfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/common/wadfile.h -------------------------------------------------------------------------------- /common/weaponinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/common/weaponinfo.h -------------------------------------------------------------------------------- /common/wrect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/common/wrect.h -------------------------------------------------------------------------------- /dlls/activity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/dlls/activity.h -------------------------------------------------------------------------------- /dlls/activitymap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/dlls/activitymap.cpp -------------------------------------------------------------------------------- /dlls/bmodels.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/dlls/bmodels.cpp -------------------------------------------------------------------------------- /dlls/boss.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/dlls/boss.cpp -------------------------------------------------------------------------------- /dlls/buttons.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/dlls/buttons.cpp -------------------------------------------------------------------------------- /dlls/cbase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/dlls/cbase.cpp -------------------------------------------------------------------------------- /dlls/cbase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/dlls/cbase.h -------------------------------------------------------------------------------- /dlls/client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/dlls/client.cpp -------------------------------------------------------------------------------- /dlls/client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/dlls/client.h -------------------------------------------------------------------------------- /dlls/combat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/dlls/combat.cpp -------------------------------------------------------------------------------- /dlls/decals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/dlls/decals.h -------------------------------------------------------------------------------- /dlls/demon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/dlls/demon.cpp -------------------------------------------------------------------------------- /dlls/dll_int.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/dlls/dll_int.cpp -------------------------------------------------------------------------------- /dlls/dog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/dlls/dog.cpp -------------------------------------------------------------------------------- /dlls/doors.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/dlls/doors.cpp -------------------------------------------------------------------------------- /dlls/doors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/dlls/doors.h -------------------------------------------------------------------------------- /dlls/ehandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/dlls/ehandle.h -------------------------------------------------------------------------------- /dlls/enforcer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/dlls/enforcer.cpp -------------------------------------------------------------------------------- /dlls/enginecallback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/dlls/enginecallback.h -------------------------------------------------------------------------------- /dlls/env_sprite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/dlls/env_sprite.cpp -------------------------------------------------------------------------------- /dlls/env_sprite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/dlls/env_sprite.h -------------------------------------------------------------------------------- /dlls/extdll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/dlls/extdll.h -------------------------------------------------------------------------------- /dlls/fish.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/dlls/fish.cpp -------------------------------------------------------------------------------- /dlls/game.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/dlls/game.cpp -------------------------------------------------------------------------------- /dlls/game.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/dlls/game.h -------------------------------------------------------------------------------- /dlls/gamerules.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/dlls/gamerules.cpp -------------------------------------------------------------------------------- /dlls/gamerules.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/dlls/gamerules.h -------------------------------------------------------------------------------- /dlls/globals.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/dlls/globals.cpp -------------------------------------------------------------------------------- /dlls/hellknight.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/dlls/hellknight.cpp -------------------------------------------------------------------------------- /dlls/items.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/dlls/items.cpp -------------------------------------------------------------------------------- /dlls/items.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/dlls/items.h -------------------------------------------------------------------------------- /dlls/knight.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/dlls/knight.cpp -------------------------------------------------------------------------------- /dlls/lights.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/dlls/lights.cpp -------------------------------------------------------------------------------- /dlls/misc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/dlls/misc.cpp -------------------------------------------------------------------------------- /dlls/monster.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/dlls/monster.h -------------------------------------------------------------------------------- /dlls/monsters.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/dlls/monsters.cpp -------------------------------------------------------------------------------- /dlls/ogre.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/dlls/ogre.cpp -------------------------------------------------------------------------------- /dlls/oldone.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/dlls/oldone.cpp -------------------------------------------------------------------------------- /dlls/physcallback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/dlls/physcallback.h -------------------------------------------------------------------------------- /dlls/physics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/dlls/physics.cpp -------------------------------------------------------------------------------- /dlls/plats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/dlls/plats.cpp -------------------------------------------------------------------------------- /dlls/player.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/dlls/player.cpp -------------------------------------------------------------------------------- /dlls/player.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/dlls/player.h -------------------------------------------------------------------------------- /dlls/progs.def: -------------------------------------------------------------------------------- 1 | LIBRARY progs 2 | EXPORTS 3 | GiveFnptrsToDll @1 4 | SECTIONS 5 | .data READ WRITE 6 | -------------------------------------------------------------------------------- /dlls/progs.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/dlls/progs.dsp -------------------------------------------------------------------------------- /dlls/progs.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/dlls/progs.vcxproj -------------------------------------------------------------------------------- /dlls/progs.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/dlls/progs.vcxproj.filters -------------------------------------------------------------------------------- /dlls/progs.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/dlls/progs.vcxproj.user -------------------------------------------------------------------------------- /dlls/quakedef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/dlls/quakedef.h -------------------------------------------------------------------------------- /dlls/saverestore.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/dlls/saverestore.cpp -------------------------------------------------------------------------------- /dlls/saverestore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/dlls/saverestore.h -------------------------------------------------------------------------------- /dlls/shalrath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/dlls/shalrath.cpp -------------------------------------------------------------------------------- /dlls/shambler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/dlls/shambler.cpp -------------------------------------------------------------------------------- /dlls/singleplay_gamerules.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/dlls/singleplay_gamerules.cpp -------------------------------------------------------------------------------- /dlls/skill.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/dlls/skill.h -------------------------------------------------------------------------------- /dlls/soldier.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/dlls/soldier.cpp -------------------------------------------------------------------------------- /dlls/sound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/dlls/sound.cpp -------------------------------------------------------------------------------- /dlls/subs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/dlls/subs.cpp -------------------------------------------------------------------------------- /dlls/tarbaby.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/dlls/tarbaby.cpp -------------------------------------------------------------------------------- /dlls/triggers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/dlls/triggers.cpp -------------------------------------------------------------------------------- /dlls/util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/dlls/util.cpp -------------------------------------------------------------------------------- /dlls/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/dlls/util.h -------------------------------------------------------------------------------- /dlls/vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/dlls/vector.h -------------------------------------------------------------------------------- /dlls/weapons.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/dlls/weapons.cpp -------------------------------------------------------------------------------- /dlls/weapons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/dlls/weapons.h -------------------------------------------------------------------------------- /dlls/wizard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/dlls/wizard.cpp -------------------------------------------------------------------------------- /dlls/wolf_dog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/dlls/wolf_dog.cpp -------------------------------------------------------------------------------- /dlls/wolf_soldier.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/dlls/wolf_soldier.cpp -------------------------------------------------------------------------------- /dlls/world.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/dlls/world.cpp -------------------------------------------------------------------------------- /dlls/zombie.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/dlls/zombie.cpp -------------------------------------------------------------------------------- /engine/alias.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/engine/alias.h -------------------------------------------------------------------------------- /engine/anorms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/engine/anorms.h -------------------------------------------------------------------------------- /engine/cdll_exp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/engine/cdll_exp.h -------------------------------------------------------------------------------- /engine/cdll_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/engine/cdll_int.h -------------------------------------------------------------------------------- /engine/client/cl_cmds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/engine/client/cl_cmds.c -------------------------------------------------------------------------------- /engine/client/cl_custom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/engine/client/cl_custom.c -------------------------------------------------------------------------------- /engine/client/cl_debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/engine/client/cl_debug.c -------------------------------------------------------------------------------- /engine/client/cl_demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/engine/client/cl_demo.c -------------------------------------------------------------------------------- /engine/client/cl_events.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/engine/client/cl_events.c -------------------------------------------------------------------------------- /engine/client/cl_frame.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/engine/client/cl_frame.c -------------------------------------------------------------------------------- /engine/client/cl_game.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/engine/client/cl_game.c -------------------------------------------------------------------------------- /engine/client/cl_gameui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/engine/client/cl_gameui.c -------------------------------------------------------------------------------- /engine/client/cl_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/engine/client/cl_main.c -------------------------------------------------------------------------------- /engine/client/cl_netgraph.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/engine/client/cl_netgraph.c -------------------------------------------------------------------------------- /engine/client/cl_parse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/engine/client/cl_parse.c -------------------------------------------------------------------------------- /engine/client/cl_pmove.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/engine/client/cl_pmove.c -------------------------------------------------------------------------------- /engine/client/cl_qparse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/engine/client/cl_qparse.c -------------------------------------------------------------------------------- /engine/client/cl_remap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/engine/client/cl_remap.c -------------------------------------------------------------------------------- /engine/client/cl_scrn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/engine/client/cl_scrn.c -------------------------------------------------------------------------------- /engine/client/cl_tent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/engine/client/cl_tent.c -------------------------------------------------------------------------------- /engine/client/cl_tent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/engine/client/cl_tent.h -------------------------------------------------------------------------------- /engine/client/cl_video.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/engine/client/cl_video.c -------------------------------------------------------------------------------- /engine/client/cl_view.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/engine/client/cl_view.c -------------------------------------------------------------------------------- /engine/client/client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/engine/client/client.h -------------------------------------------------------------------------------- /engine/client/gl_alias.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/engine/client/gl_alias.c -------------------------------------------------------------------------------- /engine/client/gl_backend.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/engine/client/gl_backend.c -------------------------------------------------------------------------------- /engine/client/gl_beams.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/engine/client/gl_beams.c -------------------------------------------------------------------------------- /engine/client/gl_cull.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/engine/client/gl_cull.c -------------------------------------------------------------------------------- /engine/client/gl_decals.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/engine/client/gl_decals.c -------------------------------------------------------------------------------- /engine/client/gl_draw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/engine/client/gl_draw.c -------------------------------------------------------------------------------- /engine/client/gl_export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/engine/client/gl_export.h -------------------------------------------------------------------------------- /engine/client/gl_frustum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/engine/client/gl_frustum.c -------------------------------------------------------------------------------- /engine/client/gl_frustum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/engine/client/gl_frustum.h -------------------------------------------------------------------------------- /engine/client/gl_image.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/engine/client/gl_image.c -------------------------------------------------------------------------------- /engine/client/gl_local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/engine/client/gl_local.h -------------------------------------------------------------------------------- /engine/client/gl_mirror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/engine/client/gl_mirror.c -------------------------------------------------------------------------------- /engine/client/gl_refrag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/engine/client/gl_refrag.c -------------------------------------------------------------------------------- /engine/client/gl_rlight.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/engine/client/gl_rlight.c -------------------------------------------------------------------------------- /engine/client/gl_rmain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/engine/client/gl_rmain.c -------------------------------------------------------------------------------- /engine/client/gl_rmath.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/engine/client/gl_rmath.c -------------------------------------------------------------------------------- /engine/client/gl_rmisc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/engine/client/gl_rmisc.c -------------------------------------------------------------------------------- /engine/client/gl_rpart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/engine/client/gl_rpart.c -------------------------------------------------------------------------------- /engine/client/gl_rsurf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/engine/client/gl_rsurf.c -------------------------------------------------------------------------------- /engine/client/gl_sprite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/engine/client/gl_sprite.c -------------------------------------------------------------------------------- /engine/client/gl_studio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/engine/client/gl_studio.c -------------------------------------------------------------------------------- /engine/client/gl_vidnt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/engine/client/gl_vidnt.c -------------------------------------------------------------------------------- /engine/client/gl_warp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/engine/client/gl_warp.c -------------------------------------------------------------------------------- /engine/client/s_backend.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/engine/client/s_backend.c -------------------------------------------------------------------------------- /engine/client/s_dsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/engine/client/s_dsp.c -------------------------------------------------------------------------------- /engine/client/s_load.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/engine/client/s_load.c -------------------------------------------------------------------------------- /engine/client/s_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/engine/client/s_main.c -------------------------------------------------------------------------------- /engine/client/s_mix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/engine/client/s_mix.c -------------------------------------------------------------------------------- /engine/client/s_mouth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/engine/client/s_mouth.c -------------------------------------------------------------------------------- /engine/client/s_stream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/engine/client/s_stream.c -------------------------------------------------------------------------------- /engine/client/s_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/engine/client/s_utils.c -------------------------------------------------------------------------------- /engine/client/s_vox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/engine/client/s_vox.c -------------------------------------------------------------------------------- /engine/client/sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/engine/client/sound.h -------------------------------------------------------------------------------- /engine/client/vgui/vgui_clip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/engine/client/vgui/vgui_clip.cpp -------------------------------------------------------------------------------- /engine/client/vgui/vgui_draw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/engine/client/vgui/vgui_draw.c -------------------------------------------------------------------------------- /engine/client/vgui/vgui_draw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/engine/client/vgui/vgui_draw.h -------------------------------------------------------------------------------- /engine/client/vgui/vgui_input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/engine/client/vgui/vgui_input.cpp -------------------------------------------------------------------------------- /engine/client/vgui/vgui_int.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/engine/client/vgui/vgui_int.cpp -------------------------------------------------------------------------------- /engine/client/vgui/vgui_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/engine/client/vgui/vgui_main.h -------------------------------------------------------------------------------- /engine/client/vgui/vgui_surf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/engine/client/vgui/vgui_surf.cpp -------------------------------------------------------------------------------- /engine/client/vox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/engine/client/vox.h -------------------------------------------------------------------------------- /engine/common/avikit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/engine/common/avikit.c -------------------------------------------------------------------------------- /engine/common/build.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/engine/common/build.c -------------------------------------------------------------------------------- /engine/common/cfgscript.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/engine/common/cfgscript.c -------------------------------------------------------------------------------- /engine/common/cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/engine/common/cmd.c -------------------------------------------------------------------------------- /engine/common/com_strings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/engine/common/com_strings.h -------------------------------------------------------------------------------- /engine/common/common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/engine/common/common.c -------------------------------------------------------------------------------- /engine/common/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/engine/common/common.h -------------------------------------------------------------------------------- /engine/common/con_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/engine/common/con_utils.c -------------------------------------------------------------------------------- /engine/common/console.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/engine/common/console.c -------------------------------------------------------------------------------- /engine/common/crclib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/engine/common/crclib.c -------------------------------------------------------------------------------- /engine/common/crtlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/engine/common/crtlib.c -------------------------------------------------------------------------------- /engine/common/crtlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/engine/common/crtlib.h -------------------------------------------------------------------------------- /engine/common/custom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/engine/common/custom.c -------------------------------------------------------------------------------- /engine/common/cvar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/engine/common/cvar.c -------------------------------------------------------------------------------- /engine/common/cvar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/engine/common/cvar.h -------------------------------------------------------------------------------- /engine/common/filesystem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/engine/common/filesystem.c -------------------------------------------------------------------------------- /engine/common/filesystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/engine/common/filesystem.h -------------------------------------------------------------------------------- /engine/common/gamma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/engine/common/gamma.c -------------------------------------------------------------------------------- /engine/common/host.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/engine/common/host.c -------------------------------------------------------------------------------- /engine/common/host_state.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/engine/common/host_state.c -------------------------------------------------------------------------------- /engine/common/hpak.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/engine/common/hpak.c -------------------------------------------------------------------------------- /engine/common/imagelib/imagelib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/engine/common/imagelib/imagelib.h -------------------------------------------------------------------------------- /engine/common/imagelib/img_bmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/engine/common/imagelib/img_bmp.c -------------------------------------------------------------------------------- /engine/common/imagelib/img_dds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/engine/common/imagelib/img_dds.c -------------------------------------------------------------------------------- /engine/common/imagelib/img_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/engine/common/imagelib/img_main.c -------------------------------------------------------------------------------- /engine/common/imagelib/img_quant.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/engine/common/imagelib/img_quant.c -------------------------------------------------------------------------------- /engine/common/imagelib/img_tga.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/engine/common/imagelib/img_tga.c -------------------------------------------------------------------------------- /engine/common/imagelib/img_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/engine/common/imagelib/img_utils.c -------------------------------------------------------------------------------- /engine/common/imagelib/img_wad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/engine/common/imagelib/img_wad.c -------------------------------------------------------------------------------- /engine/common/infostring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/engine/common/infostring.c -------------------------------------------------------------------------------- /engine/common/input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/engine/common/input.c -------------------------------------------------------------------------------- /engine/common/input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/engine/common/input.h -------------------------------------------------------------------------------- /engine/common/keys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/engine/common/keys.c -------------------------------------------------------------------------------- /engine/common/library.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/engine/common/library.c -------------------------------------------------------------------------------- /engine/common/library.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/engine/common/library.h -------------------------------------------------------------------------------- /engine/common/mathlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/engine/common/mathlib.c -------------------------------------------------------------------------------- /engine/common/mathlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/engine/common/mathlib.h -------------------------------------------------------------------------------- /engine/common/matrixlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/engine/common/matrixlib.c -------------------------------------------------------------------------------- /engine/common/mod_bmodel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/engine/common/mod_bmodel.c -------------------------------------------------------------------------------- /engine/common/mod_dbghulls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/engine/common/mod_dbghulls.c -------------------------------------------------------------------------------- /engine/common/mod_local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/engine/common/mod_local.h -------------------------------------------------------------------------------- /engine/common/mod_studio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/engine/common/mod_studio.c -------------------------------------------------------------------------------- /engine/common/model.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/engine/common/model.c -------------------------------------------------------------------------------- /engine/common/net_buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/engine/common/net_buffer.c -------------------------------------------------------------------------------- /engine/common/net_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/engine/common/net_buffer.h -------------------------------------------------------------------------------- /engine/common/net_chan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/engine/common/net_chan.c -------------------------------------------------------------------------------- /engine/common/net_encode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/engine/common/net_encode.c -------------------------------------------------------------------------------- /engine/common/net_encode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/engine/common/net_encode.h -------------------------------------------------------------------------------- /engine/common/net_ws.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/engine/common/net_ws.c -------------------------------------------------------------------------------- /engine/common/net_ws.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/engine/common/net_ws.h -------------------------------------------------------------------------------- /engine/common/netchan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/engine/common/netchan.h -------------------------------------------------------------------------------- /engine/common/pm_debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/engine/common/pm_debug.c -------------------------------------------------------------------------------- /engine/common/pm_local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/engine/common/pm_local.h -------------------------------------------------------------------------------- /engine/common/pm_surface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/engine/common/pm_surface.c -------------------------------------------------------------------------------- /engine/common/pm_trace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/engine/common/pm_trace.c -------------------------------------------------------------------------------- /engine/common/protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/engine/common/protocol.h -------------------------------------------------------------------------------- /engine/common/soundlib/mpeg.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/engine/common/soundlib/mpeg.lib -------------------------------------------------------------------------------- /engine/common/soundlib/mpeg_dbg.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/engine/common/soundlib/mpeg_dbg.lib -------------------------------------------------------------------------------- /engine/common/soundlib/snd_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/engine/common/soundlib/snd_main.c -------------------------------------------------------------------------------- /engine/common/soundlib/snd_mp3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/engine/common/soundlib/snd_mp3.c -------------------------------------------------------------------------------- /engine/common/soundlib/snd_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/engine/common/soundlib/snd_utils.c -------------------------------------------------------------------------------- /engine/common/soundlib/snd_wav.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/engine/common/soundlib/snd_wav.c -------------------------------------------------------------------------------- /engine/common/soundlib/soundlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/engine/common/soundlib/soundlib.h -------------------------------------------------------------------------------- /engine/common/sys_con.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/engine/common/sys_con.c -------------------------------------------------------------------------------- /engine/common/sys_win.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/engine/common/sys_win.c -------------------------------------------------------------------------------- /engine/common/system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/engine/common/system.h -------------------------------------------------------------------------------- /engine/common/titles.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/engine/common/titles.c -------------------------------------------------------------------------------- /engine/common/world.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/engine/common/world.c -------------------------------------------------------------------------------- /engine/common/world.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/engine/common/world.h -------------------------------------------------------------------------------- /engine/common/zone.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/engine/common/zone.c -------------------------------------------------------------------------------- /engine/custom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/engine/custom.h -------------------------------------------------------------------------------- /engine/customentity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/engine/customentity.h -------------------------------------------------------------------------------- /engine/edict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/engine/edict.h -------------------------------------------------------------------------------- /engine/eiface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/engine/eiface.h -------------------------------------------------------------------------------- /engine/engine.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/engine/engine.dsp -------------------------------------------------------------------------------- /engine/engine.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/engine/engine.vcxproj -------------------------------------------------------------------------------- /engine/engine.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/engine/engine.vcxproj.filters -------------------------------------------------------------------------------- /engine/engine.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/engine/engine.vcxproj.user -------------------------------------------------------------------------------- /engine/gl_smear.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/engine/gl_smear.c -------------------------------------------------------------------------------- /engine/keydefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/engine/keydefs.h -------------------------------------------------------------------------------- /engine/menu_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/engine/menu_int.h -------------------------------------------------------------------------------- /engine/physint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/engine/physint.h -------------------------------------------------------------------------------- /engine/progdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/engine/progdefs.h -------------------------------------------------------------------------------- /engine/server/server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/engine/server/server.h -------------------------------------------------------------------------------- /engine/server/sv_client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/engine/server/sv_client.c -------------------------------------------------------------------------------- /engine/server/sv_cmds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/engine/server/sv_cmds.c -------------------------------------------------------------------------------- /engine/server/sv_custom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/engine/server/sv_custom.c -------------------------------------------------------------------------------- /engine/server/sv_frame.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/engine/server/sv_frame.c -------------------------------------------------------------------------------- /engine/server/sv_game.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/engine/server/sv_game.c -------------------------------------------------------------------------------- /engine/server/sv_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/engine/server/sv_init.c -------------------------------------------------------------------------------- /engine/server/sv_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/engine/server/sv_log.c -------------------------------------------------------------------------------- /engine/server/sv_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/engine/server/sv_main.c -------------------------------------------------------------------------------- /engine/server/sv_move.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/engine/server/sv_move.c -------------------------------------------------------------------------------- /engine/server/sv_phys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/engine/server/sv_phys.c -------------------------------------------------------------------------------- /engine/server/sv_pmove.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/engine/server/sv_pmove.c -------------------------------------------------------------------------------- /engine/server/sv_save.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/engine/server/sv_save.c -------------------------------------------------------------------------------- /engine/server/sv_world.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/engine/server/sv_world.c -------------------------------------------------------------------------------- /engine/shake.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/engine/shake.h -------------------------------------------------------------------------------- /engine/sprite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/engine/sprite.h -------------------------------------------------------------------------------- /engine/studio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/engine/studio.h -------------------------------------------------------------------------------- /engine/warpsin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/engine/warpsin.h -------------------------------------------------------------------------------- /game_launch/game - Copy.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/game_launch/game - Copy.rc -------------------------------------------------------------------------------- /game_launch/game.aps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/game_launch/game.aps -------------------------------------------------------------------------------- /game_launch/game.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/game_launch/game.cpp -------------------------------------------------------------------------------- /game_launch/game.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/game_launch/game.dsp -------------------------------------------------------------------------------- /game_launch/game.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/game_launch/game.rc -------------------------------------------------------------------------------- /game_launch/game.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/game_launch/game.vcxproj -------------------------------------------------------------------------------- /game_launch/game.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/game_launch/game.vcxproj.filters -------------------------------------------------------------------------------- /game_launch/game.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/game_launch/game.vcxproj.user -------------------------------------------------------------------------------- /game_launch/qoom.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/game_launch/qoom.ico -------------------------------------------------------------------------------- /game_shared/bitvec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/game_shared/bitvec.h -------------------------------------------------------------------------------- /game_shared/vgui_checkbutton2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/game_shared/vgui_checkbutton2.cpp -------------------------------------------------------------------------------- /game_shared/vgui_checkbutton2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/game_shared/vgui_checkbutton2.h -------------------------------------------------------------------------------- /game_shared/vgui_defaultinputsignal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/game_shared/vgui_defaultinputsignal.h -------------------------------------------------------------------------------- /game_shared/vgui_grid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/game_shared/vgui_grid.cpp -------------------------------------------------------------------------------- /game_shared/vgui_grid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/game_shared/vgui_grid.h -------------------------------------------------------------------------------- /game_shared/vgui_helpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/game_shared/vgui_helpers.cpp -------------------------------------------------------------------------------- /game_shared/vgui_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/game_shared/vgui_helpers.h -------------------------------------------------------------------------------- /game_shared/vgui_listbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/game_shared/vgui_listbox.cpp -------------------------------------------------------------------------------- /game_shared/vgui_listbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/game_shared/vgui_listbox.h -------------------------------------------------------------------------------- /game_shared/vgui_loadtga.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/game_shared/vgui_loadtga.cpp -------------------------------------------------------------------------------- /game_shared/vgui_loadtga.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/game_shared/vgui_loadtga.h -------------------------------------------------------------------------------- /game_shared/vgui_scrollbar2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/game_shared/vgui_scrollbar2.cpp -------------------------------------------------------------------------------- /game_shared/vgui_scrollbar2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/game_shared/vgui_scrollbar2.h -------------------------------------------------------------------------------- /game_shared/vgui_slider2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/game_shared/vgui_slider2.cpp -------------------------------------------------------------------------------- /game_shared/vgui_slider2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/game_shared/vgui_slider2.h -------------------------------------------------------------------------------- /game_shared/voice_banmgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/game_shared/voice_banmgr.cpp -------------------------------------------------------------------------------- /game_shared/voice_banmgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/game_shared/voice_banmgr.h -------------------------------------------------------------------------------- /game_shared/voice_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/game_shared/voice_common.h -------------------------------------------------------------------------------- /game_shared/voice_gamemgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/game_shared/voice_gamemgr.cpp -------------------------------------------------------------------------------- /game_shared/voice_gamemgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/game_shared/voice_gamemgr.h -------------------------------------------------------------------------------- /game_shared/voice_status.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/game_shared/voice_status.cpp -------------------------------------------------------------------------------- /game_shared/voice_status.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/game_shared/voice_status.h -------------------------------------------------------------------------------- /game_shared/voice_vgui_tweakdlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/game_shared/voice_vgui_tweakdlg.cpp -------------------------------------------------------------------------------- /game_shared/voice_vgui_tweakdlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/game_shared/voice_vgui_tweakdlg.h -------------------------------------------------------------------------------- /mainui/basemenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/mainui/basemenu.cpp -------------------------------------------------------------------------------- /mainui/basemenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/mainui/basemenu.h -------------------------------------------------------------------------------- /mainui/enginecallback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/mainui/enginecallback.h -------------------------------------------------------------------------------- /mainui/extdll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/mainui/extdll.h -------------------------------------------------------------------------------- /mainui/mainui.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/mainui/mainui.def -------------------------------------------------------------------------------- /mainui/mainui.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/mainui/mainui.dsp -------------------------------------------------------------------------------- /mainui/mainui.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/mainui/mainui.vcxproj -------------------------------------------------------------------------------- /mainui/mainui.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/mainui/mainui.vcxproj.filters -------------------------------------------------------------------------------- /mainui/mainui.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/mainui/mainui.vcxproj.user -------------------------------------------------------------------------------- /mainui/menu_advcontrols.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/mainui/menu_advcontrols.cpp -------------------------------------------------------------------------------- /mainui/menu_audio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/mainui/menu_audio.cpp -------------------------------------------------------------------------------- /mainui/menu_btns.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/mainui/menu_btns.cpp -------------------------------------------------------------------------------- /mainui/menu_btnsbmp_table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/mainui/menu_btnsbmp_table.h -------------------------------------------------------------------------------- /mainui/menu_configuration.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/mainui/menu_configuration.cpp -------------------------------------------------------------------------------- /mainui/menu_controls.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/mainui/menu_controls.cpp -------------------------------------------------------------------------------- /mainui/menu_creategame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/mainui/menu_creategame.cpp -------------------------------------------------------------------------------- /mainui/menu_credits.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/mainui/menu_credits.cpp -------------------------------------------------------------------------------- /mainui/menu_customgame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/mainui/menu_customgame.cpp -------------------------------------------------------------------------------- /mainui/menu_gameoptions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/mainui/menu_gameoptions.cpp -------------------------------------------------------------------------------- /mainui/menu_internetgames.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/mainui/menu_internetgames.cpp -------------------------------------------------------------------------------- /mainui/menu_langame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/mainui/menu_langame.cpp -------------------------------------------------------------------------------- /mainui/menu_loadgame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/mainui/menu_loadgame.cpp -------------------------------------------------------------------------------- /mainui/menu_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/mainui/menu_main.cpp -------------------------------------------------------------------------------- /mainui/menu_multiplayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/mainui/menu_multiplayer.cpp -------------------------------------------------------------------------------- /mainui/menu_newgame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/mainui/menu_newgame.cpp -------------------------------------------------------------------------------- /mainui/menu_playersetup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/mainui/menu_playersetup.cpp -------------------------------------------------------------------------------- /mainui/menu_savegame - Copy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/mainui/menu_savegame - Copy.cpp -------------------------------------------------------------------------------- /mainui/menu_savegame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/mainui/menu_savegame.cpp -------------------------------------------------------------------------------- /mainui/menu_saveload.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/mainui/menu_saveload.cpp -------------------------------------------------------------------------------- /mainui/menu_strings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/mainui/menu_strings.cpp -------------------------------------------------------------------------------- /mainui/menu_strings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/mainui/menu_strings.h -------------------------------------------------------------------------------- /mainui/menu_video.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/mainui/menu_video.cpp -------------------------------------------------------------------------------- /mainui/menu_vidmodes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/mainui/menu_vidmodes.cpp -------------------------------------------------------------------------------- /mainui/menu_vidoptions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/mainui/menu_vidoptions.cpp -------------------------------------------------------------------------------- /mainui/menufont.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/mainui/menufont.H -------------------------------------------------------------------------------- /mainui/udll_int.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/mainui/udll_int.cpp -------------------------------------------------------------------------------- /mainui/ui_title_anim.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/mainui/ui_title_anim.cpp -------------------------------------------------------------------------------- /mainui/ui_title_anim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/mainui/ui_title_anim.h -------------------------------------------------------------------------------- /mainui/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/mainui/utils.cpp -------------------------------------------------------------------------------- /mainui/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/mainui/utils.h -------------------------------------------------------------------------------- /pm_shared/pm_debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/pm_shared/pm_debug.c -------------------------------------------------------------------------------- /pm_shared/pm_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/pm_shared/pm_debug.h -------------------------------------------------------------------------------- /pm_shared/pm_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/pm_shared/pm_defs.h -------------------------------------------------------------------------------- /pm_shared/pm_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/pm_shared/pm_info.h -------------------------------------------------------------------------------- /pm_shared/pm_math.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/pm_shared/pm_math.c -------------------------------------------------------------------------------- /pm_shared/pm_movevars.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/pm_shared/pm_movevars.h -------------------------------------------------------------------------------- /pm_shared/pm_shared - quake.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/pm_shared/pm_shared - quake.c -------------------------------------------------------------------------------- /pm_shared/pm_shared.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/pm_shared/pm_shared.c -------------------------------------------------------------------------------- /pm_shared/pm_shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/pm_shared/pm_shared.h -------------------------------------------------------------------------------- /qeffects/code/gl_headers/glext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/qeffects/code/gl_headers/glext.h -------------------------------------------------------------------------------- /qeffects/code/glsl_dither.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/qeffects/code/glsl_dither.h -------------------------------------------------------------------------------- /qeffects/code/glsl_n64point.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/qeffects/code/glsl_n64point.h -------------------------------------------------------------------------------- /qeffects/code/glsl_palette_doom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/qeffects/code/glsl_palette_doom.h -------------------------------------------------------------------------------- /qeffects/code/glsl_palette_quake.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/qeffects/code/glsl_palette_quake.h -------------------------------------------------------------------------------- /qeffects/code/qfx_glprogs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/qeffects/code/qfx_glprogs.hpp -------------------------------------------------------------------------------- /qeffects/code/qfx_hooks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/qeffects/code/qfx_hooks.cpp -------------------------------------------------------------------------------- /qeffects/code/qfx_library.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/qeffects/code/qfx_library.cpp -------------------------------------------------------------------------------- /qeffects/code/qfx_library.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/qeffects/code/qfx_library.hpp -------------------------------------------------------------------------------- /qeffects/code/qfx_log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/qeffects/code/qfx_log.cpp -------------------------------------------------------------------------------- /qeffects/code/qfx_log.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/qeffects/code/qfx_log.hpp -------------------------------------------------------------------------------- /qeffects/code/qfx_opengl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/qeffects/code/qfx_opengl.cpp -------------------------------------------------------------------------------- /qeffects/code/qfx_opengl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/qeffects/code/qfx_opengl.hpp -------------------------------------------------------------------------------- /qeffects/code/qfx_renderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/qeffects/code/qfx_renderer.cpp -------------------------------------------------------------------------------- /qeffects/code/qfx_renderer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/qeffects/code/qfx_renderer.hpp -------------------------------------------------------------------------------- /qeffects/code/qfx_settings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/qeffects/code/qfx_settings.cpp -------------------------------------------------------------------------------- /qeffects/code/qfx_settings.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/qeffects/code/qfx_settings.hpp -------------------------------------------------------------------------------- /qeffects/code/qfx_shader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/qeffects/code/qfx_shader.cpp -------------------------------------------------------------------------------- /qeffects/code/qfx_shader.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/qeffects/code/qfx_shader.hpp -------------------------------------------------------------------------------- /qeffects/msvc/QeffectsGL.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/qeffects/msvc/QeffectsGL.rc -------------------------------------------------------------------------------- /qeffects/msvc/QeffectsGL.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/qeffects/msvc/QeffectsGL.vcxproj -------------------------------------------------------------------------------- /qeffects/msvc/QeffectsGL.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/qeffects/msvc/QeffectsGL.vcxproj.filters -------------------------------------------------------------------------------- /qeffects/msvc/QeffectsGL.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/qeffects/msvc/QeffectsGL.vcxproj.user -------------------------------------------------------------------------------- /qeffects/msvc/opengl32.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/qeffects/msvc/opengl32.def -------------------------------------------------------------------------------- /utils/vgui/include/VGUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/utils/vgui/include/VGUI.h -------------------------------------------------------------------------------- /utils/vgui/include/VGUI_ActionSignal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/utils/vgui/include/VGUI_ActionSignal.h -------------------------------------------------------------------------------- /utils/vgui/include/VGUI_App.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/utils/vgui/include/VGUI_App.h -------------------------------------------------------------------------------- /utils/vgui/include/VGUI_Bitmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/utils/vgui/include/VGUI_Bitmap.h -------------------------------------------------------------------------------- /utils/vgui/include/VGUI_BitmapTGA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/utils/vgui/include/VGUI_BitmapTGA.h -------------------------------------------------------------------------------- /utils/vgui/include/VGUI_Border.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/utils/vgui/include/VGUI_Border.h -------------------------------------------------------------------------------- /utils/vgui/include/VGUI_BorderLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/utils/vgui/include/VGUI_BorderLayout.h -------------------------------------------------------------------------------- /utils/vgui/include/VGUI_BorderPair.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/utils/vgui/include/VGUI_BorderPair.h -------------------------------------------------------------------------------- /utils/vgui/include/VGUI_BuildGroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/utils/vgui/include/VGUI_BuildGroup.h -------------------------------------------------------------------------------- /utils/vgui/include/VGUI_Button.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/utils/vgui/include/VGUI_Button.h -------------------------------------------------------------------------------- /utils/vgui/include/VGUI_ButtonController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/utils/vgui/include/VGUI_ButtonController.h -------------------------------------------------------------------------------- /utils/vgui/include/VGUI_ButtonGroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/utils/vgui/include/VGUI_ButtonGroup.h -------------------------------------------------------------------------------- /utils/vgui/include/VGUI_ChangeSignal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/utils/vgui/include/VGUI_ChangeSignal.h -------------------------------------------------------------------------------- /utils/vgui/include/VGUI_CheckButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/utils/vgui/include/VGUI_CheckButton.h -------------------------------------------------------------------------------- /utils/vgui/include/VGUI_Color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/utils/vgui/include/VGUI_Color.h -------------------------------------------------------------------------------- /utils/vgui/include/VGUI_ComboKey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/utils/vgui/include/VGUI_ComboKey.h -------------------------------------------------------------------------------- /utils/vgui/include/VGUI_ConfigWizard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/utils/vgui/include/VGUI_ConfigWizard.h -------------------------------------------------------------------------------- /utils/vgui/include/VGUI_Cursor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/utils/vgui/include/VGUI_Cursor.h -------------------------------------------------------------------------------- /utils/vgui/include/VGUI_Dar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/utils/vgui/include/VGUI_Dar.h -------------------------------------------------------------------------------- /utils/vgui/include/VGUI_DataInputStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/utils/vgui/include/VGUI_DataInputStream.h -------------------------------------------------------------------------------- /utils/vgui/include/VGUI_Desktop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/utils/vgui/include/VGUI_Desktop.h -------------------------------------------------------------------------------- /utils/vgui/include/VGUI_DesktopIcon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/utils/vgui/include/VGUI_DesktopIcon.h -------------------------------------------------------------------------------- /utils/vgui/include/VGUI_EditPanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/utils/vgui/include/VGUI_EditPanel.h -------------------------------------------------------------------------------- /utils/vgui/include/VGUI_EtchedBorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/utils/vgui/include/VGUI_EtchedBorder.h -------------------------------------------------------------------------------- /utils/vgui/include/VGUI_FileInputStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/utils/vgui/include/VGUI_FileInputStream.h -------------------------------------------------------------------------------- /utils/vgui/include/VGUI_FlowLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/utils/vgui/include/VGUI_FlowLayout.h -------------------------------------------------------------------------------- /utils/vgui/include/VGUI_FocusChangeSignal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/utils/vgui/include/VGUI_FocusChangeSignal.h -------------------------------------------------------------------------------- /utils/vgui/include/VGUI_FocusNavGroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/utils/vgui/include/VGUI_FocusNavGroup.h -------------------------------------------------------------------------------- /utils/vgui/include/VGUI_Font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/utils/vgui/include/VGUI_Font.h -------------------------------------------------------------------------------- /utils/vgui/include/VGUI_Frame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/utils/vgui/include/VGUI_Frame.h -------------------------------------------------------------------------------- /utils/vgui/include/VGUI_FrameSignal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/utils/vgui/include/VGUI_FrameSignal.h -------------------------------------------------------------------------------- /utils/vgui/include/VGUI_GridLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/utils/vgui/include/VGUI_GridLayout.h -------------------------------------------------------------------------------- /utils/vgui/include/VGUI_HeaderPanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/utils/vgui/include/VGUI_HeaderPanel.h -------------------------------------------------------------------------------- /utils/vgui/include/VGUI_Image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/utils/vgui/include/VGUI_Image.h -------------------------------------------------------------------------------- /utils/vgui/include/VGUI_ImagePanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/utils/vgui/include/VGUI_ImagePanel.h -------------------------------------------------------------------------------- /utils/vgui/include/VGUI_InputSignal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/utils/vgui/include/VGUI_InputSignal.h -------------------------------------------------------------------------------- /utils/vgui/include/VGUI_InputStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/utils/vgui/include/VGUI_InputStream.h -------------------------------------------------------------------------------- /utils/vgui/include/VGUI_IntChangeSignal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/utils/vgui/include/VGUI_IntChangeSignal.h -------------------------------------------------------------------------------- /utils/vgui/include/VGUI_IntLabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/utils/vgui/include/VGUI_IntLabel.h -------------------------------------------------------------------------------- /utils/vgui/include/VGUI_KeyCode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/utils/vgui/include/VGUI_KeyCode.h -------------------------------------------------------------------------------- /utils/vgui/include/VGUI_Label.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/utils/vgui/include/VGUI_Label.h -------------------------------------------------------------------------------- /utils/vgui/include/VGUI_Layout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/utils/vgui/include/VGUI_Layout.h -------------------------------------------------------------------------------- /utils/vgui/include/VGUI_LayoutInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/utils/vgui/include/VGUI_LayoutInfo.h -------------------------------------------------------------------------------- /utils/vgui/include/VGUI_LineBorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/utils/vgui/include/VGUI_LineBorder.h -------------------------------------------------------------------------------- /utils/vgui/include/VGUI_ListPanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/utils/vgui/include/VGUI_ListPanel.h -------------------------------------------------------------------------------- /utils/vgui/include/VGUI_LoweredBorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/utils/vgui/include/VGUI_LoweredBorder.h -------------------------------------------------------------------------------- /utils/vgui/include/VGUI_Menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/utils/vgui/include/VGUI_Menu.h -------------------------------------------------------------------------------- /utils/vgui/include/VGUI_MenuItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/utils/vgui/include/VGUI_MenuItem.h -------------------------------------------------------------------------------- /utils/vgui/include/VGUI_MenuSeparator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/utils/vgui/include/VGUI_MenuSeparator.h -------------------------------------------------------------------------------- /utils/vgui/include/VGUI_MessageBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/utils/vgui/include/VGUI_MessageBox.h -------------------------------------------------------------------------------- /utils/vgui/include/VGUI_MiniApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/utils/vgui/include/VGUI_MiniApp.h -------------------------------------------------------------------------------- /utils/vgui/include/VGUI_MouseCode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/utils/vgui/include/VGUI_MouseCode.h -------------------------------------------------------------------------------- /utils/vgui/include/VGUI_Panel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/utils/vgui/include/VGUI_Panel.h -------------------------------------------------------------------------------- /utils/vgui/include/VGUI_PopupMenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/utils/vgui/include/VGUI_PopupMenu.h -------------------------------------------------------------------------------- /utils/vgui/include/VGUI_ProgressBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/utils/vgui/include/VGUI_ProgressBar.h -------------------------------------------------------------------------------- /utils/vgui/include/VGUI_RadioButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/utils/vgui/include/VGUI_RadioButton.h -------------------------------------------------------------------------------- /utils/vgui/include/VGUI_RaisedBorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/utils/vgui/include/VGUI_RaisedBorder.h -------------------------------------------------------------------------------- /utils/vgui/include/VGUI_RepaintSignal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/utils/vgui/include/VGUI_RepaintSignal.h -------------------------------------------------------------------------------- /utils/vgui/include/VGUI_Scheme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/utils/vgui/include/VGUI_Scheme.h -------------------------------------------------------------------------------- /utils/vgui/include/VGUI_ScrollBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/utils/vgui/include/VGUI_ScrollBar.h -------------------------------------------------------------------------------- /utils/vgui/include/VGUI_ScrollPanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/utils/vgui/include/VGUI_ScrollPanel.h -------------------------------------------------------------------------------- /utils/vgui/include/VGUI_Slider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/utils/vgui/include/VGUI_Slider.h -------------------------------------------------------------------------------- /utils/vgui/include/VGUI_StackLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/utils/vgui/include/VGUI_StackLayout.h -------------------------------------------------------------------------------- /utils/vgui/include/VGUI_String.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/utils/vgui/include/VGUI_String.h -------------------------------------------------------------------------------- /utils/vgui/include/VGUI_Surface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/utils/vgui/include/VGUI_Surface.h -------------------------------------------------------------------------------- /utils/vgui/include/VGUI_SurfaceBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/utils/vgui/include/VGUI_SurfaceBase.h -------------------------------------------------------------------------------- /utils/vgui/include/VGUI_SurfaceGL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/utils/vgui/include/VGUI_SurfaceGL.h -------------------------------------------------------------------------------- /utils/vgui/include/VGUI_TabPanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/utils/vgui/include/VGUI_TabPanel.h -------------------------------------------------------------------------------- /utils/vgui/include/VGUI_TablePanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/utils/vgui/include/VGUI_TablePanel.h -------------------------------------------------------------------------------- /utils/vgui/include/VGUI_TaskBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/utils/vgui/include/VGUI_TaskBar.h -------------------------------------------------------------------------------- /utils/vgui/include/VGUI_TextEntry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/utils/vgui/include/VGUI_TextEntry.h -------------------------------------------------------------------------------- /utils/vgui/include/VGUI_TextGrid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/utils/vgui/include/VGUI_TextGrid.h -------------------------------------------------------------------------------- /utils/vgui/include/VGUI_TextImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/utils/vgui/include/VGUI_TextImage.h -------------------------------------------------------------------------------- /utils/vgui/include/VGUI_TextPanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/utils/vgui/include/VGUI_TextPanel.h -------------------------------------------------------------------------------- /utils/vgui/include/VGUI_TickSignal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/utils/vgui/include/VGUI_TickSignal.h -------------------------------------------------------------------------------- /utils/vgui/include/VGUI_ToggleButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/utils/vgui/include/VGUI_ToggleButton.h -------------------------------------------------------------------------------- /utils/vgui/include/VGUI_TreeFolder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/utils/vgui/include/VGUI_TreeFolder.h -------------------------------------------------------------------------------- /utils/vgui/include/VGUI_WizardPanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/utils/vgui/include/VGUI_WizardPanel.h -------------------------------------------------------------------------------- /utils/vgui/lib/win32_vc6/vgui.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magic-Nipples/Duake/HEAD/utils/vgui/lib/win32_vc6/vgui.lib --------------------------------------------------------------------------------