├── .gitignore ├── CHANGELOG ├── CMakeLists.txt ├── CONTRIBUTE ├── LICENSE ├── Makefile ├── README ├── src ├── backends │ ├── generic │ │ ├── header │ │ │ ├── input.h │ │ │ ├── qal.h │ │ │ └── qgl.h │ │ ├── misc.c │ │ ├── qal.c │ │ ├── qgl.c │ │ └── vid.c │ ├── sdl │ │ ├── cd.c │ │ ├── icon │ │ │ ├── q2icon.xbm │ │ │ └── q2icon64.h │ │ ├── input.c │ │ ├── refresh.c │ │ └── sound.c │ ├── unix │ │ ├── header │ │ │ └── unix.h │ │ ├── main.c │ │ ├── network.c │ │ ├── shared │ │ │ └── hunk.c │ │ ├── signalhandler.c │ │ └── system.c │ └── windows │ │ ├── header │ │ ├── resource.h │ │ └── winquake.h │ │ ├── icon.rc │ │ ├── network.c │ │ ├── shared │ │ └── mem.c │ │ └── system.c ├── client │ ├── cl_cin.c │ ├── cl_console.c │ ├── cl_download.c │ ├── cl_effects.c │ ├── cl_entities.c │ ├── cl_input.c │ ├── cl_inventory.c │ ├── cl_keyboard.c │ ├── cl_lights.c │ ├── cl_main.c │ ├── cl_network.c │ ├── cl_parse.c │ ├── cl_particles.c │ ├── cl_prediction.c │ ├── cl_screen.c │ ├── cl_tempentities.c │ ├── cl_view.c │ ├── header │ │ ├── client.h │ │ ├── console.h │ │ ├── keyboard.h │ │ ├── ref.h │ │ ├── screen.h │ │ └── vid.h │ ├── menu │ │ ├── header │ │ │ └── qmenu.h │ │ ├── menu.c │ │ ├── qmenu.c │ │ └── videomenu.c │ ├── refresh │ │ ├── constants │ │ │ ├── anorms.h │ │ │ ├── anormtab.h │ │ │ └── warpsin.h │ │ ├── files │ │ │ ├── md2.c │ │ │ ├── pcx.c │ │ │ ├── sp2.c │ │ │ ├── stb.c │ │ │ ├── stb_image.h │ │ │ └── wal.c │ │ ├── header │ │ │ ├── local.h │ │ │ └── model.h │ │ ├── r_draw.c │ │ ├── r_image.c │ │ ├── r_light.c │ │ ├── r_lightmap.c │ │ ├── r_main.c │ │ ├── r_mesh.c │ │ ├── r_misc.c │ │ ├── r_model.c │ │ ├── r_scrap.c │ │ ├── r_surf.c │ │ └── r_warp.c │ └── sound │ │ ├── header │ │ ├── cdaudio.h │ │ ├── local.h │ │ ├── sound.h │ │ └── vorbis.h │ │ ├── ogg.c │ │ ├── openal.c │ │ ├── sound.c │ │ └── wave.c ├── common │ ├── argproc.c │ ├── clientserver.c │ ├── cmdparser.c │ ├── collision.c │ ├── crc.c │ ├── cvar.c │ ├── filesystem.c │ ├── glob.c │ ├── header │ │ ├── common.h │ │ ├── crc.h │ │ ├── files.h │ │ ├── glob.h │ │ ├── shared.h │ │ └── zone.h │ ├── md4.c │ ├── misc.c │ ├── movemsg.c │ ├── netchan.c │ ├── pmove.c │ ├── shared │ │ ├── flash.c │ │ ├── rand.c │ │ └── shared.c │ ├── szone.c │ ├── unzip │ │ ├── ioapi.c │ │ ├── ioapi.h │ │ ├── unzip.c │ │ └── unzip.h │ └── zone.c ├── game │ ├── g_ai.c │ ├── g_chase.c │ ├── g_cmds.c │ ├── g_combat.c │ ├── g_func.c │ ├── g_items.c │ ├── g_main.c │ ├── g_misc.c │ ├── g_monster.c │ ├── g_phys.c │ ├── g_spawn.c │ ├── g_svcmds.c │ ├── g_target.c │ ├── g_trigger.c │ ├── g_turret.c │ ├── g_utils.c │ ├── g_weapon.c │ ├── header │ │ ├── game.h │ │ └── local.h │ ├── monster │ │ ├── berserker │ │ │ ├── berserker.c │ │ │ └── berserker.h │ │ ├── boss2 │ │ │ ├── boss2.c │ │ │ └── boss2.h │ │ ├── boss3 │ │ │ ├── boss3.c │ │ │ ├── boss31.c │ │ │ ├── boss31.h │ │ │ ├── boss32.c │ │ │ └── boss32.h │ │ ├── brain │ │ │ ├── brain.c │ │ │ └── brain.h │ │ ├── chick │ │ │ ├── chick.c │ │ │ └── chick.h │ │ ├── flipper │ │ │ ├── flipper.c │ │ │ └── flipper.h │ │ ├── float │ │ │ ├── float.c │ │ │ └── float.h │ │ ├── flyer │ │ │ ├── flyer.c │ │ │ └── flyer.h │ │ ├── gladiator │ │ │ ├── gladiator.c │ │ │ └── gladiator.h │ │ ├── gunner │ │ │ ├── gunner.c │ │ │ └── gunner.h │ │ ├── hover │ │ │ ├── hover.c │ │ │ └── hover.h │ │ ├── infantry │ │ │ ├── infantry.c │ │ │ └── infantry.h │ │ ├── insane │ │ │ ├── insane.c │ │ │ └── insane.h │ │ ├── medic │ │ │ ├── medic.c │ │ │ └── medic.h │ │ ├── misc │ │ │ ├── move.c │ │ │ └── player.h │ │ ├── mutant │ │ │ ├── mutant.c │ │ │ └── mutant.h │ │ ├── parasite │ │ │ ├── parasite.c │ │ │ └── parasite.h │ │ ├── soldier │ │ │ ├── soldier.c │ │ │ └── soldier.h │ │ ├── supertank │ │ │ ├── supertank.c │ │ │ └── supertank.h │ │ └── tank │ │ │ ├── tank.c │ │ │ └── tank.h │ ├── player │ │ ├── client.c │ │ ├── hud.c │ │ ├── trail.c │ │ ├── view.c │ │ └── weapon.c │ └── savegame │ │ ├── savegame.c │ │ └── tables │ │ ├── clientfields.h │ │ ├── fields.h │ │ ├── gamefunc_decs.h │ │ ├── gamefunc_list.h │ │ ├── gamemmove_decs.h │ │ ├── gamemmove_list.h │ │ └── levelfields.h └── server │ ├── header │ └── server.h │ ├── sv_cmd.c │ ├── sv_conless.c │ ├── sv_entities.c │ ├── sv_game.c │ ├── sv_init.c │ ├── sv_main.c │ ├── sv_save.c │ ├── sv_send.c │ ├── sv_user.c │ └── sv_world.c └── stuff ├── cdripper.sh ├── cmake └── modules │ ├── FindOggVorbis.cmake │ └── FindSDL2.cmake ├── icon ├── Quake2.ico ├── Quake2.png └── Quake2.svg ├── misc └── uncrustify.cfg ├── models └── crosshair │ ├── skin.pcx │ └── tris.md2 ├── osx └── quake2-appbundle.zip ├── quake2-start.sh └── yq2.cfg /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/CHANGELOG -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CONTRIBUTE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/CONTRIBUTE -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/Makefile -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/README -------------------------------------------------------------------------------- /src/backends/generic/header/input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/backends/generic/header/input.h -------------------------------------------------------------------------------- /src/backends/generic/header/qal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/backends/generic/header/qal.h -------------------------------------------------------------------------------- /src/backends/generic/header/qgl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/backends/generic/header/qgl.h -------------------------------------------------------------------------------- /src/backends/generic/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/backends/generic/misc.c -------------------------------------------------------------------------------- /src/backends/generic/qal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/backends/generic/qal.c -------------------------------------------------------------------------------- /src/backends/generic/qgl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/backends/generic/qgl.c -------------------------------------------------------------------------------- /src/backends/generic/vid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/backends/generic/vid.c -------------------------------------------------------------------------------- /src/backends/sdl/cd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/backends/sdl/cd.c -------------------------------------------------------------------------------- /src/backends/sdl/icon/q2icon.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/backends/sdl/icon/q2icon.xbm -------------------------------------------------------------------------------- /src/backends/sdl/icon/q2icon64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/backends/sdl/icon/q2icon64.h -------------------------------------------------------------------------------- /src/backends/sdl/input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/backends/sdl/input.c -------------------------------------------------------------------------------- /src/backends/sdl/refresh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/backends/sdl/refresh.c -------------------------------------------------------------------------------- /src/backends/sdl/sound.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/backends/sdl/sound.c -------------------------------------------------------------------------------- /src/backends/unix/header/unix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/backends/unix/header/unix.h -------------------------------------------------------------------------------- /src/backends/unix/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/backends/unix/main.c -------------------------------------------------------------------------------- /src/backends/unix/network.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/backends/unix/network.c -------------------------------------------------------------------------------- /src/backends/unix/shared/hunk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/backends/unix/shared/hunk.c -------------------------------------------------------------------------------- /src/backends/unix/signalhandler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/backends/unix/signalhandler.c -------------------------------------------------------------------------------- /src/backends/unix/system.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/backends/unix/system.c -------------------------------------------------------------------------------- /src/backends/windows/header/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/backends/windows/header/resource.h -------------------------------------------------------------------------------- /src/backends/windows/header/winquake.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/backends/windows/header/winquake.h -------------------------------------------------------------------------------- /src/backends/windows/icon.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/backends/windows/icon.rc -------------------------------------------------------------------------------- /src/backends/windows/network.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/backends/windows/network.c -------------------------------------------------------------------------------- /src/backends/windows/shared/mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/backends/windows/shared/mem.c -------------------------------------------------------------------------------- /src/backends/windows/system.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/backends/windows/system.c -------------------------------------------------------------------------------- /src/client/cl_cin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/client/cl_cin.c -------------------------------------------------------------------------------- /src/client/cl_console.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/client/cl_console.c -------------------------------------------------------------------------------- /src/client/cl_download.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/client/cl_download.c -------------------------------------------------------------------------------- /src/client/cl_effects.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/client/cl_effects.c -------------------------------------------------------------------------------- /src/client/cl_entities.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/client/cl_entities.c -------------------------------------------------------------------------------- /src/client/cl_input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/client/cl_input.c -------------------------------------------------------------------------------- /src/client/cl_inventory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/client/cl_inventory.c -------------------------------------------------------------------------------- /src/client/cl_keyboard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/client/cl_keyboard.c -------------------------------------------------------------------------------- /src/client/cl_lights.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/client/cl_lights.c -------------------------------------------------------------------------------- /src/client/cl_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/client/cl_main.c -------------------------------------------------------------------------------- /src/client/cl_network.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/client/cl_network.c -------------------------------------------------------------------------------- /src/client/cl_parse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/client/cl_parse.c -------------------------------------------------------------------------------- /src/client/cl_particles.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/client/cl_particles.c -------------------------------------------------------------------------------- /src/client/cl_prediction.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/client/cl_prediction.c -------------------------------------------------------------------------------- /src/client/cl_screen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/client/cl_screen.c -------------------------------------------------------------------------------- /src/client/cl_tempentities.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/client/cl_tempentities.c -------------------------------------------------------------------------------- /src/client/cl_view.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/client/cl_view.c -------------------------------------------------------------------------------- /src/client/header/client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/client/header/client.h -------------------------------------------------------------------------------- /src/client/header/console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/client/header/console.h -------------------------------------------------------------------------------- /src/client/header/keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/client/header/keyboard.h -------------------------------------------------------------------------------- /src/client/header/ref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/client/header/ref.h -------------------------------------------------------------------------------- /src/client/header/screen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/client/header/screen.h -------------------------------------------------------------------------------- /src/client/header/vid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/client/header/vid.h -------------------------------------------------------------------------------- /src/client/menu/header/qmenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/client/menu/header/qmenu.h -------------------------------------------------------------------------------- /src/client/menu/menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/client/menu/menu.c -------------------------------------------------------------------------------- /src/client/menu/qmenu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/client/menu/qmenu.c -------------------------------------------------------------------------------- /src/client/menu/videomenu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/client/menu/videomenu.c -------------------------------------------------------------------------------- /src/client/refresh/constants/anorms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/client/refresh/constants/anorms.h -------------------------------------------------------------------------------- /src/client/refresh/constants/anormtab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/client/refresh/constants/anormtab.h -------------------------------------------------------------------------------- /src/client/refresh/constants/warpsin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/client/refresh/constants/warpsin.h -------------------------------------------------------------------------------- /src/client/refresh/files/md2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/client/refresh/files/md2.c -------------------------------------------------------------------------------- /src/client/refresh/files/pcx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/client/refresh/files/pcx.c -------------------------------------------------------------------------------- /src/client/refresh/files/sp2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/client/refresh/files/sp2.c -------------------------------------------------------------------------------- /src/client/refresh/files/stb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/client/refresh/files/stb.c -------------------------------------------------------------------------------- /src/client/refresh/files/stb_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/client/refresh/files/stb_image.h -------------------------------------------------------------------------------- /src/client/refresh/files/wal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/client/refresh/files/wal.c -------------------------------------------------------------------------------- /src/client/refresh/header/local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/client/refresh/header/local.h -------------------------------------------------------------------------------- /src/client/refresh/header/model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/client/refresh/header/model.h -------------------------------------------------------------------------------- /src/client/refresh/r_draw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/client/refresh/r_draw.c -------------------------------------------------------------------------------- /src/client/refresh/r_image.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/client/refresh/r_image.c -------------------------------------------------------------------------------- /src/client/refresh/r_light.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/client/refresh/r_light.c -------------------------------------------------------------------------------- /src/client/refresh/r_lightmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/client/refresh/r_lightmap.c -------------------------------------------------------------------------------- /src/client/refresh/r_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/client/refresh/r_main.c -------------------------------------------------------------------------------- /src/client/refresh/r_mesh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/client/refresh/r_mesh.c -------------------------------------------------------------------------------- /src/client/refresh/r_misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/client/refresh/r_misc.c -------------------------------------------------------------------------------- /src/client/refresh/r_model.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/client/refresh/r_model.c -------------------------------------------------------------------------------- /src/client/refresh/r_scrap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/client/refresh/r_scrap.c -------------------------------------------------------------------------------- /src/client/refresh/r_surf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/client/refresh/r_surf.c -------------------------------------------------------------------------------- /src/client/refresh/r_warp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/client/refresh/r_warp.c -------------------------------------------------------------------------------- /src/client/sound/header/cdaudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/client/sound/header/cdaudio.h -------------------------------------------------------------------------------- /src/client/sound/header/local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/client/sound/header/local.h -------------------------------------------------------------------------------- /src/client/sound/header/sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/client/sound/header/sound.h -------------------------------------------------------------------------------- /src/client/sound/header/vorbis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/client/sound/header/vorbis.h -------------------------------------------------------------------------------- /src/client/sound/ogg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/client/sound/ogg.c -------------------------------------------------------------------------------- /src/client/sound/openal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/client/sound/openal.c -------------------------------------------------------------------------------- /src/client/sound/sound.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/client/sound/sound.c -------------------------------------------------------------------------------- /src/client/sound/wave.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/client/sound/wave.c -------------------------------------------------------------------------------- /src/common/argproc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/common/argproc.c -------------------------------------------------------------------------------- /src/common/clientserver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/common/clientserver.c -------------------------------------------------------------------------------- /src/common/cmdparser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/common/cmdparser.c -------------------------------------------------------------------------------- /src/common/collision.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/common/collision.c -------------------------------------------------------------------------------- /src/common/crc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/common/crc.c -------------------------------------------------------------------------------- /src/common/cvar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/common/cvar.c -------------------------------------------------------------------------------- /src/common/filesystem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/common/filesystem.c -------------------------------------------------------------------------------- /src/common/glob.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/common/glob.c -------------------------------------------------------------------------------- /src/common/header/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/common/header/common.h -------------------------------------------------------------------------------- /src/common/header/crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/common/header/crc.h -------------------------------------------------------------------------------- /src/common/header/files.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/common/header/files.h -------------------------------------------------------------------------------- /src/common/header/glob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/common/header/glob.h -------------------------------------------------------------------------------- /src/common/header/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/common/header/shared.h -------------------------------------------------------------------------------- /src/common/header/zone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/common/header/zone.h -------------------------------------------------------------------------------- /src/common/md4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/common/md4.c -------------------------------------------------------------------------------- /src/common/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/common/misc.c -------------------------------------------------------------------------------- /src/common/movemsg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/common/movemsg.c -------------------------------------------------------------------------------- /src/common/netchan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/common/netchan.c -------------------------------------------------------------------------------- /src/common/pmove.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/common/pmove.c -------------------------------------------------------------------------------- /src/common/shared/flash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/common/shared/flash.c -------------------------------------------------------------------------------- /src/common/shared/rand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/common/shared/rand.c -------------------------------------------------------------------------------- /src/common/shared/shared.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/common/shared/shared.c -------------------------------------------------------------------------------- /src/common/szone.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/common/szone.c -------------------------------------------------------------------------------- /src/common/unzip/ioapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/common/unzip/ioapi.c -------------------------------------------------------------------------------- /src/common/unzip/ioapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/common/unzip/ioapi.h -------------------------------------------------------------------------------- /src/common/unzip/unzip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/common/unzip/unzip.c -------------------------------------------------------------------------------- /src/common/unzip/unzip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/common/unzip/unzip.h -------------------------------------------------------------------------------- /src/common/zone.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/common/zone.c -------------------------------------------------------------------------------- /src/game/g_ai.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/game/g_ai.c -------------------------------------------------------------------------------- /src/game/g_chase.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/game/g_chase.c -------------------------------------------------------------------------------- /src/game/g_cmds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/game/g_cmds.c -------------------------------------------------------------------------------- /src/game/g_combat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/game/g_combat.c -------------------------------------------------------------------------------- /src/game/g_func.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/game/g_func.c -------------------------------------------------------------------------------- /src/game/g_items.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/game/g_items.c -------------------------------------------------------------------------------- /src/game/g_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/game/g_main.c -------------------------------------------------------------------------------- /src/game/g_misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/game/g_misc.c -------------------------------------------------------------------------------- /src/game/g_monster.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/game/g_monster.c -------------------------------------------------------------------------------- /src/game/g_phys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/game/g_phys.c -------------------------------------------------------------------------------- /src/game/g_spawn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/game/g_spawn.c -------------------------------------------------------------------------------- /src/game/g_svcmds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/game/g_svcmds.c -------------------------------------------------------------------------------- /src/game/g_target.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/game/g_target.c -------------------------------------------------------------------------------- /src/game/g_trigger.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/game/g_trigger.c -------------------------------------------------------------------------------- /src/game/g_turret.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/game/g_turret.c -------------------------------------------------------------------------------- /src/game/g_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/game/g_utils.c -------------------------------------------------------------------------------- /src/game/g_weapon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/game/g_weapon.c -------------------------------------------------------------------------------- /src/game/header/game.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/game/header/game.h -------------------------------------------------------------------------------- /src/game/header/local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/game/header/local.h -------------------------------------------------------------------------------- /src/game/monster/berserker/berserker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/game/monster/berserker/berserker.c -------------------------------------------------------------------------------- /src/game/monster/berserker/berserker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/game/monster/berserker/berserker.h -------------------------------------------------------------------------------- /src/game/monster/boss2/boss2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/game/monster/boss2/boss2.c -------------------------------------------------------------------------------- /src/game/monster/boss2/boss2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/game/monster/boss2/boss2.h -------------------------------------------------------------------------------- /src/game/monster/boss3/boss3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/game/monster/boss3/boss3.c -------------------------------------------------------------------------------- /src/game/monster/boss3/boss31.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/game/monster/boss3/boss31.c -------------------------------------------------------------------------------- /src/game/monster/boss3/boss31.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/game/monster/boss3/boss31.h -------------------------------------------------------------------------------- /src/game/monster/boss3/boss32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/game/monster/boss3/boss32.c -------------------------------------------------------------------------------- /src/game/monster/boss3/boss32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/game/monster/boss3/boss32.h -------------------------------------------------------------------------------- /src/game/monster/brain/brain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/game/monster/brain/brain.c -------------------------------------------------------------------------------- /src/game/monster/brain/brain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/game/monster/brain/brain.h -------------------------------------------------------------------------------- /src/game/monster/chick/chick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/game/monster/chick/chick.c -------------------------------------------------------------------------------- /src/game/monster/chick/chick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/game/monster/chick/chick.h -------------------------------------------------------------------------------- /src/game/monster/flipper/flipper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/game/monster/flipper/flipper.c -------------------------------------------------------------------------------- /src/game/monster/flipper/flipper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/game/monster/flipper/flipper.h -------------------------------------------------------------------------------- /src/game/monster/float/float.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/game/monster/float/float.c -------------------------------------------------------------------------------- /src/game/monster/float/float.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/game/monster/float/float.h -------------------------------------------------------------------------------- /src/game/monster/flyer/flyer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/game/monster/flyer/flyer.c -------------------------------------------------------------------------------- /src/game/monster/flyer/flyer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/game/monster/flyer/flyer.h -------------------------------------------------------------------------------- /src/game/monster/gladiator/gladiator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/game/monster/gladiator/gladiator.c -------------------------------------------------------------------------------- /src/game/monster/gladiator/gladiator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/game/monster/gladiator/gladiator.h -------------------------------------------------------------------------------- /src/game/monster/gunner/gunner.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/game/monster/gunner/gunner.c -------------------------------------------------------------------------------- /src/game/monster/gunner/gunner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/game/monster/gunner/gunner.h -------------------------------------------------------------------------------- /src/game/monster/hover/hover.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/game/monster/hover/hover.c -------------------------------------------------------------------------------- /src/game/monster/hover/hover.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/game/monster/hover/hover.h -------------------------------------------------------------------------------- /src/game/monster/infantry/infantry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/game/monster/infantry/infantry.c -------------------------------------------------------------------------------- /src/game/monster/infantry/infantry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/game/monster/infantry/infantry.h -------------------------------------------------------------------------------- /src/game/monster/insane/insane.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/game/monster/insane/insane.c -------------------------------------------------------------------------------- /src/game/monster/insane/insane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/game/monster/insane/insane.h -------------------------------------------------------------------------------- /src/game/monster/medic/medic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/game/monster/medic/medic.c -------------------------------------------------------------------------------- /src/game/monster/medic/medic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/game/monster/medic/medic.h -------------------------------------------------------------------------------- /src/game/monster/misc/move.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/game/monster/misc/move.c -------------------------------------------------------------------------------- /src/game/monster/misc/player.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/game/monster/misc/player.h -------------------------------------------------------------------------------- /src/game/monster/mutant/mutant.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/game/monster/mutant/mutant.c -------------------------------------------------------------------------------- /src/game/monster/mutant/mutant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/game/monster/mutant/mutant.h -------------------------------------------------------------------------------- /src/game/monster/parasite/parasite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/game/monster/parasite/parasite.c -------------------------------------------------------------------------------- /src/game/monster/parasite/parasite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/game/monster/parasite/parasite.h -------------------------------------------------------------------------------- /src/game/monster/soldier/soldier.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/game/monster/soldier/soldier.c -------------------------------------------------------------------------------- /src/game/monster/soldier/soldier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/game/monster/soldier/soldier.h -------------------------------------------------------------------------------- /src/game/monster/supertank/supertank.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/game/monster/supertank/supertank.c -------------------------------------------------------------------------------- /src/game/monster/supertank/supertank.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/game/monster/supertank/supertank.h -------------------------------------------------------------------------------- /src/game/monster/tank/tank.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/game/monster/tank/tank.c -------------------------------------------------------------------------------- /src/game/monster/tank/tank.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/game/monster/tank/tank.h -------------------------------------------------------------------------------- /src/game/player/client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/game/player/client.c -------------------------------------------------------------------------------- /src/game/player/hud.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/game/player/hud.c -------------------------------------------------------------------------------- /src/game/player/trail.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/game/player/trail.c -------------------------------------------------------------------------------- /src/game/player/view.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/game/player/view.c -------------------------------------------------------------------------------- /src/game/player/weapon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/game/player/weapon.c -------------------------------------------------------------------------------- /src/game/savegame/savegame.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/game/savegame/savegame.c -------------------------------------------------------------------------------- /src/game/savegame/tables/clientfields.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/game/savegame/tables/clientfields.h -------------------------------------------------------------------------------- /src/game/savegame/tables/fields.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/game/savegame/tables/fields.h -------------------------------------------------------------------------------- /src/game/savegame/tables/gamefunc_decs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/game/savegame/tables/gamefunc_decs.h -------------------------------------------------------------------------------- /src/game/savegame/tables/gamefunc_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/game/savegame/tables/gamefunc_list.h -------------------------------------------------------------------------------- /src/game/savegame/tables/gamemmove_decs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/game/savegame/tables/gamemmove_decs.h -------------------------------------------------------------------------------- /src/game/savegame/tables/gamemmove_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/game/savegame/tables/gamemmove_list.h -------------------------------------------------------------------------------- /src/game/savegame/tables/levelfields.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/game/savegame/tables/levelfields.h -------------------------------------------------------------------------------- /src/server/header/server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/server/header/server.h -------------------------------------------------------------------------------- /src/server/sv_cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/server/sv_cmd.c -------------------------------------------------------------------------------- /src/server/sv_conless.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/server/sv_conless.c -------------------------------------------------------------------------------- /src/server/sv_entities.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/server/sv_entities.c -------------------------------------------------------------------------------- /src/server/sv_game.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/server/sv_game.c -------------------------------------------------------------------------------- /src/server/sv_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/server/sv_init.c -------------------------------------------------------------------------------- /src/server/sv_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/server/sv_main.c -------------------------------------------------------------------------------- /src/server/sv_save.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/server/sv_save.c -------------------------------------------------------------------------------- /src/server/sv_send.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/server/sv_send.c -------------------------------------------------------------------------------- /src/server/sv_user.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/server/sv_user.c -------------------------------------------------------------------------------- /src/server/sv_world.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/src/server/sv_world.c -------------------------------------------------------------------------------- /stuff/cdripper.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/stuff/cdripper.sh -------------------------------------------------------------------------------- /stuff/cmake/modules/FindOggVorbis.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/stuff/cmake/modules/FindOggVorbis.cmake -------------------------------------------------------------------------------- /stuff/cmake/modules/FindSDL2.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/stuff/cmake/modules/FindSDL2.cmake -------------------------------------------------------------------------------- /stuff/icon/Quake2.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/stuff/icon/Quake2.ico -------------------------------------------------------------------------------- /stuff/icon/Quake2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/stuff/icon/Quake2.png -------------------------------------------------------------------------------- /stuff/icon/Quake2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/stuff/icon/Quake2.svg -------------------------------------------------------------------------------- /stuff/misc/uncrustify.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/stuff/misc/uncrustify.cfg -------------------------------------------------------------------------------- /stuff/models/crosshair/skin.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/stuff/models/crosshair/skin.pcx -------------------------------------------------------------------------------- /stuff/models/crosshair/tris.md2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/stuff/models/crosshair/tris.md2 -------------------------------------------------------------------------------- /stuff/osx/quake2-appbundle.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/stuff/osx/quake2-appbundle.zip -------------------------------------------------------------------------------- /stuff/quake2-start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/stuff/quake2-start.sh -------------------------------------------------------------------------------- /stuff/yq2.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eddbiddulph/yquake2/HEAD/stuff/yq2.cfg --------------------------------------------------------------------------------