├── .github └── workflows │ └── main.yml ├── .gitignore ├── .whitesource ├── CMakeLists.txt ├── LICENSE ├── README.md ├── cmake └── VSXPToolchain.cmake ├── game_root └── id1 │ ├── autoexec.cfg │ └── config.cfg └── glquake ├── CMakeLists.txt ├── anorm_dots.h ├── anorms.h ├── bspfile.h ├── cd_win.c ├── cdaudio.h ├── chase.c ├── cl_demo.c ├── cl_input.c ├── cl_main.c ├── cl_parse.c ├── cl_tent.c ├── client.h ├── cmd.c ├── cmd.h ├── common.c ├── common.h ├── conproc.c ├── conproc.h ├── console.c ├── console.h ├── crc.c ├── crc.h ├── cvar.c ├── cvar.h ├── d_iface.h ├── dosisms.h ├── draw.h ├── dxguid.h ├── gl_draw.c ├── gl_mesh.c ├── gl_model.c ├── gl_model.h ├── gl_refrag.c ├── gl_rlight.c ├── gl_rmain.c ├── gl_rmisc.c ├── gl_rsurf.c ├── gl_screen.c ├── gl_vidnt.c ├── gl_warp.c ├── gl_warp_sin.h ├── glquake.h ├── host.c ├── host_cmd.c ├── in_win.c ├── input.h ├── keys.c ├── keys.h ├── mathlib.c ├── mathlib.h ├── menu.c ├── menu.h ├── modelgen.h ├── net.h ├── net_dgrm.c ├── net_dgrm.h ├── net_loop.c ├── net_loop.h ├── net_main.c ├── net_ser.h ├── net_vcr.c ├── net_vcr.h ├── net_win.c ├── net_wins.c ├── net_wins.h ├── net_wipx.c ├── net_wipx.h ├── pr_cmds.c ├── pr_comp.h ├── pr_edict.c ├── pr_exec.c ├── progdefs.h ├── progdefs.q1 ├── progs.h ├── protocol.h ├── quakedef.h ├── r_local.h ├── r_part.c ├── render.h ├── sbar.c ├── sbar.h ├── screen.h ├── server.h ├── snd_dma.c ├── snd_mem.c ├── snd_mix.c ├── snd_win.c ├── sound.h ├── spritegn.h ├── sv_main.c ├── sv_move.c ├── sv_phys.c ├── sv_user.c ├── sys.h ├── sys_win.c ├── vid.h ├── view.c ├── view.h ├── wad.c ├── wad.h ├── winquake.h ├── world.c ├── world.h ├── zone.c └── zone.h /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpteam/GLQuake3D/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpteam/GLQuake3D/HEAD/.gitignore -------------------------------------------------------------------------------- /.whitesource: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpteam/GLQuake3D/HEAD/.whitesource -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpteam/GLQuake3D/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpteam/GLQuake3D/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpteam/GLQuake3D/HEAD/README.md -------------------------------------------------------------------------------- /cmake/VSXPToolchain.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpteam/GLQuake3D/HEAD/cmake/VSXPToolchain.cmake -------------------------------------------------------------------------------- /game_root/id1/autoexec.cfg: -------------------------------------------------------------------------------- 1 | cl_movespeedkey 0.5 2 | sv_aim 1000 3 | +mlook 4 | r_waterwarp 0 5 | r_shadows 1 -------------------------------------------------------------------------------- /game_root/id1/config.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpteam/GLQuake3D/HEAD/game_root/id1/config.cfg -------------------------------------------------------------------------------- /glquake/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpteam/GLQuake3D/HEAD/glquake/CMakeLists.txt -------------------------------------------------------------------------------- /glquake/anorm_dots.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpteam/GLQuake3D/HEAD/glquake/anorm_dots.h -------------------------------------------------------------------------------- /glquake/anorms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpteam/GLQuake3D/HEAD/glquake/anorms.h -------------------------------------------------------------------------------- /glquake/bspfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpteam/GLQuake3D/HEAD/glquake/bspfile.h -------------------------------------------------------------------------------- /glquake/cd_win.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpteam/GLQuake3D/HEAD/glquake/cd_win.c -------------------------------------------------------------------------------- /glquake/cdaudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpteam/GLQuake3D/HEAD/glquake/cdaudio.h -------------------------------------------------------------------------------- /glquake/chase.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpteam/GLQuake3D/HEAD/glquake/chase.c -------------------------------------------------------------------------------- /glquake/cl_demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpteam/GLQuake3D/HEAD/glquake/cl_demo.c -------------------------------------------------------------------------------- /glquake/cl_input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpteam/GLQuake3D/HEAD/glquake/cl_input.c -------------------------------------------------------------------------------- /glquake/cl_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpteam/GLQuake3D/HEAD/glquake/cl_main.c -------------------------------------------------------------------------------- /glquake/cl_parse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpteam/GLQuake3D/HEAD/glquake/cl_parse.c -------------------------------------------------------------------------------- /glquake/cl_tent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpteam/GLQuake3D/HEAD/glquake/cl_tent.c -------------------------------------------------------------------------------- /glquake/client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpteam/GLQuake3D/HEAD/glquake/client.h -------------------------------------------------------------------------------- /glquake/cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpteam/GLQuake3D/HEAD/glquake/cmd.c -------------------------------------------------------------------------------- /glquake/cmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpteam/GLQuake3D/HEAD/glquake/cmd.h -------------------------------------------------------------------------------- /glquake/common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpteam/GLQuake3D/HEAD/glquake/common.c -------------------------------------------------------------------------------- /glquake/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpteam/GLQuake3D/HEAD/glquake/common.h -------------------------------------------------------------------------------- /glquake/conproc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpteam/GLQuake3D/HEAD/glquake/conproc.c -------------------------------------------------------------------------------- /glquake/conproc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpteam/GLQuake3D/HEAD/glquake/conproc.h -------------------------------------------------------------------------------- /glquake/console.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpteam/GLQuake3D/HEAD/glquake/console.c -------------------------------------------------------------------------------- /glquake/console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpteam/GLQuake3D/HEAD/glquake/console.h -------------------------------------------------------------------------------- /glquake/crc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpteam/GLQuake3D/HEAD/glquake/crc.c -------------------------------------------------------------------------------- /glquake/crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpteam/GLQuake3D/HEAD/glquake/crc.h -------------------------------------------------------------------------------- /glquake/cvar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpteam/GLQuake3D/HEAD/glquake/cvar.c -------------------------------------------------------------------------------- /glquake/cvar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpteam/GLQuake3D/HEAD/glquake/cvar.h -------------------------------------------------------------------------------- /glquake/d_iface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpteam/GLQuake3D/HEAD/glquake/d_iface.h -------------------------------------------------------------------------------- /glquake/dosisms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpteam/GLQuake3D/HEAD/glquake/dosisms.h -------------------------------------------------------------------------------- /glquake/draw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpteam/GLQuake3D/HEAD/glquake/draw.h -------------------------------------------------------------------------------- /glquake/dxguid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpteam/GLQuake3D/HEAD/glquake/dxguid.h -------------------------------------------------------------------------------- /glquake/gl_draw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpteam/GLQuake3D/HEAD/glquake/gl_draw.c -------------------------------------------------------------------------------- /glquake/gl_mesh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpteam/GLQuake3D/HEAD/glquake/gl_mesh.c -------------------------------------------------------------------------------- /glquake/gl_model.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpteam/GLQuake3D/HEAD/glquake/gl_model.c -------------------------------------------------------------------------------- /glquake/gl_model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpteam/GLQuake3D/HEAD/glquake/gl_model.h -------------------------------------------------------------------------------- /glquake/gl_refrag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpteam/GLQuake3D/HEAD/glquake/gl_refrag.c -------------------------------------------------------------------------------- /glquake/gl_rlight.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpteam/GLQuake3D/HEAD/glquake/gl_rlight.c -------------------------------------------------------------------------------- /glquake/gl_rmain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpteam/GLQuake3D/HEAD/glquake/gl_rmain.c -------------------------------------------------------------------------------- /glquake/gl_rmisc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpteam/GLQuake3D/HEAD/glquake/gl_rmisc.c -------------------------------------------------------------------------------- /glquake/gl_rsurf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpteam/GLQuake3D/HEAD/glquake/gl_rsurf.c -------------------------------------------------------------------------------- /glquake/gl_screen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpteam/GLQuake3D/HEAD/glquake/gl_screen.c -------------------------------------------------------------------------------- /glquake/gl_vidnt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpteam/GLQuake3D/HEAD/glquake/gl_vidnt.c -------------------------------------------------------------------------------- /glquake/gl_warp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpteam/GLQuake3D/HEAD/glquake/gl_warp.c -------------------------------------------------------------------------------- /glquake/gl_warp_sin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpteam/GLQuake3D/HEAD/glquake/gl_warp_sin.h -------------------------------------------------------------------------------- /glquake/glquake.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpteam/GLQuake3D/HEAD/glquake/glquake.h -------------------------------------------------------------------------------- /glquake/host.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpteam/GLQuake3D/HEAD/glquake/host.c -------------------------------------------------------------------------------- /glquake/host_cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpteam/GLQuake3D/HEAD/glquake/host_cmd.c -------------------------------------------------------------------------------- /glquake/in_win.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpteam/GLQuake3D/HEAD/glquake/in_win.c -------------------------------------------------------------------------------- /glquake/input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpteam/GLQuake3D/HEAD/glquake/input.h -------------------------------------------------------------------------------- /glquake/keys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpteam/GLQuake3D/HEAD/glquake/keys.c -------------------------------------------------------------------------------- /glquake/keys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpteam/GLQuake3D/HEAD/glquake/keys.h -------------------------------------------------------------------------------- /glquake/mathlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpteam/GLQuake3D/HEAD/glquake/mathlib.c -------------------------------------------------------------------------------- /glquake/mathlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpteam/GLQuake3D/HEAD/glquake/mathlib.h -------------------------------------------------------------------------------- /glquake/menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpteam/GLQuake3D/HEAD/glquake/menu.c -------------------------------------------------------------------------------- /glquake/menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpteam/GLQuake3D/HEAD/glquake/menu.h -------------------------------------------------------------------------------- /glquake/modelgen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpteam/GLQuake3D/HEAD/glquake/modelgen.h -------------------------------------------------------------------------------- /glquake/net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpteam/GLQuake3D/HEAD/glquake/net.h -------------------------------------------------------------------------------- /glquake/net_dgrm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpteam/GLQuake3D/HEAD/glquake/net_dgrm.c -------------------------------------------------------------------------------- /glquake/net_dgrm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpteam/GLQuake3D/HEAD/glquake/net_dgrm.h -------------------------------------------------------------------------------- /glquake/net_loop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpteam/GLQuake3D/HEAD/glquake/net_loop.c -------------------------------------------------------------------------------- /glquake/net_loop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpteam/GLQuake3D/HEAD/glquake/net_loop.h -------------------------------------------------------------------------------- /glquake/net_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpteam/GLQuake3D/HEAD/glquake/net_main.c -------------------------------------------------------------------------------- /glquake/net_ser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpteam/GLQuake3D/HEAD/glquake/net_ser.h -------------------------------------------------------------------------------- /glquake/net_vcr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpteam/GLQuake3D/HEAD/glquake/net_vcr.c -------------------------------------------------------------------------------- /glquake/net_vcr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpteam/GLQuake3D/HEAD/glquake/net_vcr.h -------------------------------------------------------------------------------- /glquake/net_win.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpteam/GLQuake3D/HEAD/glquake/net_win.c -------------------------------------------------------------------------------- /glquake/net_wins.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpteam/GLQuake3D/HEAD/glquake/net_wins.c -------------------------------------------------------------------------------- /glquake/net_wins.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpteam/GLQuake3D/HEAD/glquake/net_wins.h -------------------------------------------------------------------------------- /glquake/net_wipx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpteam/GLQuake3D/HEAD/glquake/net_wipx.c -------------------------------------------------------------------------------- /glquake/net_wipx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpteam/GLQuake3D/HEAD/glquake/net_wipx.h -------------------------------------------------------------------------------- /glquake/pr_cmds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpteam/GLQuake3D/HEAD/glquake/pr_cmds.c -------------------------------------------------------------------------------- /glquake/pr_comp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpteam/GLQuake3D/HEAD/glquake/pr_comp.h -------------------------------------------------------------------------------- /glquake/pr_edict.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpteam/GLQuake3D/HEAD/glquake/pr_edict.c -------------------------------------------------------------------------------- /glquake/pr_exec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpteam/GLQuake3D/HEAD/glquake/pr_exec.c -------------------------------------------------------------------------------- /glquake/progdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpteam/GLQuake3D/HEAD/glquake/progdefs.h -------------------------------------------------------------------------------- /glquake/progdefs.q1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpteam/GLQuake3D/HEAD/glquake/progdefs.q1 -------------------------------------------------------------------------------- /glquake/progs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpteam/GLQuake3D/HEAD/glquake/progs.h -------------------------------------------------------------------------------- /glquake/protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpteam/GLQuake3D/HEAD/glquake/protocol.h -------------------------------------------------------------------------------- /glquake/quakedef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpteam/GLQuake3D/HEAD/glquake/quakedef.h -------------------------------------------------------------------------------- /glquake/r_local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpteam/GLQuake3D/HEAD/glquake/r_local.h -------------------------------------------------------------------------------- /glquake/r_part.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpteam/GLQuake3D/HEAD/glquake/r_part.c -------------------------------------------------------------------------------- /glquake/render.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpteam/GLQuake3D/HEAD/glquake/render.h -------------------------------------------------------------------------------- /glquake/sbar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpteam/GLQuake3D/HEAD/glquake/sbar.c -------------------------------------------------------------------------------- /glquake/sbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpteam/GLQuake3D/HEAD/glquake/sbar.h -------------------------------------------------------------------------------- /glquake/screen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpteam/GLQuake3D/HEAD/glquake/screen.h -------------------------------------------------------------------------------- /glquake/server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpteam/GLQuake3D/HEAD/glquake/server.h -------------------------------------------------------------------------------- /glquake/snd_dma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpteam/GLQuake3D/HEAD/glquake/snd_dma.c -------------------------------------------------------------------------------- /glquake/snd_mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpteam/GLQuake3D/HEAD/glquake/snd_mem.c -------------------------------------------------------------------------------- /glquake/snd_mix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpteam/GLQuake3D/HEAD/glquake/snd_mix.c -------------------------------------------------------------------------------- /glquake/snd_win.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpteam/GLQuake3D/HEAD/glquake/snd_win.c -------------------------------------------------------------------------------- /glquake/sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpteam/GLQuake3D/HEAD/glquake/sound.h -------------------------------------------------------------------------------- /glquake/spritegn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpteam/GLQuake3D/HEAD/glquake/spritegn.h -------------------------------------------------------------------------------- /glquake/sv_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpteam/GLQuake3D/HEAD/glquake/sv_main.c -------------------------------------------------------------------------------- /glquake/sv_move.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpteam/GLQuake3D/HEAD/glquake/sv_move.c -------------------------------------------------------------------------------- /glquake/sv_phys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpteam/GLQuake3D/HEAD/glquake/sv_phys.c -------------------------------------------------------------------------------- /glquake/sv_user.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpteam/GLQuake3D/HEAD/glquake/sv_user.c -------------------------------------------------------------------------------- /glquake/sys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpteam/GLQuake3D/HEAD/glquake/sys.h -------------------------------------------------------------------------------- /glquake/sys_win.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpteam/GLQuake3D/HEAD/glquake/sys_win.c -------------------------------------------------------------------------------- /glquake/vid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpteam/GLQuake3D/HEAD/glquake/vid.h -------------------------------------------------------------------------------- /glquake/view.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpteam/GLQuake3D/HEAD/glquake/view.c -------------------------------------------------------------------------------- /glquake/view.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpteam/GLQuake3D/HEAD/glquake/view.h -------------------------------------------------------------------------------- /glquake/wad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpteam/GLQuake3D/HEAD/glquake/wad.c -------------------------------------------------------------------------------- /glquake/wad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpteam/GLQuake3D/HEAD/glquake/wad.h -------------------------------------------------------------------------------- /glquake/winquake.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpteam/GLQuake3D/HEAD/glquake/winquake.h -------------------------------------------------------------------------------- /glquake/world.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpteam/GLQuake3D/HEAD/glquake/world.c -------------------------------------------------------------------------------- /glquake/world.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpteam/GLQuake3D/HEAD/glquake/world.h -------------------------------------------------------------------------------- /glquake/zone.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpteam/GLQuake3D/HEAD/glquake/zone.c -------------------------------------------------------------------------------- /glquake/zone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpteam/GLQuake3D/HEAD/glquake/zone.h --------------------------------------------------------------------------------