├── .gitattributes ├── .github └── workflows │ └── build-linux.yml ├── README.txt ├── common ├── adivtab.h ├── anorms.h ├── arch_def.h ├── bspfile.h ├── compiler.h ├── crc.c ├── crc.h ├── filenames.h ├── genmodel.h ├── hwal.h ├── midifile.h ├── net_sys.h ├── pakfile.h ├── pr_comp.h ├── q_ctype.h ├── q_endian.c ├── q_endian.h ├── q_stdinc.h ├── q_stdint.h ├── qsnprint.c ├── qsnprint.h ├── spritegn.h ├── strl_fn.h ├── strlcat.c └── strlcpy.c ├── docs ├── ABOUT ├── AUTHORS ├── BUGS ├── COMPILE ├── COPYING ├── Features ├── README ├── README.3dfx ├── README.AoT ├── README.dos ├── README.hwcl ├── README.hwmaster ├── README.hwsv ├── README.music ├── README.win32 ├── ReleaseNotes ├── ReleaseNotes.old ├── SrcNotes.txt └── TODO ├── engine ├── h2shared │ ├── SDLMain.h │ ├── SDLMain.m │ ├── SDLMain.patch │ ├── alsa_funcs.h │ ├── anorm_dots.h │ ├── asm_nasm.inc │ ├── bgmnull.c │ ├── bgmnull_midi.c │ ├── bgmnull_none.c │ ├── bgmusic.c │ ├── bgmusic.h │ ├── bgmusic.old │ ├── cd_amiga.c │ ├── cd_bsd.c │ ├── cd_dos.c │ ├── cd_linux.c │ ├── cd_null.c │ ├── cd_sdl.c │ ├── cd_unix.h │ ├── cd_win.c │ ├── cdaudio.h │ ├── cfgfile.c │ ├── cfgfile.h │ ├── cmd.c │ ├── cmd.h │ ├── common.c │ ├── common.h │ ├── console.h │ ├── cvar.c │ ├── cvar.h │ ├── d_copy.asm │ ├── d_draw.asm │ ├── d_draw16.asm │ ├── d_draw16t.asm │ ├── d_edge.c │ ├── d_fill.c │ ├── d_iface.h │ ├── d_init.c │ ├── d_local.h │ ├── d_modech.c │ ├── d_part.c │ ├── d_parta.asm │ ├── d_partb.asm │ ├── d_polysa.asm │ ├── d_polysa.inc │ ├── d_polysa2.asm │ ├── d_polysa3.asm │ ├── d_polysa4.asm │ ├── d_polysa5.asm │ ├── d_polyse.c │ ├── d_scan.c │ ├── d_scana.asm │ ├── d_sky.c │ ├── d_spr8.asm │ ├── d_spr8t.asm │ ├── d_spr8t2.asm │ ├── d_sprite.c │ ├── d_surf.c │ ├── d_vars.c │ ├── d_varsa.asm │ ├── d_zpoint.c │ ├── debuglog.c │ ├── debuglog.h │ ├── dos_dmesa.c │ ├── dos_fxmesa.c │ ├── dos_sage.c │ ├── dos_v2.c │ ├── dosasm.asm │ ├── dosisms.h │ ├── draw.c │ ├── draw.h │ ├── dxe.c │ ├── fx_gamma.c │ ├── fx_gamma.h │ ├── gl_dos.h │ ├── gl_draw.c │ ├── gl_func.h │ ├── gl_mesh.c │ ├── gl_model.c │ ├── gl_model.h │ ├── gl_refrag.c │ ├── gl_rlight.c │ ├── gl_screen.c │ ├── gl_vidamiga.c │ ├── gl_viddos.c │ ├── gl_vidnt.c │ ├── gl_vidsdl.c │ ├── gl_warp.c │ ├── gl_warp_sin.h │ ├── glheader.h │ ├── glquake.h │ ├── h2config.h │ ├── hashindex.c │ ├── hashindex.h │ ├── hashindex.license │ ├── host_string.c │ ├── host_string.h │ ├── in_amiga.c │ ├── in_dos.c │ ├── in_sdl.c │ ├── in_svgalib.c │ ├── in_win.c │ ├── input.h │ ├── keys.h │ ├── link_ops.c │ ├── link_ops.h │ ├── masm │ │ ├── d_draw.asm │ │ ├── d_draw16.asm │ │ ├── d_draw16t.asm │ │ ├── d_parta.asm │ │ ├── d_partb.asm │ │ ├── d_polysa.asm │ │ ├── d_polysa2.asm │ │ ├── d_polysa3.asm │ │ ├── d_polysa4.asm │ │ ├── d_polysa5.asm │ │ ├── d_scana.asm │ │ ├── d_spr8.asm │ │ ├── d_spr8t.asm │ │ ├── d_spr8t2.asm │ │ ├── d_varsa.asm │ │ ├── ftol.asm │ │ ├── math.asm │ │ ├── r_aclipa.asm │ │ ├── r_aliasa.asm │ │ ├── r_drawa.asm │ │ ├── r_edgea.asm │ │ ├── r_edgeb.asm │ │ ├── r_varsa.asm │ │ ├── snd_mixa.asm │ │ ├── surf16.asm │ │ ├── surf8.asm │ │ ├── sys_ia32.asm │ │ ├── worlda.asm │ │ └── worlda.inc │ ├── math.asm │ ├── mathlib.c │ ├── mathlib.h │ ├── mid2strm.c │ ├── mid2strm.h │ ├── midi_camd.c │ ├── midi_drv.h │ ├── midi_mac.c │ ├── midi_nul.c │ ├── midi_osx.c │ ├── midi_win.c │ ├── model.c │ ├── model.h │ ├── msg_io.c │ ├── msg_io.h │ ├── no_dxe.c │ ├── pr_cmds.c │ ├── pr_edict.c │ ├── pr_exec.c │ ├── printsys.h │ ├── progs.h │ ├── q_sound.h │ ├── quakefs.c │ ├── quakefs.h │ ├── r_aclip.c │ ├── r_aclipa.asm │ ├── r_aliasa.asm │ ├── r_bsp.c │ ├── r_draw.c │ ├── r_drawa.asm │ ├── r_edge.c │ ├── r_edgea.asm │ ├── r_edgeb.asm │ ├── r_efrag.c │ ├── r_light.c │ ├── r_local.h │ ├── r_shared.h │ ├── r_sky.c │ ├── r_sprite.c │ ├── r_surf.c │ ├── r_vars.c │ ├── r_varsa.asm │ ├── resource.h │ ├── sbar.h │ ├── screen.c │ ├── screen.h │ ├── sdl_inc.h │ ├── sincos.h │ ├── sizebuf.c │ ├── sizebuf.h │ ├── snd_ahi.c │ ├── snd_ahi.h │ ├── snd_alsa.c │ ├── snd_alsa.h │ ├── snd_codec.c │ ├── snd_codec.h │ ├── snd_codeci.h │ ├── snd_dma.c │ ├── snd_dsound.c │ ├── snd_dsound.h │ ├── snd_flac.c │ ├── snd_flac.h │ ├── snd_gus.c │ ├── snd_gus.h │ ├── snd_mem.c │ ├── snd_mikmod.c │ ├── snd_mikmod.h │ ├── snd_mix.c │ ├── snd_mixa.asm │ ├── snd_modplug.c │ ├── snd_modplug.h │ ├── snd_mp3.c │ ├── snd_mp3.h │ ├── snd_mp3tag.c │ ├── snd_mpg123.c │ ├── snd_null.c │ ├── snd_opus.c │ ├── snd_opus.h │ ├── snd_oss.c │ ├── snd_oss.h │ ├── snd_pci.c │ ├── snd_pci.h │ ├── snd_sb.c │ ├── snd_sb.h │ ├── snd_sdl.c │ ├── snd_sdl.h │ ├── snd_sun.c │ ├── snd_sun.h │ ├── snd_sys.c │ ├── snd_sys.h │ ├── snd_timidity.c │ ├── snd_timidity.h │ ├── snd_umx.c │ ├── snd_umx.h │ ├── snd_vorbis.c │ ├── snd_vorbis.h │ ├── snd_wave.c │ ├── snd_wave.h │ ├── snd_wildmidi.c │ ├── snd_wildmidi.h │ ├── snd_win.c │ ├── snd_win.h │ ├── snd_xmp.c │ ├── snd_xmp.h │ ├── surf16.asm │ ├── surf8.asm │ ├── sv_model.c │ ├── sv_model.h │ ├── sys.h │ ├── sys_dxe.h │ ├── sys_ia32.asm │ ├── sys_osx.h │ ├── sys_osx.m │ ├── sys_sdl.c │ ├── sys_sdl.h │ ├── userdir.h │ ├── vgamodes.h │ ├── vid.h │ ├── vid_cgx.c │ ├── vid_dos.c │ ├── vid_dos.h │ ├── vid_ext.c │ ├── vid_sdl.c │ ├── vid_svgalib.c │ ├── vid_vga.c │ ├── vid_win.c │ ├── view.h │ ├── vregset.c │ ├── vregset.h │ ├── wad.c │ ├── wad.h │ ├── wgl_func.h │ ├── win32res.rc │ ├── winquake.h │ ├── worlda.asm │ ├── worlda.inc │ ├── xbm_icon.h │ ├── zone.c │ └── zone.h ├── hexen2 │ ├── MacOSX │ │ ├── glhexen2.plist │ │ ├── hexen2.plist │ │ ├── hexen2.xcodeproj │ │ │ └── project.pbxproj │ │ └── xcode24compat.xcodeproj │ │ │ └── project.pbxproj │ ├── Makefile │ ├── Makefile.os2 │ ├── Makefile.svga │ ├── Makefile.wat │ ├── VS2005.zip │ ├── VisualStudio.zip │ ├── bugs.txt │ ├── build_all.sh │ ├── build_cross_aros.sh │ ├── build_cross_aros64.sh │ ├── build_cross_dos.sh │ ├── build_cross_morphos.sh │ ├── build_cross_osx.sh │ ├── build_cross_win32.sh │ ├── build_cross_win64.sh │ ├── chase.c │ ├── cl_cmd.c │ ├── cl_demo.c │ ├── cl_effect.c │ ├── cl_inlude.c │ ├── cl_input.c │ ├── cl_main.c │ ├── cl_parse.c │ ├── cl_string.c │ ├── cl_tent.c │ ├── client.h │ ├── console.c │ ├── dos │ │ ├── dos_sock.h │ │ ├── net_comx.c │ │ ├── net_dos.c │ │ ├── net_ipx.c │ │ ├── net_ipx.h │ │ ├── net_ser.c │ │ └── net_ser.h │ ├── effects.h │ ├── gl_rmain.c │ ├── gl_rmisc.c │ ├── gl_rsurf.c │ ├── host.c │ ├── host.h │ ├── host_cmd.c │ ├── keys.c │ ├── menu.c │ ├── menu.h │ ├── net.h │ ├── net_bsd.c │ ├── net_defs.h │ ├── net_dgrm.c │ ├── net_dgrm.h │ ├── net_loop.c │ ├── net_loop.h │ ├── net_main.c │ ├── net_udp.c │ ├── net_udp.h │ ├── net_win.c │ ├── net_wins.c │ ├── net_wins.h │ ├── net_wipx.c │ ├── net_wipx.h │ ├── particle.h │ ├── progdefs.h │ ├── protocol.h │ ├── quakedef.h │ ├── quakeinc.h │ ├── r_alias.c │ ├── r_main.c │ ├── r_misc.c │ ├── r_part.c │ ├── r_part.h │ ├── render.h │ ├── sbar.c │ ├── server.h │ ├── server │ │ ├── Makefile │ │ ├── Makefile.os2 │ │ ├── Makefile.wat │ │ ├── build_cross_aros.sh │ │ ├── build_cross_aros64.sh │ │ ├── build_cross_dos.sh │ │ ├── build_cross_morphos.sh │ │ ├── build_cross_osx.sh │ │ ├── build_cross_win32.sh │ │ ├── build_cross_win64.sh │ │ ├── dos │ │ │ └── .cvsignore │ │ ├── host.c │ │ ├── host_cmd.c │ │ ├── sys_amiga.c │ │ ├── sys_dos.c │ │ ├── sys_os2.c │ │ ├── sys_unix.c │ │ └── sys_win.c │ ├── sv_effect.c │ ├── sv_main.c │ ├── sv_move.c │ ├── sv_phys.c │ ├── sv_user.c │ ├── sys_amiga.c │ ├── sys_dos.c │ ├── sys_os2.c │ ├── sys_unix.c │ ├── sys_win.c │ ├── view.c │ ├── world.c │ └── world.h ├── hexenworld │ ├── VS2005.zip │ ├── VisualStudio.zip │ ├── build.sh │ ├── build_cross_morphos.sh │ ├── build_cross_win32.sh │ ├── build_cross_win64.sh │ ├── client │ │ ├── Makefile │ │ ├── Makefile.os2 │ │ ├── Makefile.svga │ │ ├── Makefile.wat │ │ ├── build_all.sh │ │ ├── build_cross_aros.sh │ │ ├── build_cross_aros64.sh │ │ ├── build_cross_dos.sh │ │ ├── build_cross_morphos.sh │ │ ├── build_cross_osx.sh │ │ ├── build_cross_win32.sh │ │ ├── build_cross_win64.sh │ │ ├── cl_cam.c │ │ ├── cl_cmd.c │ │ ├── cl_demo.c │ │ ├── cl_effect.c │ │ ├── cl_ents.c │ │ ├── cl_inlude.c │ │ ├── cl_input.c │ │ ├── cl_main.c │ │ ├── cl_parse.c │ │ ├── cl_pred.c │ │ ├── cl_tent.c │ │ ├── client.h │ │ ├── console.c │ │ ├── gl_ngraph.c │ │ ├── gl_rmain.c │ │ ├── gl_rmisc.c │ │ ├── gl_rsurf.c │ │ ├── host.h │ │ ├── keys.c │ │ ├── menu.c │ │ ├── menu.h │ │ ├── particle.h │ │ ├── quakeinc.h │ │ ├── r_alias.c │ │ ├── r_main.c │ │ ├── r_misc.c │ │ ├── r_part.c │ │ ├── r_part.h │ │ ├── render.h │ │ ├── sbar.c │ │ ├── skin.c │ │ ├── sys_amiga.c │ │ ├── sys_dos.c │ │ ├── sys_os2.c │ │ ├── sys_unix.c │ │ ├── sys_win.c │ │ └── view.c │ ├── server │ │ ├── Makefile │ │ ├── Makefile.os2 │ │ ├── Makefile.wat │ │ ├── build_cross_aros.sh │ │ ├── build_cross_aros64.sh │ │ ├── build_cross_dos.sh │ │ ├── build_cross_morphos.sh │ │ ├── build_cross_osx.sh │ │ ├── build_cross_win32.sh │ │ ├── build_cross_win64.sh │ │ ├── host.h │ │ ├── qwsvinc.h │ │ ├── server.h │ │ ├── sv_ccmds.c │ │ ├── sv_effect.c │ │ ├── sv_ents.c │ │ ├── sv_init.c │ │ ├── sv_main.c │ │ ├── sv_move.c │ │ ├── sv_phys.c │ │ ├── sv_send.c │ │ ├── sv_user.c │ │ ├── sys_amiga.c │ │ ├── sys_dos.c │ │ ├── sys_os2.c │ │ ├── sys_unix.c │ │ ├── sys_win.c │ │ ├── world.c │ │ └── world.h │ └── shared │ │ ├── effects.h │ │ ├── hufffreq.h │ │ ├── huffman.c │ │ ├── huffman.h │ │ ├── info_str.c │ │ ├── info_str.h │ │ ├── net.h │ │ ├── net_chan.c │ │ ├── net_udp.c │ │ ├── pmove.c │ │ ├── pmove.h │ │ ├── pmovetst.c │ │ ├── progdefs.h │ │ ├── protocol.h │ │ └── quakedef.h └── resource │ ├── h2_os2.ico │ ├── h2mp.ico │ ├── h2mp.xbm │ ├── hexen2.bmp │ ├── hexen2.icns │ ├── hexen2.ico │ ├── hexen2.png │ ├── hexen2.xbm │ ├── hexen2n.png │ ├── hexen2n.xcf │ ├── hexenworld.bmp │ ├── hexenworld.icns │ ├── hexenworld.ico │ ├── hexenworld.png │ ├── hexenworld.xbm │ ├── hw_os2.ico │ ├── mp_os2.ico │ ├── net.sourceforge.uhexen2.uhexen2.desktop │ └── net.sourceforge.uhexen2.uhexen2.metainfo.xml ├── gamecode ├── COMPILE ├── README ├── devel │ ├── buddha.txt │ ├── eidolon.txt │ ├── mezzoman.txt │ ├── objectives_sorted_by_index.txt │ ├── objectives_sorted_by_map.txt │ └── romeric5_tree.txt ├── hc-unused │ ├── README │ ├── hw │ │ ├── ai2.hc │ │ ├── assassin.hc │ │ ├── assweap.hc │ │ ├── boulder.hc │ │ ├── bridge.hc │ │ ├── cameraMG.hc │ │ ├── catapult.hc │ │ ├── crusader.hc │ │ ├── cube.hc │ │ ├── defs.hc │ │ ├── demon.hc │ │ ├── dthfire.hc │ │ ├── enforcer.hc │ │ ├── entity2.hc │ │ ├── flames.hc │ │ ├── gib.hc │ │ ├── glyph.hc │ │ ├── golem_b.hc │ │ ├── golem_i.hc │ │ ├── golem_s.hc │ │ ├── grenade2.hc │ │ ├── hamthrow.hc │ │ ├── holotic.hc │ │ ├── horse.hc │ │ ├── ice_imp.hc │ │ ├── iceshot.hc │ │ ├── javelin.hc │ │ ├── medusa2.hc │ │ ├── messages.hc │ │ ├── mirage.hc │ │ ├── necro.hc │ │ ├── necspell.hc │ │ ├── newai.hc │ │ ├── newfunc.hc │ │ ├── newimp.hc │ │ ├── ogre.hc │ │ ├── paladin.hc │ │ ├── progs2.src │ │ ├── psthorse.hc │ │ ├── reflect.hc │ │ ├── shield.hc │ │ ├── sprites.hc │ │ ├── testweap.hc │ │ ├── warrider.hc │ │ ├── window.hc │ │ └── xray.hc │ ├── portals │ │ ├── assassin.hc │ │ ├── boulder.hc │ │ ├── bridge.hc │ │ ├── cameraMG.hc │ │ ├── catapult.hc │ │ ├── crusader.hc │ │ ├── dthfire.hc │ │ ├── flames.hc │ │ ├── glyph.hc │ │ ├── hurter.hc │ │ ├── messages.hc │ │ ├── mirage.hc │ │ ├── necro.hc │ │ ├── newai.hc │ │ ├── newfunc.hc │ │ ├── newimp.hc │ │ ├── paladin.hc │ │ ├── reflect.hc │ │ ├── shield.hc │ │ ├── sprites.hc │ │ ├── sspike.hc │ │ ├── t_head.hc │ │ └── testweap.hc │ └── siege │ │ ├── ai2.hc │ │ ├── amtest.hc │ │ ├── assassin.hc │ │ ├── assweap.hc │ │ ├── boss.hc │ │ ├── boulder.hc │ │ ├── bridge.hc │ │ ├── cameraMG.hc │ │ ├── catapult.hc │ │ ├── crusader.hc │ │ ├── cube.hc │ │ ├── defs.hc │ │ ├── demon.hc │ │ ├── dog.hc │ │ ├── dthfire.hc │ │ ├── dthhorse.hc │ │ ├── eidolon.hc │ │ ├── enforcer.hc │ │ ├── entity2.hc │ │ ├── famhorse.hc │ │ ├── flag.hc │ │ ├── flames.hc │ │ ├── flamswrd.hc │ │ ├── gfire.hc │ │ ├── gib.hc │ │ ├── glyph.hc │ │ ├── golem_b.hc │ │ ├── golem_i.hc │ │ ├── golem_s.hc │ │ ├── grenade2.hc │ │ ├── hamthrow.hc │ │ ├── hknight.hc │ │ ├── holotic.hc │ │ ├── horse.hc │ │ ├── hurter.hc │ │ ├── ice_imp.hc │ │ ├── iceshot.hc │ │ ├── idmodels.hc │ │ ├── javelin.hc │ │ ├── jctest.hc │ │ ├── knight.hc │ │ ├── lonbow.hc │ │ ├── medusa2.hc │ │ ├── messages.hc │ │ ├── mirage.hc │ │ ├── models.hc │ │ ├── necro.hc │ │ ├── necspell.hc │ │ ├── newai.hc │ │ ├── newfunc.hc │ │ ├── newimp.hc │ │ ├── ogre.hc │ │ ├── oldone.hc │ │ ├── paladin.hc │ │ ├── pstboar.hc │ │ ├── psthorse.hc │ │ ├── reflect.hc │ │ ├── rider.hc │ │ ├── shalrath.hc │ │ ├── shambler.hc │ │ ├── shield.hc │ │ ├── siege15.map │ │ ├── siege6.map │ │ ├── siege9.map │ │ ├── siegesrc.txt │ │ ├── soldier.hc │ │ ├── sprites.hc │ │ ├── sspike.hc │ │ ├── tarbaby.hc │ │ ├── testweap.hc │ │ ├── warhorse.hc │ │ ├── warrider.hc │ │ ├── window.hc │ │ ├── wizard.hc │ │ ├── xray.hc │ │ └── zombie.hc ├── hc │ ├── h2 │ │ ├── MG_AI.hc │ │ ├── ai.hc │ │ ├── ai2.hc │ │ ├── allplay.hc │ │ ├── altdeath.hc │ │ ├── archer.hc │ │ ├── artifact.hc │ │ ├── assgren.hc │ │ ├── axe.hc │ │ ├── barrel.hc │ │ ├── boner.hc │ │ ├── breakabl.hc │ │ ├── builtin.hc │ │ ├── buttons.hc │ │ ├── camera.hc │ │ ├── cat2.hc │ │ ├── chunk.hc │ │ ├── client.hc │ │ ├── combat.hc │ │ ├── constant.hc │ │ ├── corpse.hc │ │ ├── crossbow.hc │ │ ├── cube.hc │ │ ├── damage.hc │ │ ├── doors.hc │ │ ├── dthhorse.hc │ │ ├── eidolon.hc │ │ ├── entity.hc │ │ ├── eric.hc │ │ ├── explode.hc │ │ ├── fablade.hc │ │ ├── famhorse.hc │ │ ├── fangel.hc │ │ ├── faspell.hc │ │ ├── fight.hc │ │ ├── fireball.hc │ │ ├── fish.hc │ │ ├── fx.hc │ │ ├── gauntlet.hc │ │ ├── global.hc │ │ ├── golem.hc │ │ ├── head.hc │ │ ├── hydra.hc │ │ ├── icemace.hc │ │ ├── imp.hc │ │ ├── impulse.hc │ │ ├── invntory.hc │ │ ├── items.hc │ │ ├── light.hc │ │ ├── lightning.hc │ │ ├── magicmis.hc │ │ ├── math.hc │ │ ├── medusa.hc │ │ ├── meteor.hc │ │ ├── mezzoman.hc │ │ ├── misc.hc │ │ ├── monsters.hc │ │ ├── mummy.hc │ │ ├── newplay.hc │ │ ├── object.hc │ │ ├── path.hc │ │ ├── plaque.hc │ │ ├── plats.hc │ │ ├── precache.hc │ │ ├── progs.src │ │ ├── progs2.src │ │ ├── projbhvr.hc │ │ ├── proto.hc │ │ ├── pstboar.hc │ │ ├── punchdgr.hc │ │ ├── purifier.hc │ │ ├── quake.hc │ │ ├── rat.hc │ │ ├── raven.hc │ │ ├── ravenai.hc │ │ ├── ravenstf.hc │ │ ├── rider.hc │ │ ├── rings.hc │ │ ├── scorpion.hc │ │ ├── setmodth.hc │ │ ├── setstaff.hc │ │ ├── shardice.hc │ │ ├── sheep.hc │ │ ├── sickle.hc │ │ ├── skullwiz.hc │ │ ├── snake.hc │ │ ├── soul.hc │ │ ├── sound.hc │ │ ├── spawn.hc │ │ ├── specials.hc │ │ ├── spider.hc │ │ ├── spit.hc │ │ ├── stats.hc │ │ ├── strings.hc │ │ ├── subs.hc │ │ ├── sunstaff.hc │ │ ├── torch.hc │ │ ├── triggers.hc │ │ ├── tripmine.hc │ │ ├── vorpal.hc │ │ ├── warhamer.hc │ │ ├── warhorse.hc │ │ ├── waypoint.hc │ │ ├── weapons.hc │ │ ├── weather.hc │ │ ├── world.hc │ │ └── wp_art.hc │ ├── hw │ │ ├── MG_AI.hc │ │ ├── acidorb.hc │ │ ├── ai.hc │ │ ├── allplay.hc │ │ ├── altdeath.hc │ │ ├── archer.hc │ │ ├── artifact.hc │ │ ├── assgren.hc │ │ ├── axe.hc │ │ ├── barrel.hc │ │ ├── bldrain.hc │ │ ├── boner.hc │ │ ├── breakabl.hc │ │ ├── builtin.hc │ │ ├── buttons.hc │ │ ├── camera.hc │ │ ├── cat2.hc │ │ ├── chunk.hc │ │ ├── client.hc │ │ ├── combat.hc │ │ ├── constant.hc │ │ ├── corpse.hc │ │ ├── crossbow.hc │ │ ├── damage.hc │ │ ├── dmlevels.hc │ │ ├── doors.hc │ │ ├── dthhorse.hc │ │ ├── eidolon.hc │ │ ├── entity.hc │ │ ├── eric.hc │ │ ├── explode.hc │ │ ├── fablade.hc │ │ ├── famhorse.hc │ │ ├── fangel.hc │ │ ├── faspell.hc │ │ ├── fight.hc │ │ ├── fireball.hc │ │ ├── fish.hc │ │ ├── flameorb.hc │ │ ├── fx.hc │ │ ├── gauntlet.hc │ │ ├── global.hc │ │ ├── golem.hc │ │ ├── head.hc │ │ ├── hydra.hc │ │ ├── icemace.hc │ │ ├── imp.hc │ │ ├── impulse.hc │ │ ├── invntory.hc │ │ ├── items.hc │ │ ├── light.hc │ │ ├── lightning.hc │ │ ├── lightwp.hc │ │ ├── magicmis.hc │ │ ├── math.hc │ │ ├── medusa.hc │ │ ├── meteor.hc │ │ ├── mezzoman.hc │ │ ├── misc.hc │ │ ├── monsters.hc │ │ ├── mummy.hc │ │ ├── newcube.hc │ │ ├── newplay.hc │ │ ├── object.hc │ │ ├── path.hc │ │ ├── plaque.hc │ │ ├── plats.hc │ │ ├── plats_mp.hc │ │ ├── precache.hc │ │ ├── progs.src │ │ ├── projbhvr.hc │ │ ├── proto.hc │ │ ├── pstboar.hc │ │ ├── punchdgr.hc │ │ ├── purifier.hc │ │ ├── quake.hc │ │ ├── rat.hc │ │ ├── raven.hc │ │ ├── ravenai.hc │ │ ├── ravenstf.hc │ │ ├── rider.hc │ │ ├── rings.hc │ │ ├── scorpion.hc │ │ ├── setmodth.hc │ │ ├── setstaff.hc │ │ ├── shardice.hc │ │ ├── sheep.hc │ │ ├── sickle.hc │ │ ├── skullwiz.hc │ │ ├── snake.hc │ │ ├── soul.hc │ │ ├── sound.hc │ │ ├── spawn.hc │ │ ├── spawner.hc │ │ ├── specials.hc │ │ ├── spectate.hc │ │ ├── spider.hc │ │ ├── spit.hc │ │ ├── stats.hc │ │ ├── strings.hc │ │ ├── subs.hc │ │ ├── sunstaff.hc │ │ ├── torch.hc │ │ ├── triggers.hc │ │ ├── tripmine.hc │ │ ├── vorpal.hc │ │ ├── warhamer.hc │ │ ├── warhorse.hc │ │ ├── waypoint.hc │ │ ├── weapons.hc │ │ ├── weather.hc │ │ ├── world.hc │ │ └── wp_art.hc │ ├── portals │ │ ├── MG_AI.hc │ │ ├── acidorb.hc │ │ ├── ai.hc │ │ ├── allplay.hc │ │ ├── altdeath.hc │ │ ├── archer.hc │ │ ├── artifact.hc │ │ ├── assgren.hc │ │ ├── axe.hc │ │ ├── barrel.hc │ │ ├── bldrain.hc │ │ ├── boner.hc │ │ ├── breakabl.hc │ │ ├── buddha.hc │ │ ├── builtin.hc │ │ ├── buttons.hc │ │ ├── camera.hc │ │ ├── cat2.hc │ │ ├── chunk.hc │ │ ├── client.hc │ │ ├── combat.hc │ │ ├── constant.hc │ │ ├── corpse.hc │ │ ├── crossbow.hc │ │ ├── cube.hc │ │ ├── damage.hc │ │ ├── doors.hc │ │ ├── dthhorse.hc │ │ ├── eidolon.hc │ │ ├── entity.hc │ │ ├── eric.hc │ │ ├── explode.hc │ │ ├── fablade.hc │ │ ├── famhorse.hc │ │ ├── fangel.hc │ │ ├── faspell.hc │ │ ├── fight.hc │ │ ├── fireball.hc │ │ ├── fish.hc │ │ ├── flameorb.hc │ │ ├── fx.hc │ │ ├── gauntlet.hc │ │ ├── global.hc │ │ ├── golem.hc │ │ ├── h3ents.txt │ │ ├── head.hc │ │ ├── hydra.hc │ │ ├── icemace.hc │ │ ├── imp.hc │ │ ├── impulse.hc │ │ ├── invntory.hc │ │ ├── items.hc │ │ ├── light.hc │ │ ├── lightning.hc │ │ ├── lightwp.hc │ │ ├── magicmis.hc │ │ ├── math.hc │ │ ├── medusa.hc │ │ ├── meteor.hc │ │ ├── mezzoman.hc │ │ ├── misc.hc │ │ ├── monsters.hc │ │ ├── mummy.hc │ │ ├── newplay.hc │ │ ├── object.hc │ │ ├── path.hc │ │ ├── pentacles.hc │ │ ├── ph_eido.hc │ │ ├── plaque.hc │ │ ├── plats.hc │ │ ├── plats_mp.hc │ │ ├── precache.hc │ │ ├── progs.src │ │ ├── projbhvr.hc │ │ ├── proto.hc │ │ ├── pstboar.hc │ │ ├── punchdgr.hc │ │ ├── purifier.hc │ │ ├── quake.hc │ │ ├── rat.hc │ │ ├── raven.hc │ │ ├── ravenai.hc │ │ ├── ravenstf.hc │ │ ├── rider.hc │ │ ├── rings.hc │ │ ├── scorpion.hc │ │ ├── setmodth.hc │ │ ├── setstaff.hc │ │ ├── shardice.hc │ │ ├── sheep.hc │ │ ├── sickle.hc │ │ ├── skullwiz.hc │ │ ├── snake.hc │ │ ├── soul.hc │ │ ├── sound.hc │ │ ├── spawn.hc │ │ ├── specials.hc │ │ ├── spider.hc │ │ ├── spit.hc │ │ ├── stats.hc │ │ ├── strings.hc │ │ ├── subs.hc │ │ ├── sunstaff.hc │ │ ├── torch.hc │ │ ├── triggers.hc │ │ ├── tripmine.hc │ │ ├── vorpal.hc │ │ ├── warhamer.hc │ │ ├── warhorse.hc │ │ ├── waypoint.hc │ │ ├── weapons.hc │ │ ├── weather.hc │ │ ├── world.hc │ │ ├── wp_art.hc │ │ └── yakman.hc │ └── siege │ │ ├── MG_AI.hc │ │ ├── acidorb.hc │ │ ├── ai.hc │ │ ├── allplay.hc │ │ ├── altdeath.hc │ │ ├── archer.hc │ │ ├── artifact.hc │ │ ├── assgren.hc │ │ ├── axe.hc │ │ ├── barrel.hc │ │ ├── bldrain.hc │ │ ├── boner.hc │ │ ├── breakabl.hc │ │ ├── builtin.hc │ │ ├── buttons.hc │ │ ├── camera.hc │ │ ├── cat2.hc │ │ ├── chunk.hc │ │ ├── client.hc │ │ ├── combat.hc │ │ ├── constant.hc │ │ ├── corpse.hc │ │ ├── crossbow.hc │ │ ├── damage.hc │ │ ├── dmlevels.hc │ │ ├── doors.hc │ │ ├── entity.hc │ │ ├── eric.hc │ │ ├── explode.hc │ │ ├── fablade.hc │ │ ├── fangel.hc │ │ ├── faspell.hc │ │ ├── fight.hc │ │ ├── fireball.hc │ │ ├── fish.hc │ │ ├── flameorb.hc │ │ ├── fx.hc │ │ ├── gauntlet.hc │ │ ├── global.hc │ │ ├── golem.hc │ │ ├── head.hc │ │ ├── hydra.hc │ │ ├── icemace.hc │ │ ├── imp.hc │ │ ├── impulse.hc │ │ ├── invntory.hc │ │ ├── items.hc │ │ ├── light.hc │ │ ├── lightning.hc │ │ ├── lightwp.hc │ │ ├── magicmis.hc │ │ ├── math.hc │ │ ├── medusa.hc │ │ ├── meteor.hc │ │ ├── mezzoman.hc │ │ ├── misc.hc │ │ ├── monsters.hc │ │ ├── mummy.hc │ │ ├── newcube.hc │ │ ├── newplay.hc │ │ ├── object.hc │ │ ├── path.hc │ │ ├── plaque.hc │ │ ├── plats.hc │ │ ├── plats_mp.hc │ │ ├── precache.hc │ │ ├── progs.src │ │ ├── projbhvr.hc │ │ ├── proto.hc │ │ ├── punchdgr.hc │ │ ├── purifier.hc │ │ ├── quake.hc │ │ ├── rat.hc │ │ ├── raven.hc │ │ ├── ravenai.hc │ │ ├── ravenstf.hc │ │ ├── rings.hc │ │ ├── scorpion.hc │ │ ├── setmodth.hc │ │ ├── setstaff.hc │ │ ├── shardice.hc │ │ ├── sheep.hc │ │ ├── sickle.hc │ │ ├── siege.hc │ │ ├── siegesrc.txt │ │ ├── skullwiz.hc │ │ ├── snake.hc │ │ ├── soul.hc │ │ ├── sound.hc │ │ ├── spawn.hc │ │ ├── spawner.hc │ │ ├── specials.hc │ │ ├── spectate.hc │ │ ├── spells.hc │ │ ├── spider.hc │ │ ├── spit.hc │ │ ├── stats.hc │ │ ├── strings.hc │ │ ├── subs.hc │ │ ├── sunstaff.hc │ │ ├── torch.hc │ │ ├── triggers.hc │ │ ├── tripmine.hc │ │ ├── vorpal.hc │ │ ├── warhamer.hc │ │ ├── waypoint.hc │ │ ├── weapons.hc │ │ ├── weather.hc │ │ ├── world.hc │ │ └── wp_art.hc ├── mapfixes │ ├── data1 │ │ └── maps │ │ │ ├── README.txt │ │ │ ├── cath.ent │ │ │ ├── cath.txt │ │ │ ├── demo2.ent │ │ │ ├── demo2.txt │ │ │ ├── egypt4.ent │ │ │ ├── egypt4.txt │ │ │ ├── egypt5.ent │ │ │ ├── egypt5.txt │ │ │ ├── romeric5.ent │ │ │ ├── romeric5.txt │ │ │ ├── tower.ent │ │ │ └── tower.txt │ └── portals │ │ └── maps │ │ ├── README.txt │ │ ├── tibet2.ent │ │ ├── tibet2.txt │ │ ├── tibet9.ent │ │ └── tibet9.txt ├── patch111 │ ├── data1 │ │ └── .cvsignore │ ├── patchdat.txt │ └── patchdat │ │ └── data1 │ │ ├── data1pk0.xd3 │ │ ├── data1pk1.xd3 │ │ ├── oem08pk0.xd3 │ │ └── oem08pk2.xd3 └── res │ ├── h2 │ ├── default.cfg │ ├── hexen.rc │ └── strings.txt │ ├── hw │ ├── default.cfg │ ├── mapcycle.cfg │ ├── server.cfg │ └── strings.txt │ ├── portals │ ├── default.cfg │ ├── hexen.rc │ ├── infolist.txt │ ├── maplist.txt │ ├── puzzles.txt │ └── strings.txt │ └── siege │ ├── config.cfg │ ├── mapcycle.cfg │ ├── server.cfg │ └── strings.txt ├── h2patch ├── Makefile ├── Makefile.amiga ├── Makefile.darwin ├── Makefile.dj ├── Makefile.emx ├── Makefile.mingw32 ├── Makefile.mingw64 ├── Makefile.os2 ├── Makefile.wat ├── VS2005.zip ├── VisualStudio.zip ├── build_aros.sh ├── build_aros64.sh ├── build_dos.sh ├── build_morphos.sh ├── build_osx.sh ├── build_w32.sh ├── build_w64.sh ├── h2patch.exe.manifest ├── h2patch3.c └── h2patch3.rc ├── hw_utils ├── VS2005.zip ├── VisualStudio.zip ├── hwmaster │ ├── Makefile │ ├── Makefile.os2 │ ├── Makefile.wat │ ├── build_cross_aros.sh │ ├── build_cross_aros64.sh │ ├── build_cross_morphos.sh │ ├── build_cross_osx.sh │ ├── build_cross_win32.sh │ ├── build_cross_win64.sh │ ├── cmd.h │ ├── cmds.c │ ├── common.c │ ├── common.h │ ├── defs.h │ ├── master.c │ ├── msg_io.c │ ├── msg_io.h │ ├── net.c │ ├── net.h │ ├── protocol.h │ ├── server.h │ ├── sizebuf.c │ ├── sizebuf.h │ ├── sys.h │ ├── sys_amiga.c │ ├── sys_os2.c │ ├── sys_unix.c │ └── sys_win.c ├── hwmquery │ ├── Makefile │ ├── Makefile.os2 │ ├── Makefile.wat │ ├── build_cross_aros.sh │ ├── build_cross_aros64.sh │ ├── build_cross_morphos.sh │ ├── build_cross_osx.sh │ ├── build_cross_win32.sh │ ├── build_cross_win64.sh │ ├── hwmquery.c │ └── hwmquery.txt ├── hwrcon │ ├── Makefile │ ├── Makefile.os2 │ ├── Makefile.wat │ ├── build_cross_aros.sh │ ├── build_cross_aros64.sh │ ├── build_cross_morphos.sh │ ├── build_cross_osx.sh │ ├── build_cross_win32.sh │ ├── build_cross_win64.sh │ ├── hufffreq.h │ ├── huffman.c │ ├── huffman.h │ ├── hwrcon.c │ ├── hwrcon.txt │ ├── hwterm.c │ └── hwterm.txt ├── qstat-patch │ └── qstat-2.11-hwmaster.diff └── xqf-patch │ ├── xqf-1.0.5-hwmaster.diff │ ├── xqf-1.0.5-hwrcon.diff │ └── xqf-1.0.6-hwrcon.diff ├── libs ├── timidity │ ├── AUTHORS │ ├── CHANGES │ ├── COPYING │ ├── COPYING.artistic │ ├── Makefile │ ├── Makefile.os2 │ ├── Makefile.wat │ ├── README │ ├── README.timidity │ ├── TODO │ ├── _timi.mak │ ├── build_aros.sh │ ├── build_aros64.sh │ ├── build_dos.sh │ ├── build_morphos.sh │ ├── build_w32.sh │ ├── build_w64.sh │ ├── common.c │ ├── common.h │ ├── instrum.c │ ├── instrum.h │ ├── mix.c │ ├── mix.h │ ├── options.h │ ├── ospaths.h │ ├── output.c │ ├── output.h │ ├── playmidi.c │ ├── playmidi.h │ ├── readmidi.c │ ├── readmidi.h │ ├── resample.c │ ├── resample.h │ ├── stream.c │ ├── tables.c │ ├── tables.h │ ├── timi_endian.h │ ├── timidity.c │ ├── timidity.h │ └── timidity_internal.h └── xdelta3 │ ├── xdelta3-blkcache.h │ ├── xdelta3-config.h │ ├── xdelta3-decode.h │ ├── xdelta3-iface.h │ ├── xdelta3-list.h │ ├── xdelta3-main.h │ ├── xdelta3.c │ ├── xdelta3.h │ └── xdelta3.txt ├── oslibs ├── aros-x86 │ ├── codecs │ │ ├── include │ │ │ ├── FLAC │ │ │ │ ├── callback.h │ │ │ │ ├── export.h │ │ │ │ ├── format.h │ │ │ │ ├── ordinals.h │ │ │ │ └── stream_decoder.h │ │ │ ├── flac_config.txt │ │ │ ├── mad.h │ │ │ ├── ogg │ │ │ │ ├── config_types.h │ │ │ │ ├── ogg.h │ │ │ │ └── os_types.h │ │ │ ├── opus │ │ │ │ ├── opus.h │ │ │ │ ├── opus_defines.h │ │ │ │ ├── opus_multistream.h │ │ │ │ ├── opus_types.h │ │ │ │ └── opusfile.h │ │ │ ├── opusfile.h │ │ │ └── vorbis │ │ │ │ ├── codec.h │ │ │ │ └── vorbisfile.h │ │ └── lib │ │ │ ├── libFLAC.a │ │ │ ├── libmad.a │ │ │ ├── libmad.txt │ │ │ ├── libogg.a │ │ │ ├── libopus.a │ │ │ ├── libopusfile.a │ │ │ ├── libvorbis.a │ │ │ └── libvorbisfile.a │ └── misc │ │ └── include │ │ └── incstack.h ├── aros-x86_64 │ ├── codecs │ │ ├── include │ │ │ ├── FLAC │ │ │ │ ├── callback.h │ │ │ │ ├── export.h │ │ │ │ ├── format.h │ │ │ │ ├── ordinals.h │ │ │ │ └── stream_decoder.h │ │ │ ├── flac_config.txt │ │ │ ├── mad.h │ │ │ ├── ogg │ │ │ │ ├── config_types.h │ │ │ │ ├── ogg.h │ │ │ │ └── os_types.h │ │ │ ├── opus │ │ │ │ ├── opus.h │ │ │ │ ├── opus_defines.h │ │ │ │ ├── opus_multistream.h │ │ │ │ ├── opus_types.h │ │ │ │ └── opusfile.h │ │ │ ├── opusfile.h │ │ │ └── vorbis │ │ │ │ ├── codec.h │ │ │ │ └── vorbisfile.h │ │ └── lib │ │ │ ├── libFLAC.a │ │ │ ├── libmad.a │ │ │ ├── libmad.txt │ │ │ ├── libogg.a │ │ │ ├── libopus.a │ │ │ ├── libopusfile.a │ │ │ ├── libvorbis.a │ │ │ └── libvorbisfile.a │ └── misc │ │ └── include │ │ └── incstack.h ├── dos │ ├── codecs │ │ ├── include │ │ │ ├── mad.h │ │ │ ├── ogg │ │ │ │ ├── config_types.h │ │ │ │ ├── ogg.h │ │ │ │ ├── os_types.diff │ │ │ │ └── os_types.h │ │ │ ├── tremor │ │ │ │ ├── config_types.h │ │ │ │ ├── ivorbiscodec.h │ │ │ │ ├── ivorbisfile.h │ │ │ │ ├── ogg.h │ │ │ │ ├── os_types.diff │ │ │ │ └── os_types.h │ │ │ └── vorbis │ │ │ │ ├── codec.h │ │ │ │ └── vorbisfile.h │ │ └── lib │ │ │ ├── libmad.a │ │ │ ├── libmad.txt │ │ │ ├── libogg.a │ │ │ ├── libogg.txt │ │ │ ├── libvorbis.a │ │ │ ├── libvorbisfile.a │ │ │ ├── libvorbisidec.a │ │ │ └── libvorbisidec.txt │ ├── djlib │ │ ├── COPYING.DJ │ │ └── vsnprntf.c │ ├── djstdint │ │ ├── COPYING.DJ │ │ ├── inttypes.h │ │ └── stdint.h │ ├── djtime │ │ ├── README │ │ ├── asctime.c │ │ ├── ctime.c │ │ ├── ctime_r.c │ │ ├── djtime.a │ │ ├── gettod.c │ │ ├── gmtime.c │ │ ├── mktime.c │ │ ├── strftime.c │ │ ├── time.c │ │ ├── tzname.c │ │ └── tzset.c │ ├── dxe │ │ ├── opengl │ │ │ ├── fxmesa │ │ │ │ └── gl.dxe │ │ │ ├── mesa │ │ │ │ └── gl.dxe │ │ │ ├── opengl.txt │ │ │ └── sage │ │ │ │ ├── gl.dxe │ │ │ │ └── sage.ini │ │ └── voodoo │ │ │ ├── cvg │ │ │ └── glide3x.dxe │ │ │ ├── h3 │ │ │ └── glide3x.dxe │ │ │ ├── h5 │ │ │ └── glide3x.dxe │ │ │ ├── sst1 │ │ │ └── glide3x.dxe │ │ │ ├── sst96 │ │ │ └── glide3x.dxe │ │ │ └── voodoo.txt │ ├── glide3 │ │ ├── include │ │ │ ├── 3dfx.h │ │ │ ├── g3ext.h │ │ │ ├── glide.h │ │ │ ├── glidesys.h │ │ │ ├── glideutl.h │ │ │ └── sst1vid.h │ │ └── lib │ │ │ ├── cvg │ │ │ └── empty │ │ │ ├── h3 │ │ │ └── empty │ │ │ ├── h5 │ │ │ └── empty │ │ │ ├── sst1 │ │ │ └── empty │ │ │ └── sst96 │ │ │ └── empty │ ├── libau │ │ ├── include │ │ │ └── libau.h │ │ ├── lib │ │ │ └── libau.a │ │ ├── sndpci.dxe │ │ └── src │ │ │ ├── Makefile.dj │ │ │ ├── Makefile.wat │ │ │ ├── ac97_def.c │ │ │ ├── ac97_def.h │ │ │ ├── au.c │ │ │ ├── cross_build.sh │ │ │ ├── dpmi_c.c │ │ │ ├── emu10k1.h │ │ │ ├── libau.h │ │ │ ├── libaudef.h │ │ │ ├── mdma.c │ │ │ ├── pcibios.c │ │ │ ├── pcibios.h │ │ │ ├── readme │ │ │ ├── sc_cmi.c │ │ │ ├── sc_e1371.c │ │ │ ├── sc_ich.c │ │ │ ├── sc_inthd.c │ │ │ ├── sc_inthd.h │ │ │ ├── sc_sbl24.c │ │ │ ├── sc_sbl24.h │ │ │ ├── sc_sbliv.c │ │ │ ├── sc_sbliv.h │ │ │ ├── sc_sbxfi.c │ │ │ ├── sc_via82.c │ │ │ └── tim.c │ ├── libwss │ │ ├── COPYING │ │ ├── mk.bat │ │ ├── mktest.bat │ │ ├── test.c │ │ ├── wss.c │ │ └── wss.h │ ├── opengl │ │ ├── include │ │ │ └── GL │ │ │ │ ├── dmesa.h │ │ │ │ ├── fxmesa.h │ │ │ │ ├── gl.h │ │ │ │ ├── glext.h │ │ │ │ └── sage.h │ │ └── lib │ │ │ ├── fxmesa │ │ │ └── empty │ │ │ ├── mesa │ │ │ └── empty │ │ │ └── sage │ │ │ └── empty │ └── watt32 │ │ ├── inc │ │ ├── arpa │ │ │ └── inet.h │ │ ├── copying.bsd │ │ ├── net │ │ │ ├── if.h │ │ │ └── if_arp.h │ │ ├── netdb.h │ │ ├── netinet │ │ │ └── in.h │ │ ├── poll.h │ │ ├── sys │ │ │ ├── cdefs.h │ │ │ ├── djgpp.err │ │ │ ├── errno.h │ │ │ ├── ioctl.h │ │ │ ├── packoff.h │ │ │ ├── packon.h │ │ │ ├── param.h │ │ │ ├── poll.h │ │ │ ├── queue.h │ │ │ ├── select.h │ │ │ ├── socket.h │ │ │ ├── swap.h │ │ │ ├── w32api.h │ │ │ ├── werrno.h │ │ │ ├── wtime.h │ │ │ └── wtypes.h │ │ └── tcp.h │ │ ├── lib │ │ └── libwatt.a │ │ ├── src │ │ ├── config.h │ │ ├── config.h.bak │ │ ├── config.h.dbg │ │ ├── copyrigh.h │ │ ├── djgpp.mak │ │ └── djgpp.mak.bak │ │ └── watt32git.txt ├── macosx │ ├── SDL.framework │ │ ├── Headers │ │ ├── License.rtf │ │ ├── ReadMe.txt │ │ ├── Resources │ │ ├── SDL │ │ ├── UniversalBinaryNotes.rtf │ │ └── Versions │ │ │ ├── A │ │ │ ├── Headers │ │ │ │ ├── SDL.h │ │ │ │ ├── SDL_active.h │ │ │ │ ├── SDL_audio.h │ │ │ │ ├── SDL_byteorder.h │ │ │ │ ├── SDL_cdrom.h │ │ │ │ ├── SDL_config.h │ │ │ │ ├── SDL_config_macosx.h │ │ │ │ ├── SDL_copying.h │ │ │ │ ├── SDL_cpuinfo.h │ │ │ │ ├── SDL_endian.h │ │ │ │ ├── SDL_error.h │ │ │ │ ├── SDL_events.h │ │ │ │ ├── SDL_getenv.h │ │ │ │ ├── SDL_joystick.h │ │ │ │ ├── SDL_keyboard.h │ │ │ │ ├── SDL_keysym.h │ │ │ │ ├── SDL_loadso.h │ │ │ │ ├── SDL_main.h │ │ │ │ ├── SDL_mouse.h │ │ │ │ ├── SDL_mutex.h │ │ │ │ ├── SDL_name.h │ │ │ │ ├── SDL_opengl.h │ │ │ │ ├── SDL_platform.h │ │ │ │ ├── SDL_quit.h │ │ │ │ ├── SDL_rwops.h │ │ │ │ ├── SDL_stdinc.h │ │ │ │ ├── SDL_syswm.h │ │ │ │ ├── SDL_thread.h │ │ │ │ ├── SDL_timer.h │ │ │ │ ├── SDL_types.h │ │ │ │ ├── SDL_version.h │ │ │ │ ├── SDL_video.h │ │ │ │ ├── begin_code.h │ │ │ │ └── close_code.h │ │ │ ├── Resources │ │ │ │ ├── Info.plist │ │ │ │ └── SDLMain.nib │ │ │ │ │ └── objects.nib │ │ │ ├── SDL │ │ │ └── devel-lite │ │ │ │ ├── ReadMeDevLite.txt │ │ │ │ ├── SDLMain.h │ │ │ │ └── SDLMain.m │ │ │ └── Current │ └── codecs │ │ ├── include │ │ ├── FLAC │ │ │ ├── callback.h │ │ │ ├── export.h │ │ │ ├── format.h │ │ │ ├── ordinals.h │ │ │ └── stream_decoder.h │ │ ├── flac_config.txt │ │ ├── mad.h │ │ ├── mikmod.h │ │ ├── mikmod_config.txt │ │ ├── mpg123.h │ │ ├── mpg123_config.txt │ │ ├── ogg │ │ │ ├── config_types.h │ │ │ ├── ogg.h │ │ │ └── os_types.h │ │ ├── opus │ │ │ ├── opus.h │ │ │ ├── opus_defines.h │ │ │ ├── opus_multistream.h │ │ │ ├── opus_types.h │ │ │ └── opusfile.h │ │ ├── opusfile.h │ │ ├── vorbis │ │ │ ├── codec.h │ │ │ └── vorbisfile.h │ │ └── xmp.h │ │ └── lib │ │ ├── libFLAC.dylib │ │ ├── libmad.dylib │ │ ├── libmikmod.dylib │ │ ├── libmpg123.dylib │ │ ├── libogg.dylib │ │ ├── libopus.dylib │ │ ├── libopusfile.dylib │ │ ├── libvorbis.dylib │ │ ├── libvorbisfile.dylib │ │ └── libxmp.dylib ├── morphos │ ├── codecs │ │ ├── include │ │ │ ├── FLAC │ │ │ │ ├── callback.h │ │ │ │ ├── export.h │ │ │ │ ├── format.h │ │ │ │ ├── ordinals.h │ │ │ │ └── stream_decoder.h │ │ │ ├── flac_config.txt │ │ │ ├── mad.h │ │ │ ├── ogg │ │ │ │ ├── config_types.h │ │ │ │ ├── ogg.h │ │ │ │ └── os_types.h │ │ │ ├── opus │ │ │ │ ├── opus.h │ │ │ │ ├── opus_defines.h │ │ │ │ ├── opus_multistream.h │ │ │ │ ├── opus_types.h │ │ │ │ └── opusfile.h │ │ │ ├── opusfile.h │ │ │ └── vorbis │ │ │ │ ├── codec.h │ │ │ │ └── vorbisfile.h │ │ └── lib │ │ │ ├── libFLAC.a │ │ │ ├── libmad.a │ │ │ ├── libmad.txt │ │ │ ├── libogg.a │ │ │ ├── libopus.a │ │ │ ├── libopusfile.a │ │ │ ├── libvorbis.a │ │ │ └── libvorbisfile.a │ └── misc │ │ └── include │ │ ├── SDI │ │ ├── README │ │ ├── SDI_compiler.h │ │ ├── SDI_hook.h │ │ ├── SDI_interrupt.h │ │ ├── SDI_lib.h │ │ ├── SDI_misc.h │ │ └── SDI_stdarg.h │ │ ├── clib │ │ └── camd_protos.h │ │ ├── midi │ │ ├── camd.h │ │ ├── camdbase.h │ │ ├── mididefs.h │ │ └── midiprefs.h │ │ ├── ppcinline │ │ └── camd.h │ │ └── proto │ │ └── camd.h ├── os2 │ ├── SDL │ │ ├── BUGS │ │ ├── COPYING │ │ ├── README-SDL.txt │ │ ├── include │ │ │ ├── SDL.h │ │ │ ├── SDL_active.h │ │ │ ├── SDL_audio.h │ │ │ ├── SDL_byteorder.h │ │ │ ├── SDL_cdrom.h │ │ │ ├── SDL_config.h │ │ │ ├── SDL_config_os2.h │ │ │ ├── SDL_copying.h │ │ │ ├── SDL_cpuinfo.h │ │ │ ├── SDL_endian.h │ │ │ ├── SDL_error.h │ │ │ ├── SDL_events.h │ │ │ ├── SDL_getenv.h │ │ │ ├── SDL_joystick.h │ │ │ ├── SDL_keyboard.h │ │ │ ├── SDL_keysym.h │ │ │ ├── SDL_loadso.h │ │ │ ├── SDL_main.h │ │ │ ├── SDL_mouse.h │ │ │ ├── SDL_mutex.h │ │ │ ├── SDL_name.h │ │ │ ├── SDL_opengl.h │ │ │ ├── SDL_platform.h │ │ │ ├── SDL_quit.h │ │ │ ├── SDL_rwops.h │ │ │ ├── SDL_stdinc.h │ │ │ ├── SDL_syswm.h │ │ │ ├── SDL_thread.h │ │ │ ├── SDL_timer.h │ │ │ ├── SDL_types.h │ │ │ ├── SDL_version.h │ │ │ ├── SDL_video.h │ │ │ ├── begin_code.h │ │ │ └── close_code.h │ │ └── lib │ │ │ ├── SDL12.a │ │ │ ├── SDL12.dll │ │ │ ├── SDL12.imp │ │ │ └── SDL12.lib │ ├── codecs │ │ ├── include │ │ │ ├── FLAC │ │ │ │ ├── callback.h │ │ │ │ ├── export.h │ │ │ │ ├── format.h │ │ │ │ ├── ordinals.h │ │ │ │ └── stream_decoder.h │ │ │ ├── mad.h │ │ │ ├── mikmod.h │ │ │ ├── mpg123.h │ │ │ ├── ogg │ │ │ │ ├── config_types.h │ │ │ │ ├── ogg.h │ │ │ │ └── os_types.h │ │ │ ├── opus │ │ │ │ ├── opus.h │ │ │ │ ├── opus_defines.h │ │ │ │ ├── opus_multistream.h │ │ │ │ ├── opus_types.h │ │ │ │ └── opusfile.h │ │ │ ├── opusfile.h │ │ │ ├── timidity.h │ │ │ ├── tremor │ │ │ │ ├── config_types.h │ │ │ │ ├── ivorbiscodec.h │ │ │ │ ├── ivorbisfile.h │ │ │ │ ├── ogg.h │ │ │ │ └── os_types.h │ │ │ ├── vorbis │ │ │ │ ├── codec.h │ │ │ │ └── vorbisfile.h │ │ │ └── xmp.h │ │ └── lib │ │ │ ├── FLAC.a │ │ │ ├── FLAC.lib │ │ │ ├── libxmp.lib │ │ │ ├── mad.a │ │ │ ├── mad.lib │ │ │ ├── mikmod.a │ │ │ ├── mikmod.lib │ │ │ ├── mpg123.lib │ │ │ ├── ogg.a │ │ │ ├── ogg.lib │ │ │ ├── opus.a │ │ │ ├── opus.lib │ │ │ ├── opusfile.a │ │ │ ├── opusfile.lib │ │ │ ├── timidity.a │ │ │ ├── timidity.lib │ │ │ ├── vorbis.a │ │ │ ├── vorbis.lib │ │ │ ├── vorbisfile.a │ │ │ ├── vorbisfile.lib │ │ │ ├── vorbisidec.a │ │ │ ├── vorbisidec.lib │ │ │ ├── vorbisidec.txt │ │ │ └── xmp.a │ └── emx │ │ └── include │ │ ├── inttypes.h │ │ └── stdint.h └── windows │ ├── SDL │ ├── BUGS │ ├── COPYING │ ├── README-SDL.txt │ ├── bin │ │ └── sdl-config │ ├── include │ │ ├── SDL.h │ │ ├── SDL_active.h │ │ ├── SDL_audio.h │ │ ├── SDL_byteorder.h │ │ ├── SDL_cdrom.h │ │ ├── SDL_config.h │ │ ├── SDL_config_win32.h │ │ ├── SDL_copying.h │ │ ├── SDL_cpuinfo.h │ │ ├── SDL_endian.h │ │ ├── SDL_error.h │ │ ├── SDL_events.h │ │ ├── SDL_getenv.h │ │ ├── SDL_joystick.h │ │ ├── SDL_keyboard.h │ │ ├── SDL_keysym.h │ │ ├── SDL_loadso.h │ │ ├── SDL_main.h │ │ ├── SDL_mouse.h │ │ ├── SDL_mutex.h │ │ ├── SDL_name.h │ │ ├── SDL_opengl.h │ │ ├── SDL_platform.h │ │ ├── SDL_quit.h │ │ ├── SDL_rwops.h │ │ ├── SDL_stdinc.h │ │ ├── SDL_syswm.h │ │ ├── SDL_thread.h │ │ ├── SDL_timer.h │ │ ├── SDL_types.h │ │ ├── SDL_version.h │ │ ├── SDL_video.h │ │ ├── begin_code.h │ │ └── close_code.h │ ├── lib │ │ ├── SDL.dll │ │ ├── SDL.lib │ │ ├── SDLmain.lib │ │ ├── libSDL.dll.a │ │ └── libSDLmain.a │ ├── lib64 │ │ ├── SDL.dll │ │ ├── SDL.lib │ │ ├── SDLmain.lib │ │ ├── libSDL.dll.a │ │ └── libSDLmain.a │ ├── main │ │ └── SDL_win32_main.c │ └── watcom │ │ ├── SDL.def │ │ ├── SDL.exp │ │ ├── SDL.lib │ │ ├── def2lbc.awk │ │ └── makefile │ ├── codecs │ ├── include │ │ ├── FLAC │ │ │ ├── callback.h │ │ │ ├── export.h │ │ │ ├── format.h │ │ │ ├── ordinals.h │ │ │ └── stream_decoder.h │ │ ├── flac_config.txt │ │ ├── mad.h │ │ ├── mikmod.h │ │ ├── mikmod_config.txt │ │ ├── mpg123.h │ │ ├── mpg123_config.txt │ │ ├── ogg │ │ │ ├── config_types.h │ │ │ ├── ogg.h │ │ │ └── os_types.h │ │ ├── opus │ │ │ ├── opus.h │ │ │ ├── opus_defines.h │ │ │ ├── opus_multistream.h │ │ │ ├── opus_types.h │ │ │ └── opusfile.h │ │ ├── opusfile.h │ │ ├── tremor │ │ │ ├── config_types.h │ │ │ ├── ivorbiscodec.h │ │ │ ├── ivorbisfile.h │ │ │ ├── ogg.h │ │ │ └── os_types.h │ │ ├── vorbis │ │ │ ├── codec.h │ │ │ └── vorbisfile.h │ │ └── xmp.h │ ├── x64 │ │ ├── libFLAC-8.dll │ │ ├── libFLAC.dll.a │ │ ├── libFLAC.lib │ │ ├── libmad-0.dll │ │ ├── libmad.dll.a │ │ ├── libmad.lib │ │ ├── libmikmod-3.dll │ │ ├── libmikmod.dll.a │ │ ├── libmikmod.lib │ │ ├── libmpg123-0.dll │ │ ├── libmpg123.dll.a │ │ ├── libmpg123.lib │ │ ├── libogg-0.dll │ │ ├── libogg.dll.a │ │ ├── libogg.lib │ │ ├── libopus-0.dll │ │ ├── libopus.dll.a │ │ ├── libopus.lib │ │ ├── libopusfile-0.dll │ │ ├── libopusfile.dll.a │ │ ├── libopusfile.lib │ │ ├── libvorbis-0.dll │ │ ├── libvorbis.dll.a │ │ ├── libvorbis.lib │ │ ├── libvorbisfile-3.dll │ │ ├── libvorbisfile.dll.a │ │ ├── libvorbisfile.lib │ │ ├── libxmp.dll │ │ ├── libxmp.dll.a │ │ └── libxmp.lib │ ├── x86-watcom │ │ ├── FLAC.lib │ │ ├── libxmp.lib │ │ ├── mad.lib │ │ ├── mikmod.lib │ │ ├── mpg123.lib │ │ ├── ogg.lib │ │ ├── opus.lib │ │ ├── opusfile.lib │ │ ├── timidity.lib │ │ ├── vorbis.lib │ │ ├── vorbisfile.lib │ │ ├── vorbisidec.lib │ │ └── vorbisidec.txt │ └── x86 │ │ ├── libFLAC-8.dll │ │ ├── libFLAC.dll.a │ │ ├── libFLAC.lib │ │ ├── libmad-0.dll │ │ ├── libmad.dll.a │ │ ├── libmad.lib │ │ ├── libmikmod-3.dll │ │ ├── libmikmod.dll.a │ │ ├── libmikmod.lib │ │ ├── libmpg123-0.dll │ │ ├── libmpg123.dll.a │ │ ├── libmpg123.lib │ │ ├── libogg-0.dll │ │ ├── libogg.dll.a │ │ ├── libogg.lib │ │ ├── libopus-0.dll │ │ ├── libopus.dll.a │ │ ├── libopus.lib │ │ ├── libopusfile-0.dll │ │ ├── libopusfile.dll.a │ │ ├── libopusfile.lib │ │ ├── libvorbis-0.dll │ │ ├── libvorbis.dll.a │ │ ├── libvorbis.lib │ │ ├── libvorbisfile-3.dll │ │ ├── libvorbisfile.dll.a │ │ ├── libvorbisfile.lib │ │ ├── libxmp.dll │ │ ├── libxmp.dll.a │ │ └── libxmp.lib │ ├── dxsdk │ ├── include │ │ ├── _mingw_dxhelper.h │ │ ├── ddraw.h │ │ ├── dinput.h │ │ └── dsound.h │ ├── src │ │ ├── ddraw-x64.def │ │ ├── ddraw-x86.def │ │ ├── dinput-x64.def │ │ ├── dinput-x86.def │ │ ├── dinput_joy.c │ │ ├── dinput_joy2.c │ │ ├── dinput_kbd.c │ │ ├── dinput_mouse.c │ │ ├── dinput_mouse2.c │ │ ├── dinput_private.h │ │ ├── dsound-x64.def │ │ ├── dsound-x86.def │ │ └── dxguid.c │ ├── x64 │ │ ├── ddraw.lib │ │ ├── dinput.lib │ │ ├── dsound.lib │ │ ├── dxguid.lib │ │ ├── libddraw.a │ │ ├── libdinput.a │ │ ├── libdsound.a │ │ └── libdxguid.a │ └── x86 │ │ ├── ddraw.lib │ │ ├── dinput.lib │ │ ├── dsound.lib │ │ ├── dxguid.lib │ │ ├── libddraw.a │ │ ├── libdinput.a │ │ ├── libdsound.a │ │ └── libdxguid.a │ ├── misc │ ├── include │ │ ├── io_msvc.h │ │ ├── msinttypes │ │ │ ├── README.txt │ │ │ ├── changelog.txt │ │ │ ├── inttypes.h │ │ │ └── stdint.h │ │ └── wsaerror.h │ ├── x64 │ │ └── .cvsignore │ └── x86 │ │ └── .cvsignore │ ├── nasm │ ├── nasm.rules │ └── visualstudio.txt │ └── yasm │ ├── visualstudio.txt │ ├── vs2010 │ ├── readme.txt │ ├── vsyasm.props │ ├── vsyasm.targets │ └── vsyasm.xml │ └── yasm.rules ├── patches ├── FLT_MAX.patch ├── README ├── computed_goto.patch ├── glfog-test1.patch ├── hexen2_platforms.patch ├── hexen2_single_prog.patch ├── hexenworld_compile_bossmaps.patch ├── maplist.txt ├── sdl2.patch ├── software_scale2d.patch └── syntax_checking.patch ├── rpm └── hexen2.spec ├── scripts ├── ax_pthread.m4 ├── ccase.sh ├── cdrip_hexen2.sh ├── cdrip_hexen2_matroxm3d.sh ├── cdrip_hexen2_xplosiv.sh ├── cdrip_missionpack.sh ├── config.guess ├── config.sub ├── cross_defs.aros ├── cross_defs.aros64 ├── cross_defs.dj ├── cross_defs.morphos ├── cross_defs.w32 ├── cross_defs.w64 ├── detect.sh ├── gcc-version.sh ├── hexen2-run.sh ├── makefile.inc ├── mk_header.c ├── pthread.sh └── systest.c └── utils ├── README ├── VS2005.zip ├── VisualStudio.zip ├── bsp2map ├── Makefile ├── Makefile.os2 ├── Makefile.wat ├── bsp2map.c ├── bsp2map.txt ├── build_cross_aros.sh ├── build_cross_aros64.sh ├── build_cross_dos.sh ├── build_cross_morphos.sh ├── build_cross_osx.sh ├── build_cross_win32.sh └── build_cross_win64.sh ├── bspinfo ├── Makefile ├── Makefile.os2 ├── Makefile.wat ├── bspinfo.c ├── build_cross_aros.sh ├── build_cross_aros64.sh ├── build_cross_dos.sh ├── build_cross_morphos.sh ├── build_cross_osx.sh ├── build_cross_win32.sh └── build_cross_win64.sh ├── build.sh ├── build_cross_win32.sh ├── build_cross_win64.sh ├── common ├── bspfile.c ├── byteordr.c ├── byteordr.h ├── cmdlib.c ├── cmdlib.h ├── mathlib.c ├── mathlib.h ├── pathutil.c ├── pathutil.h ├── qdir.c ├── qdir.h ├── scriplib.c ├── scriplib.h ├── threads.c ├── threads.h ├── util_io.c └── util_io.h ├── dcc ├── Makefile ├── Makefile.os2 ├── Makefile.wat ├── README ├── build_cross_aros.sh ├── build_cross_aros64.sh ├── build_cross_dos.sh ├── build_cross_morphos.sh ├── build_cross_osx.sh ├── build_cross_win32.sh ├── build_cross_win64.sh ├── dcc.c ├── dcc.h ├── dcc.txt ├── hcc.c ├── pr_comp.c ├── pr_lex.c └── qcc.h ├── genmodel ├── Makefile ├── Makefile.os2 ├── Makefile.wat ├── build_cross_aros.sh ├── build_cross_aros64.sh ├── build_cross_dos.sh ├── build_cross_morphos.sh ├── build_cross_osx.sh ├── build_cross_win32.sh ├── build_cross_win64.sh ├── genmodel.c ├── loadtri.c ├── loadtri.h ├── token.c └── token.h ├── hcc ├── Makefile ├── Makefile.os2 ├── Makefile.wat ├── README ├── build_cross_aros.sh ├── build_cross_aros64.sh ├── build_cross_dos.sh ├── build_cross_morphos.sh ├── build_cross_osx.sh ├── build_cross_win32.sh ├── build_cross_win64.sh ├── crchash.c ├── crchash.h ├── expr.c ├── hcc.c ├── hcc.h ├── pr_comp.c ├── pr_lex.c └── stmt.c ├── jsh2color ├── ChangeLog ├── Makefile ├── Makefile.os2 ├── Makefile.wat ├── README ├── build_cross_aros.sh ├── build_cross_aros64.sh ├── build_cross_dos.sh ├── build_cross_morphos.sh ├── build_cross_osx.sh ├── build_cross_win32.sh ├── build_cross_win64.sh ├── data_unix │ ├── colour.sh │ ├── colourCastle.sh │ ├── colourDm.sh │ ├── colourEgypt.sh │ ├── colourMeso.sh │ ├── colourRomeric.sh │ ├── default.def │ ├── hexen2.def │ ├── hexen2castle.def │ ├── hexen2egypt.def │ ├── hexen2meso.def │ └── hexen2romeric.def ├── data_win │ ├── colour.bat │ ├── colourCastle.bat │ ├── colourDm.bat │ ├── colourEgypt.bat │ ├── colourMeso.bat │ ├── colourRomeric.bat │ ├── default.def │ ├── hexen2.def │ ├── hexen2castle.def │ ├── hexen2egypt.def │ ├── hexen2meso.def │ └── hexen2romeric.def ├── entities.c ├── entities.h ├── jscolor.c ├── jscolor.h ├── litfile.c ├── litfile.h ├── ltface.c ├── orig_docs │ ├── JsColour.txt │ ├── JsH2Colour.txt │ ├── MHColour.txt │ └── tyrlite.txt ├── trace.c ├── tyrlite.c └── tyrlite.h ├── light ├── Makefile ├── Makefile.os2 ├── Makefile.wat ├── build_cross_aros.sh ├── build_cross_aros64.sh ├── build_cross_dos.sh ├── build_cross_morphos.sh ├── build_cross_osx.sh ├── build_cross_win32.sh ├── build_cross_win64.sh ├── entities.c ├── entities.h ├── light.c ├── light.h ├── ltface.c └── trace.c ├── mapsrc ├── compile.sh ├── getwad.sh ├── hour04-0.map ├── worldmix.map └── worldmix.txt ├── pak ├── Makefile ├── Makefile.os2 ├── Makefile.wat ├── build_cross_aros.sh ├── build_cross_aros64.sh ├── build_cross_dos.sh ├── build_cross_morphos.sh ├── build_cross_osx.sh ├── build_cross_win32.sh ├── build_cross_win64.sh ├── pak.h ├── pakfile.c ├── paklist.c └── pakx.c ├── qbsp ├── Makefile ├── Makefile.os2 ├── Makefile.wat ├── brush.c ├── bsp5.h ├── build_cross_aros.sh ├── build_cross_aros64.sh ├── build_cross_dos.sh ├── build_cross_morphos.sh ├── build_cross_osx.sh ├── build_cross_win32.sh ├── build_cross_win64.sh ├── csg4.c ├── entmap.c ├── map.c ├── map.h ├── merge.c ├── nodraw.c ├── outside.c ├── portals.c ├── qbsp.c ├── region.c ├── solidbsp.c ├── surfaces.c ├── tjunc.c └── writebsp.c ├── qfiles ├── Makefile ├── Makefile.os2 ├── Makefile.wat ├── build_cross_aros.sh ├── build_cross_aros64.sh ├── build_cross_dos.sh ├── build_cross_morphos.sh ├── build_cross_osx.sh ├── build_cross_win32.sh ├── build_cross_win64.sh └── qfiles.c ├── texutils ├── bsp2wal │ ├── Makefile │ ├── Makefile.os2 │ ├── Makefile.wat │ ├── bsp2wal.c │ ├── build_cross_aros.sh │ ├── build_cross_aros64.sh │ ├── build_cross_dos.sh │ ├── build_cross_morphos.sh │ ├── build_cross_osx.sh │ ├── build_cross_win32.sh │ └── build_cross_win64.sh ├── lmp2pcx │ ├── Makefile │ ├── Makefile.os2 │ ├── Makefile.wat │ ├── build_cross_aros.sh │ ├── build_cross_aros64.sh │ ├── build_cross_dos.sh │ ├── build_cross_morphos.sh │ ├── build_cross_osx.sh │ ├── build_cross_win32.sh │ ├── build_cross_win64.sh │ ├── hexen2pal.h │ ├── lmp2pcx.c │ └── quakepal.h └── palette │ ├── README │ ├── colormap.lmp │ ├── gimp │ └── Hexen2 │ ├── hexen2pal.h │ ├── palette.lbm │ ├── palette.lmp │ └── psp │ └── Hexen2.pal └── vis ├── Makefile ├── Makefile.os2 ├── Makefile.wat ├── build_cross_aros.sh ├── build_cross_aros64.sh ├── build_cross_dos.sh ├── build_cross_morphos.sh ├── build_cross_osx.sh ├── build_cross_win32.sh ├── build_cross_win64.sh ├── flow.c ├── soundpvs.c ├── vis.c └── vis.h /.gitattributes: -------------------------------------------------------------------------------- 1 | *.hc linguist-language=HexenC 2 | -------------------------------------------------------------------------------- /README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/README.txt -------------------------------------------------------------------------------- /common/adivtab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/common/adivtab.h -------------------------------------------------------------------------------- /common/anorms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/common/anorms.h -------------------------------------------------------------------------------- /common/arch_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/common/arch_def.h -------------------------------------------------------------------------------- /common/bspfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/common/bspfile.h -------------------------------------------------------------------------------- /common/compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/common/compiler.h -------------------------------------------------------------------------------- /common/crc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/common/crc.c -------------------------------------------------------------------------------- /common/crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/common/crc.h -------------------------------------------------------------------------------- /common/filenames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/common/filenames.h -------------------------------------------------------------------------------- /common/genmodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/common/genmodel.h -------------------------------------------------------------------------------- /common/hwal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/common/hwal.h -------------------------------------------------------------------------------- /common/midifile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/common/midifile.h -------------------------------------------------------------------------------- /common/net_sys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/common/net_sys.h -------------------------------------------------------------------------------- /common/pakfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/common/pakfile.h -------------------------------------------------------------------------------- /common/pr_comp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/common/pr_comp.h -------------------------------------------------------------------------------- /common/q_ctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/common/q_ctype.h -------------------------------------------------------------------------------- /common/q_endian.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/common/q_endian.c -------------------------------------------------------------------------------- /common/q_endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/common/q_endian.h -------------------------------------------------------------------------------- /common/q_stdinc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/common/q_stdinc.h -------------------------------------------------------------------------------- /common/q_stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/common/q_stdint.h -------------------------------------------------------------------------------- /common/qsnprint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/common/qsnprint.c -------------------------------------------------------------------------------- /common/qsnprint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/common/qsnprint.h -------------------------------------------------------------------------------- /common/spritegn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/common/spritegn.h -------------------------------------------------------------------------------- /common/strl_fn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/common/strl_fn.h -------------------------------------------------------------------------------- /common/strlcat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/common/strlcat.c -------------------------------------------------------------------------------- /common/strlcpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/common/strlcpy.c -------------------------------------------------------------------------------- /docs/ABOUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/docs/ABOUT -------------------------------------------------------------------------------- /docs/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/docs/AUTHORS -------------------------------------------------------------------------------- /docs/BUGS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/docs/BUGS -------------------------------------------------------------------------------- /docs/COMPILE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/docs/COMPILE -------------------------------------------------------------------------------- /docs/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/docs/COPYING -------------------------------------------------------------------------------- /docs/Features: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/docs/Features -------------------------------------------------------------------------------- /docs/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/docs/README -------------------------------------------------------------------------------- /docs/README.3dfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/docs/README.3dfx -------------------------------------------------------------------------------- /docs/README.AoT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/docs/README.AoT -------------------------------------------------------------------------------- /docs/README.dos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/docs/README.dos -------------------------------------------------------------------------------- /docs/README.hwcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/docs/README.hwcl -------------------------------------------------------------------------------- /docs/README.hwmaster: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/docs/README.hwmaster -------------------------------------------------------------------------------- /docs/README.hwsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/docs/README.hwsv -------------------------------------------------------------------------------- /docs/README.music: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/docs/README.music -------------------------------------------------------------------------------- /docs/README.win32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/docs/README.win32 -------------------------------------------------------------------------------- /docs/ReleaseNotes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/docs/ReleaseNotes -------------------------------------------------------------------------------- /docs/ReleaseNotes.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/docs/ReleaseNotes.old -------------------------------------------------------------------------------- /docs/SrcNotes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/docs/SrcNotes.txt -------------------------------------------------------------------------------- /docs/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/docs/TODO -------------------------------------------------------------------------------- /engine/h2shared/SDLMain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/SDLMain.h -------------------------------------------------------------------------------- /engine/h2shared/SDLMain.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/SDLMain.m -------------------------------------------------------------------------------- /engine/h2shared/SDLMain.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/SDLMain.patch -------------------------------------------------------------------------------- /engine/h2shared/alsa_funcs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/alsa_funcs.h -------------------------------------------------------------------------------- /engine/h2shared/anorm_dots.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/anorm_dots.h -------------------------------------------------------------------------------- /engine/h2shared/asm_nasm.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/asm_nasm.inc -------------------------------------------------------------------------------- /engine/h2shared/bgmnull.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/bgmnull.c -------------------------------------------------------------------------------- /engine/h2shared/bgmusic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/bgmusic.c -------------------------------------------------------------------------------- /engine/h2shared/bgmusic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/bgmusic.h -------------------------------------------------------------------------------- /engine/h2shared/bgmusic.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/bgmusic.old -------------------------------------------------------------------------------- /engine/h2shared/cd_amiga.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/cd_amiga.c -------------------------------------------------------------------------------- /engine/h2shared/cd_bsd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/cd_bsd.c -------------------------------------------------------------------------------- /engine/h2shared/cd_dos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/cd_dos.c -------------------------------------------------------------------------------- /engine/h2shared/cd_linux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/cd_linux.c -------------------------------------------------------------------------------- /engine/h2shared/cd_null.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/cd_null.c -------------------------------------------------------------------------------- /engine/h2shared/cd_sdl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/cd_sdl.c -------------------------------------------------------------------------------- /engine/h2shared/cd_unix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/cd_unix.h -------------------------------------------------------------------------------- /engine/h2shared/cd_win.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/cd_win.c -------------------------------------------------------------------------------- /engine/h2shared/cdaudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/cdaudio.h -------------------------------------------------------------------------------- /engine/h2shared/cfgfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/cfgfile.c -------------------------------------------------------------------------------- /engine/h2shared/cfgfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/cfgfile.h -------------------------------------------------------------------------------- /engine/h2shared/cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/cmd.c -------------------------------------------------------------------------------- /engine/h2shared/cmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/cmd.h -------------------------------------------------------------------------------- /engine/h2shared/common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/common.c -------------------------------------------------------------------------------- /engine/h2shared/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/common.h -------------------------------------------------------------------------------- /engine/h2shared/console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/console.h -------------------------------------------------------------------------------- /engine/h2shared/cvar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/cvar.c -------------------------------------------------------------------------------- /engine/h2shared/cvar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/cvar.h -------------------------------------------------------------------------------- /engine/h2shared/d_copy.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/d_copy.asm -------------------------------------------------------------------------------- /engine/h2shared/d_draw.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/d_draw.asm -------------------------------------------------------------------------------- /engine/h2shared/d_draw16.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/d_draw16.asm -------------------------------------------------------------------------------- /engine/h2shared/d_draw16t.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/d_draw16t.asm -------------------------------------------------------------------------------- /engine/h2shared/d_edge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/d_edge.c -------------------------------------------------------------------------------- /engine/h2shared/d_fill.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/d_fill.c -------------------------------------------------------------------------------- /engine/h2shared/d_iface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/d_iface.h -------------------------------------------------------------------------------- /engine/h2shared/d_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/d_init.c -------------------------------------------------------------------------------- /engine/h2shared/d_local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/d_local.h -------------------------------------------------------------------------------- /engine/h2shared/d_modech.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/d_modech.c -------------------------------------------------------------------------------- /engine/h2shared/d_part.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/d_part.c -------------------------------------------------------------------------------- /engine/h2shared/d_parta.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/d_parta.asm -------------------------------------------------------------------------------- /engine/h2shared/d_partb.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/d_partb.asm -------------------------------------------------------------------------------- /engine/h2shared/d_polysa.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/d_polysa.asm -------------------------------------------------------------------------------- /engine/h2shared/d_polysa.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/d_polysa.inc -------------------------------------------------------------------------------- /engine/h2shared/d_polysa2.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/d_polysa2.asm -------------------------------------------------------------------------------- /engine/h2shared/d_polysa3.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/d_polysa3.asm -------------------------------------------------------------------------------- /engine/h2shared/d_polysa4.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/d_polysa4.asm -------------------------------------------------------------------------------- /engine/h2shared/d_polysa5.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/d_polysa5.asm -------------------------------------------------------------------------------- /engine/h2shared/d_polyse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/d_polyse.c -------------------------------------------------------------------------------- /engine/h2shared/d_scan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/d_scan.c -------------------------------------------------------------------------------- /engine/h2shared/d_scana.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/d_scana.asm -------------------------------------------------------------------------------- /engine/h2shared/d_sky.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/d_sky.c -------------------------------------------------------------------------------- /engine/h2shared/d_spr8.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/d_spr8.asm -------------------------------------------------------------------------------- /engine/h2shared/d_spr8t.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/d_spr8t.asm -------------------------------------------------------------------------------- /engine/h2shared/d_spr8t2.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/d_spr8t2.asm -------------------------------------------------------------------------------- /engine/h2shared/d_sprite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/d_sprite.c -------------------------------------------------------------------------------- /engine/h2shared/d_surf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/d_surf.c -------------------------------------------------------------------------------- /engine/h2shared/d_vars.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/d_vars.c -------------------------------------------------------------------------------- /engine/h2shared/d_varsa.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/d_varsa.asm -------------------------------------------------------------------------------- /engine/h2shared/d_zpoint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/d_zpoint.c -------------------------------------------------------------------------------- /engine/h2shared/debuglog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/debuglog.c -------------------------------------------------------------------------------- /engine/h2shared/debuglog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/debuglog.h -------------------------------------------------------------------------------- /engine/h2shared/dos_dmesa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/dos_dmesa.c -------------------------------------------------------------------------------- /engine/h2shared/dos_fxmesa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/dos_fxmesa.c -------------------------------------------------------------------------------- /engine/h2shared/dos_sage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/dos_sage.c -------------------------------------------------------------------------------- /engine/h2shared/dos_v2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/dos_v2.c -------------------------------------------------------------------------------- /engine/h2shared/dosasm.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/dosasm.asm -------------------------------------------------------------------------------- /engine/h2shared/dosisms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/dosisms.h -------------------------------------------------------------------------------- /engine/h2shared/draw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/draw.c -------------------------------------------------------------------------------- /engine/h2shared/draw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/draw.h -------------------------------------------------------------------------------- /engine/h2shared/dxe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/dxe.c -------------------------------------------------------------------------------- /engine/h2shared/fx_gamma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/fx_gamma.c -------------------------------------------------------------------------------- /engine/h2shared/fx_gamma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/fx_gamma.h -------------------------------------------------------------------------------- /engine/h2shared/gl_dos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/gl_dos.h -------------------------------------------------------------------------------- /engine/h2shared/gl_draw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/gl_draw.c -------------------------------------------------------------------------------- /engine/h2shared/gl_func.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/gl_func.h -------------------------------------------------------------------------------- /engine/h2shared/gl_mesh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/gl_mesh.c -------------------------------------------------------------------------------- /engine/h2shared/gl_model.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/gl_model.c -------------------------------------------------------------------------------- /engine/h2shared/gl_model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/gl_model.h -------------------------------------------------------------------------------- /engine/h2shared/gl_refrag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/gl_refrag.c -------------------------------------------------------------------------------- /engine/h2shared/gl_rlight.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/gl_rlight.c -------------------------------------------------------------------------------- /engine/h2shared/gl_screen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/gl_screen.c -------------------------------------------------------------------------------- /engine/h2shared/gl_vidamiga.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/gl_vidamiga.c -------------------------------------------------------------------------------- /engine/h2shared/gl_viddos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/gl_viddos.c -------------------------------------------------------------------------------- /engine/h2shared/gl_vidnt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/gl_vidnt.c -------------------------------------------------------------------------------- /engine/h2shared/gl_vidsdl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/gl_vidsdl.c -------------------------------------------------------------------------------- /engine/h2shared/gl_warp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/gl_warp.c -------------------------------------------------------------------------------- /engine/h2shared/gl_warp_sin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/gl_warp_sin.h -------------------------------------------------------------------------------- /engine/h2shared/glheader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/glheader.h -------------------------------------------------------------------------------- /engine/h2shared/glquake.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/glquake.h -------------------------------------------------------------------------------- /engine/h2shared/h2config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/h2config.h -------------------------------------------------------------------------------- /engine/h2shared/hashindex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/hashindex.c -------------------------------------------------------------------------------- /engine/h2shared/hashindex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/hashindex.h -------------------------------------------------------------------------------- /engine/h2shared/host_string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/host_string.c -------------------------------------------------------------------------------- /engine/h2shared/host_string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/host_string.h -------------------------------------------------------------------------------- /engine/h2shared/in_amiga.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/in_amiga.c -------------------------------------------------------------------------------- /engine/h2shared/in_dos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/in_dos.c -------------------------------------------------------------------------------- /engine/h2shared/in_sdl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/in_sdl.c -------------------------------------------------------------------------------- /engine/h2shared/in_svgalib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/in_svgalib.c -------------------------------------------------------------------------------- /engine/h2shared/in_win.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/in_win.c -------------------------------------------------------------------------------- /engine/h2shared/input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/input.h -------------------------------------------------------------------------------- /engine/h2shared/keys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/keys.h -------------------------------------------------------------------------------- /engine/h2shared/link_ops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/link_ops.c -------------------------------------------------------------------------------- /engine/h2shared/link_ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/link_ops.h -------------------------------------------------------------------------------- /engine/h2shared/masm/ftol.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/masm/ftol.asm -------------------------------------------------------------------------------- /engine/h2shared/masm/math.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/masm/math.asm -------------------------------------------------------------------------------- /engine/h2shared/math.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/math.asm -------------------------------------------------------------------------------- /engine/h2shared/mathlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/mathlib.c -------------------------------------------------------------------------------- /engine/h2shared/mathlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/mathlib.h -------------------------------------------------------------------------------- /engine/h2shared/mid2strm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/mid2strm.c -------------------------------------------------------------------------------- /engine/h2shared/mid2strm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/mid2strm.h -------------------------------------------------------------------------------- /engine/h2shared/midi_camd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/midi_camd.c -------------------------------------------------------------------------------- /engine/h2shared/midi_drv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/midi_drv.h -------------------------------------------------------------------------------- /engine/h2shared/midi_mac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/midi_mac.c -------------------------------------------------------------------------------- /engine/h2shared/midi_nul.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/midi_nul.c -------------------------------------------------------------------------------- /engine/h2shared/midi_osx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/midi_osx.c -------------------------------------------------------------------------------- /engine/h2shared/midi_win.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/midi_win.c -------------------------------------------------------------------------------- /engine/h2shared/model.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/model.c -------------------------------------------------------------------------------- /engine/h2shared/model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/model.h -------------------------------------------------------------------------------- /engine/h2shared/msg_io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/msg_io.c -------------------------------------------------------------------------------- /engine/h2shared/msg_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/msg_io.h -------------------------------------------------------------------------------- /engine/h2shared/no_dxe.c: -------------------------------------------------------------------------------- 1 | void Sys_InitDXE3(void) { 2 | } 3 | -------------------------------------------------------------------------------- /engine/h2shared/pr_cmds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/pr_cmds.c -------------------------------------------------------------------------------- /engine/h2shared/pr_edict.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/pr_edict.c -------------------------------------------------------------------------------- /engine/h2shared/pr_exec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/pr_exec.c -------------------------------------------------------------------------------- /engine/h2shared/printsys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/printsys.h -------------------------------------------------------------------------------- /engine/h2shared/progs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/progs.h -------------------------------------------------------------------------------- /engine/h2shared/q_sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/q_sound.h -------------------------------------------------------------------------------- /engine/h2shared/quakefs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/quakefs.c -------------------------------------------------------------------------------- /engine/h2shared/quakefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/quakefs.h -------------------------------------------------------------------------------- /engine/h2shared/r_aclip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/r_aclip.c -------------------------------------------------------------------------------- /engine/h2shared/r_aclipa.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/r_aclipa.asm -------------------------------------------------------------------------------- /engine/h2shared/r_aliasa.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/r_aliasa.asm -------------------------------------------------------------------------------- /engine/h2shared/r_bsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/r_bsp.c -------------------------------------------------------------------------------- /engine/h2shared/r_draw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/r_draw.c -------------------------------------------------------------------------------- /engine/h2shared/r_drawa.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/r_drawa.asm -------------------------------------------------------------------------------- /engine/h2shared/r_edge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/r_edge.c -------------------------------------------------------------------------------- /engine/h2shared/r_edgea.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/r_edgea.asm -------------------------------------------------------------------------------- /engine/h2shared/r_edgeb.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/r_edgeb.asm -------------------------------------------------------------------------------- /engine/h2shared/r_efrag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/r_efrag.c -------------------------------------------------------------------------------- /engine/h2shared/r_light.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/r_light.c -------------------------------------------------------------------------------- /engine/h2shared/r_local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/r_local.h -------------------------------------------------------------------------------- /engine/h2shared/r_shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/r_shared.h -------------------------------------------------------------------------------- /engine/h2shared/r_sky.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/r_sky.c -------------------------------------------------------------------------------- /engine/h2shared/r_sprite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/r_sprite.c -------------------------------------------------------------------------------- /engine/h2shared/r_surf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/r_surf.c -------------------------------------------------------------------------------- /engine/h2shared/r_vars.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/r_vars.c -------------------------------------------------------------------------------- /engine/h2shared/r_varsa.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/r_varsa.asm -------------------------------------------------------------------------------- /engine/h2shared/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/resource.h -------------------------------------------------------------------------------- /engine/h2shared/sbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/sbar.h -------------------------------------------------------------------------------- /engine/h2shared/screen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/screen.c -------------------------------------------------------------------------------- /engine/h2shared/screen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/screen.h -------------------------------------------------------------------------------- /engine/h2shared/sdl_inc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/sdl_inc.h -------------------------------------------------------------------------------- /engine/h2shared/sincos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/sincos.h -------------------------------------------------------------------------------- /engine/h2shared/sizebuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/sizebuf.c -------------------------------------------------------------------------------- /engine/h2shared/sizebuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/sizebuf.h -------------------------------------------------------------------------------- /engine/h2shared/snd_ahi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/snd_ahi.c -------------------------------------------------------------------------------- /engine/h2shared/snd_ahi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/snd_ahi.h -------------------------------------------------------------------------------- /engine/h2shared/snd_alsa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/snd_alsa.c -------------------------------------------------------------------------------- /engine/h2shared/snd_alsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/snd_alsa.h -------------------------------------------------------------------------------- /engine/h2shared/snd_codec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/snd_codec.c -------------------------------------------------------------------------------- /engine/h2shared/snd_codec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/snd_codec.h -------------------------------------------------------------------------------- /engine/h2shared/snd_codeci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/snd_codeci.h -------------------------------------------------------------------------------- /engine/h2shared/snd_dma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/snd_dma.c -------------------------------------------------------------------------------- /engine/h2shared/snd_dsound.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/snd_dsound.c -------------------------------------------------------------------------------- /engine/h2shared/snd_dsound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/snd_dsound.h -------------------------------------------------------------------------------- /engine/h2shared/snd_flac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/snd_flac.c -------------------------------------------------------------------------------- /engine/h2shared/snd_flac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/snd_flac.h -------------------------------------------------------------------------------- /engine/h2shared/snd_gus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/snd_gus.c -------------------------------------------------------------------------------- /engine/h2shared/snd_gus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/snd_gus.h -------------------------------------------------------------------------------- /engine/h2shared/snd_mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/snd_mem.c -------------------------------------------------------------------------------- /engine/h2shared/snd_mikmod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/snd_mikmod.c -------------------------------------------------------------------------------- /engine/h2shared/snd_mikmod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/snd_mikmod.h -------------------------------------------------------------------------------- /engine/h2shared/snd_mix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/snd_mix.c -------------------------------------------------------------------------------- /engine/h2shared/snd_mixa.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/snd_mixa.asm -------------------------------------------------------------------------------- /engine/h2shared/snd_modplug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/snd_modplug.c -------------------------------------------------------------------------------- /engine/h2shared/snd_modplug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/snd_modplug.h -------------------------------------------------------------------------------- /engine/h2shared/snd_mp3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/snd_mp3.c -------------------------------------------------------------------------------- /engine/h2shared/snd_mp3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/snd_mp3.h -------------------------------------------------------------------------------- /engine/h2shared/snd_mp3tag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/snd_mp3tag.c -------------------------------------------------------------------------------- /engine/h2shared/snd_mpg123.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/snd_mpg123.c -------------------------------------------------------------------------------- /engine/h2shared/snd_null.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/snd_null.c -------------------------------------------------------------------------------- /engine/h2shared/snd_opus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/snd_opus.c -------------------------------------------------------------------------------- /engine/h2shared/snd_opus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/snd_opus.h -------------------------------------------------------------------------------- /engine/h2shared/snd_oss.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/snd_oss.c -------------------------------------------------------------------------------- /engine/h2shared/snd_oss.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/snd_oss.h -------------------------------------------------------------------------------- /engine/h2shared/snd_pci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/snd_pci.c -------------------------------------------------------------------------------- /engine/h2shared/snd_pci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/snd_pci.h -------------------------------------------------------------------------------- /engine/h2shared/snd_sb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/snd_sb.c -------------------------------------------------------------------------------- /engine/h2shared/snd_sb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/snd_sb.h -------------------------------------------------------------------------------- /engine/h2shared/snd_sdl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/snd_sdl.c -------------------------------------------------------------------------------- /engine/h2shared/snd_sdl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/snd_sdl.h -------------------------------------------------------------------------------- /engine/h2shared/snd_sun.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/snd_sun.c -------------------------------------------------------------------------------- /engine/h2shared/snd_sun.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/snd_sun.h -------------------------------------------------------------------------------- /engine/h2shared/snd_sys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/snd_sys.c -------------------------------------------------------------------------------- /engine/h2shared/snd_sys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/snd_sys.h -------------------------------------------------------------------------------- /engine/h2shared/snd_umx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/snd_umx.c -------------------------------------------------------------------------------- /engine/h2shared/snd_umx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/snd_umx.h -------------------------------------------------------------------------------- /engine/h2shared/snd_vorbis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/snd_vorbis.c -------------------------------------------------------------------------------- /engine/h2shared/snd_vorbis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/snd_vorbis.h -------------------------------------------------------------------------------- /engine/h2shared/snd_wave.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/snd_wave.c -------------------------------------------------------------------------------- /engine/h2shared/snd_wave.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/snd_wave.h -------------------------------------------------------------------------------- /engine/h2shared/snd_win.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/snd_win.c -------------------------------------------------------------------------------- /engine/h2shared/snd_win.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/snd_win.h -------------------------------------------------------------------------------- /engine/h2shared/snd_xmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/snd_xmp.c -------------------------------------------------------------------------------- /engine/h2shared/snd_xmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/snd_xmp.h -------------------------------------------------------------------------------- /engine/h2shared/surf16.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/surf16.asm -------------------------------------------------------------------------------- /engine/h2shared/surf8.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/surf8.asm -------------------------------------------------------------------------------- /engine/h2shared/sv_model.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/sv_model.c -------------------------------------------------------------------------------- /engine/h2shared/sv_model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/sv_model.h -------------------------------------------------------------------------------- /engine/h2shared/sys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/sys.h -------------------------------------------------------------------------------- /engine/h2shared/sys_dxe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/sys_dxe.h -------------------------------------------------------------------------------- /engine/h2shared/sys_ia32.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/sys_ia32.asm -------------------------------------------------------------------------------- /engine/h2shared/sys_osx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/sys_osx.h -------------------------------------------------------------------------------- /engine/h2shared/sys_osx.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/sys_osx.m -------------------------------------------------------------------------------- /engine/h2shared/sys_sdl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/sys_sdl.c -------------------------------------------------------------------------------- /engine/h2shared/sys_sdl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/sys_sdl.h -------------------------------------------------------------------------------- /engine/h2shared/userdir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/userdir.h -------------------------------------------------------------------------------- /engine/h2shared/vgamodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/vgamodes.h -------------------------------------------------------------------------------- /engine/h2shared/vid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/vid.h -------------------------------------------------------------------------------- /engine/h2shared/vid_cgx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/vid_cgx.c -------------------------------------------------------------------------------- /engine/h2shared/vid_dos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/vid_dos.c -------------------------------------------------------------------------------- /engine/h2shared/vid_dos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/vid_dos.h -------------------------------------------------------------------------------- /engine/h2shared/vid_ext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/vid_ext.c -------------------------------------------------------------------------------- /engine/h2shared/vid_sdl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/vid_sdl.c -------------------------------------------------------------------------------- /engine/h2shared/vid_svgalib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/vid_svgalib.c -------------------------------------------------------------------------------- /engine/h2shared/vid_vga.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/vid_vga.c -------------------------------------------------------------------------------- /engine/h2shared/vid_win.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/vid_win.c -------------------------------------------------------------------------------- /engine/h2shared/view.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/view.h -------------------------------------------------------------------------------- /engine/h2shared/vregset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/vregset.c -------------------------------------------------------------------------------- /engine/h2shared/vregset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/vregset.h -------------------------------------------------------------------------------- /engine/h2shared/wad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/wad.c -------------------------------------------------------------------------------- /engine/h2shared/wad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/wad.h -------------------------------------------------------------------------------- /engine/h2shared/wgl_func.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/wgl_func.h -------------------------------------------------------------------------------- /engine/h2shared/win32res.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/win32res.rc -------------------------------------------------------------------------------- /engine/h2shared/winquake.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/winquake.h -------------------------------------------------------------------------------- /engine/h2shared/worlda.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/worlda.asm -------------------------------------------------------------------------------- /engine/h2shared/worlda.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/worlda.inc -------------------------------------------------------------------------------- /engine/h2shared/xbm_icon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/xbm_icon.h -------------------------------------------------------------------------------- /engine/h2shared/zone.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/zone.c -------------------------------------------------------------------------------- /engine/h2shared/zone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/h2shared/zone.h -------------------------------------------------------------------------------- /engine/hexen2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/hexen2/Makefile -------------------------------------------------------------------------------- /engine/hexen2/Makefile.os2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/hexen2/Makefile.os2 -------------------------------------------------------------------------------- /engine/hexen2/Makefile.svga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/hexen2/Makefile.svga -------------------------------------------------------------------------------- /engine/hexen2/Makefile.wat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/hexen2/Makefile.wat -------------------------------------------------------------------------------- /engine/hexen2/VS2005.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/hexen2/VS2005.zip -------------------------------------------------------------------------------- /engine/hexen2/bugs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/hexen2/bugs.txt -------------------------------------------------------------------------------- /engine/hexen2/build_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/hexen2/build_all.sh -------------------------------------------------------------------------------- /engine/hexen2/chase.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/hexen2/chase.c -------------------------------------------------------------------------------- /engine/hexen2/cl_cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/hexen2/cl_cmd.c -------------------------------------------------------------------------------- /engine/hexen2/cl_demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/hexen2/cl_demo.c -------------------------------------------------------------------------------- /engine/hexen2/cl_effect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/hexen2/cl_effect.c -------------------------------------------------------------------------------- /engine/hexen2/cl_inlude.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/hexen2/cl_inlude.c -------------------------------------------------------------------------------- /engine/hexen2/cl_input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/hexen2/cl_input.c -------------------------------------------------------------------------------- /engine/hexen2/cl_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/hexen2/cl_main.c -------------------------------------------------------------------------------- /engine/hexen2/cl_parse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/hexen2/cl_parse.c -------------------------------------------------------------------------------- /engine/hexen2/cl_string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/hexen2/cl_string.c -------------------------------------------------------------------------------- /engine/hexen2/cl_tent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/hexen2/cl_tent.c -------------------------------------------------------------------------------- /engine/hexen2/client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/hexen2/client.h -------------------------------------------------------------------------------- /engine/hexen2/console.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/hexen2/console.c -------------------------------------------------------------------------------- /engine/hexen2/dos/dos_sock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/hexen2/dos/dos_sock.h -------------------------------------------------------------------------------- /engine/hexen2/dos/net_comx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/hexen2/dos/net_comx.c -------------------------------------------------------------------------------- /engine/hexen2/dos/net_dos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/hexen2/dos/net_dos.c -------------------------------------------------------------------------------- /engine/hexen2/dos/net_ipx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/hexen2/dos/net_ipx.c -------------------------------------------------------------------------------- /engine/hexen2/dos/net_ipx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/hexen2/dos/net_ipx.h -------------------------------------------------------------------------------- /engine/hexen2/dos/net_ser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/hexen2/dos/net_ser.c -------------------------------------------------------------------------------- /engine/hexen2/dos/net_ser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/hexen2/dos/net_ser.h -------------------------------------------------------------------------------- /engine/hexen2/effects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/hexen2/effects.h -------------------------------------------------------------------------------- /engine/hexen2/gl_rmain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/hexen2/gl_rmain.c -------------------------------------------------------------------------------- /engine/hexen2/gl_rmisc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/hexen2/gl_rmisc.c -------------------------------------------------------------------------------- /engine/hexen2/gl_rsurf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/hexen2/gl_rsurf.c -------------------------------------------------------------------------------- /engine/hexen2/host.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/hexen2/host.c -------------------------------------------------------------------------------- /engine/hexen2/host.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/hexen2/host.h -------------------------------------------------------------------------------- /engine/hexen2/host_cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/hexen2/host_cmd.c -------------------------------------------------------------------------------- /engine/hexen2/keys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/hexen2/keys.c -------------------------------------------------------------------------------- /engine/hexen2/menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/hexen2/menu.c -------------------------------------------------------------------------------- /engine/hexen2/menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/hexen2/menu.h -------------------------------------------------------------------------------- /engine/hexen2/net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/hexen2/net.h -------------------------------------------------------------------------------- /engine/hexen2/net_bsd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/hexen2/net_bsd.c -------------------------------------------------------------------------------- /engine/hexen2/net_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/hexen2/net_defs.h -------------------------------------------------------------------------------- /engine/hexen2/net_dgrm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/hexen2/net_dgrm.c -------------------------------------------------------------------------------- /engine/hexen2/net_dgrm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/hexen2/net_dgrm.h -------------------------------------------------------------------------------- /engine/hexen2/net_loop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/hexen2/net_loop.c -------------------------------------------------------------------------------- /engine/hexen2/net_loop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/hexen2/net_loop.h -------------------------------------------------------------------------------- /engine/hexen2/net_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/hexen2/net_main.c -------------------------------------------------------------------------------- /engine/hexen2/net_udp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/hexen2/net_udp.c -------------------------------------------------------------------------------- /engine/hexen2/net_udp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/hexen2/net_udp.h -------------------------------------------------------------------------------- /engine/hexen2/net_win.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/hexen2/net_win.c -------------------------------------------------------------------------------- /engine/hexen2/net_wins.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/hexen2/net_wins.c -------------------------------------------------------------------------------- /engine/hexen2/net_wins.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/hexen2/net_wins.h -------------------------------------------------------------------------------- /engine/hexen2/net_wipx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/hexen2/net_wipx.c -------------------------------------------------------------------------------- /engine/hexen2/net_wipx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/hexen2/net_wipx.h -------------------------------------------------------------------------------- /engine/hexen2/particle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/hexen2/particle.h -------------------------------------------------------------------------------- /engine/hexen2/progdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/hexen2/progdefs.h -------------------------------------------------------------------------------- /engine/hexen2/protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/hexen2/protocol.h -------------------------------------------------------------------------------- /engine/hexen2/quakedef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/hexen2/quakedef.h -------------------------------------------------------------------------------- /engine/hexen2/quakeinc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/hexen2/quakeinc.h -------------------------------------------------------------------------------- /engine/hexen2/r_alias.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/hexen2/r_alias.c -------------------------------------------------------------------------------- /engine/hexen2/r_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/hexen2/r_main.c -------------------------------------------------------------------------------- /engine/hexen2/r_misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/hexen2/r_misc.c -------------------------------------------------------------------------------- /engine/hexen2/r_part.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/hexen2/r_part.c -------------------------------------------------------------------------------- /engine/hexen2/r_part.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/hexen2/r_part.h -------------------------------------------------------------------------------- /engine/hexen2/render.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/hexen2/render.h -------------------------------------------------------------------------------- /engine/hexen2/sbar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/hexen2/sbar.c -------------------------------------------------------------------------------- /engine/hexen2/server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/hexen2/server.h -------------------------------------------------------------------------------- /engine/hexen2/server/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/hexen2/server/Makefile -------------------------------------------------------------------------------- /engine/hexen2/server/dos/.cvsignore: -------------------------------------------------------------------------------- 1 | *.o 2 | *.a 3 | -------------------------------------------------------------------------------- /engine/hexen2/server/host.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/hexen2/server/host.c -------------------------------------------------------------------------------- /engine/hexen2/sv_effect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/hexen2/sv_effect.c -------------------------------------------------------------------------------- /engine/hexen2/sv_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/hexen2/sv_main.c -------------------------------------------------------------------------------- /engine/hexen2/sv_move.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/hexen2/sv_move.c -------------------------------------------------------------------------------- /engine/hexen2/sv_phys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/hexen2/sv_phys.c -------------------------------------------------------------------------------- /engine/hexen2/sv_user.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/hexen2/sv_user.c -------------------------------------------------------------------------------- /engine/hexen2/sys_amiga.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/hexen2/sys_amiga.c -------------------------------------------------------------------------------- /engine/hexen2/sys_dos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/hexen2/sys_dos.c -------------------------------------------------------------------------------- /engine/hexen2/sys_os2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/hexen2/sys_os2.c -------------------------------------------------------------------------------- /engine/hexen2/sys_unix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/hexen2/sys_unix.c -------------------------------------------------------------------------------- /engine/hexen2/sys_win.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/hexen2/sys_win.c -------------------------------------------------------------------------------- /engine/hexen2/view.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/hexen2/view.c -------------------------------------------------------------------------------- /engine/hexen2/world.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/hexen2/world.c -------------------------------------------------------------------------------- /engine/hexen2/world.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/hexen2/world.h -------------------------------------------------------------------------------- /engine/hexenworld/VS2005.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/hexenworld/VS2005.zip -------------------------------------------------------------------------------- /engine/hexenworld/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/hexenworld/build.sh -------------------------------------------------------------------------------- /engine/resource/h2_os2.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/resource/h2_os2.ico -------------------------------------------------------------------------------- /engine/resource/h2mp.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/resource/h2mp.ico -------------------------------------------------------------------------------- /engine/resource/h2mp.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/resource/h2mp.xbm -------------------------------------------------------------------------------- /engine/resource/hexen2.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/resource/hexen2.bmp -------------------------------------------------------------------------------- /engine/resource/hexen2.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/resource/hexen2.icns -------------------------------------------------------------------------------- /engine/resource/hexen2.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/resource/hexen2.ico -------------------------------------------------------------------------------- /engine/resource/hexen2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/resource/hexen2.png -------------------------------------------------------------------------------- /engine/resource/hexen2.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/resource/hexen2.xbm -------------------------------------------------------------------------------- /engine/resource/hexen2n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/resource/hexen2n.png -------------------------------------------------------------------------------- /engine/resource/hexen2n.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/resource/hexen2n.xcf -------------------------------------------------------------------------------- /engine/resource/hw_os2.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/resource/hw_os2.ico -------------------------------------------------------------------------------- /engine/resource/mp_os2.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/engine/resource/mp_os2.ico -------------------------------------------------------------------------------- /gamecode/COMPILE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/COMPILE -------------------------------------------------------------------------------- /gamecode/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/README -------------------------------------------------------------------------------- /gamecode/devel/buddha.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/devel/buddha.txt -------------------------------------------------------------------------------- /gamecode/devel/eidolon.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/devel/eidolon.txt -------------------------------------------------------------------------------- /gamecode/devel/mezzoman.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/devel/mezzoman.txt -------------------------------------------------------------------------------- /gamecode/hc-unused/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc-unused/README -------------------------------------------------------------------------------- /gamecode/hc-unused/hw/ai2.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc-unused/hw/ai2.hc -------------------------------------------------------------------------------- /gamecode/hc-unused/hw/cube.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc-unused/hw/cube.hc -------------------------------------------------------------------------------- /gamecode/hc-unused/hw/defs.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc-unused/hw/defs.hc -------------------------------------------------------------------------------- /gamecode/hc-unused/hw/entity2.hc: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /gamecode/hc-unused/hw/gib.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc-unused/hw/gib.hc -------------------------------------------------------------------------------- /gamecode/hc-unused/hw/holotic.hc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gamecode/hc-unused/hw/ice_imp.hc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gamecode/hc-unused/hw/medusa2.hc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gamecode/hc-unused/hw/ogre.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc-unused/hw/ogre.hc -------------------------------------------------------------------------------- /gamecode/hc-unused/siege/entity2.hc: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /gamecode/hc-unused/siege/holotic.hc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gamecode/hc-unused/siege/ice_imp.hc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gamecode/hc-unused/siege/lonbow.hc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gamecode/hc-unused/siege/medusa2.hc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gamecode/hc/h2/MG_AI.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/h2/MG_AI.hc -------------------------------------------------------------------------------- /gamecode/hc/h2/ai.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/h2/ai.hc -------------------------------------------------------------------------------- /gamecode/hc/h2/ai2.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/h2/ai2.hc -------------------------------------------------------------------------------- /gamecode/hc/h2/allplay.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/h2/allplay.hc -------------------------------------------------------------------------------- /gamecode/hc/h2/altdeath.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/h2/altdeath.hc -------------------------------------------------------------------------------- /gamecode/hc/h2/archer.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/h2/archer.hc -------------------------------------------------------------------------------- /gamecode/hc/h2/artifact.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/h2/artifact.hc -------------------------------------------------------------------------------- /gamecode/hc/h2/assgren.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/h2/assgren.hc -------------------------------------------------------------------------------- /gamecode/hc/h2/axe.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/h2/axe.hc -------------------------------------------------------------------------------- /gamecode/hc/h2/barrel.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/h2/barrel.hc -------------------------------------------------------------------------------- /gamecode/hc/h2/boner.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/h2/boner.hc -------------------------------------------------------------------------------- /gamecode/hc/h2/breakabl.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/h2/breakabl.hc -------------------------------------------------------------------------------- /gamecode/hc/h2/builtin.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/h2/builtin.hc -------------------------------------------------------------------------------- /gamecode/hc/h2/buttons.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/h2/buttons.hc -------------------------------------------------------------------------------- /gamecode/hc/h2/camera.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/h2/camera.hc -------------------------------------------------------------------------------- /gamecode/hc/h2/cat2.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/h2/cat2.hc -------------------------------------------------------------------------------- /gamecode/hc/h2/chunk.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/h2/chunk.hc -------------------------------------------------------------------------------- /gamecode/hc/h2/client.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/h2/client.hc -------------------------------------------------------------------------------- /gamecode/hc/h2/combat.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/h2/combat.hc -------------------------------------------------------------------------------- /gamecode/hc/h2/constant.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/h2/constant.hc -------------------------------------------------------------------------------- /gamecode/hc/h2/corpse.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/h2/corpse.hc -------------------------------------------------------------------------------- /gamecode/hc/h2/crossbow.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/h2/crossbow.hc -------------------------------------------------------------------------------- /gamecode/hc/h2/cube.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/h2/cube.hc -------------------------------------------------------------------------------- /gamecode/hc/h2/damage.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/h2/damage.hc -------------------------------------------------------------------------------- /gamecode/hc/h2/doors.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/h2/doors.hc -------------------------------------------------------------------------------- /gamecode/hc/h2/dthhorse.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/h2/dthhorse.hc -------------------------------------------------------------------------------- /gamecode/hc/h2/eidolon.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/h2/eidolon.hc -------------------------------------------------------------------------------- /gamecode/hc/h2/entity.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/h2/entity.hc -------------------------------------------------------------------------------- /gamecode/hc/h2/eric.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/h2/eric.hc -------------------------------------------------------------------------------- /gamecode/hc/h2/explode.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/h2/explode.hc -------------------------------------------------------------------------------- /gamecode/hc/h2/fablade.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/h2/fablade.hc -------------------------------------------------------------------------------- /gamecode/hc/h2/famhorse.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/h2/famhorse.hc -------------------------------------------------------------------------------- /gamecode/hc/h2/fangel.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/h2/fangel.hc -------------------------------------------------------------------------------- /gamecode/hc/h2/faspell.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/h2/faspell.hc -------------------------------------------------------------------------------- /gamecode/hc/h2/fight.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/h2/fight.hc -------------------------------------------------------------------------------- /gamecode/hc/h2/fireball.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/h2/fireball.hc -------------------------------------------------------------------------------- /gamecode/hc/h2/fish.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/h2/fish.hc -------------------------------------------------------------------------------- /gamecode/hc/h2/fx.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/h2/fx.hc -------------------------------------------------------------------------------- /gamecode/hc/h2/gauntlet.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/h2/gauntlet.hc -------------------------------------------------------------------------------- /gamecode/hc/h2/global.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/h2/global.hc -------------------------------------------------------------------------------- /gamecode/hc/h2/golem.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/h2/golem.hc -------------------------------------------------------------------------------- /gamecode/hc/h2/head.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/h2/head.hc -------------------------------------------------------------------------------- /gamecode/hc/h2/hydra.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/h2/hydra.hc -------------------------------------------------------------------------------- /gamecode/hc/h2/icemace.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/h2/icemace.hc -------------------------------------------------------------------------------- /gamecode/hc/h2/imp.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/h2/imp.hc -------------------------------------------------------------------------------- /gamecode/hc/h2/impulse.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/h2/impulse.hc -------------------------------------------------------------------------------- /gamecode/hc/h2/invntory.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/h2/invntory.hc -------------------------------------------------------------------------------- /gamecode/hc/h2/items.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/h2/items.hc -------------------------------------------------------------------------------- /gamecode/hc/h2/light.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/h2/light.hc -------------------------------------------------------------------------------- /gamecode/hc/h2/magicmis.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/h2/magicmis.hc -------------------------------------------------------------------------------- /gamecode/hc/h2/math.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/h2/math.hc -------------------------------------------------------------------------------- /gamecode/hc/h2/medusa.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/h2/medusa.hc -------------------------------------------------------------------------------- /gamecode/hc/h2/meteor.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/h2/meteor.hc -------------------------------------------------------------------------------- /gamecode/hc/h2/mezzoman.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/h2/mezzoman.hc -------------------------------------------------------------------------------- /gamecode/hc/h2/misc.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/h2/misc.hc -------------------------------------------------------------------------------- /gamecode/hc/h2/monsters.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/h2/monsters.hc -------------------------------------------------------------------------------- /gamecode/hc/h2/mummy.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/h2/mummy.hc -------------------------------------------------------------------------------- /gamecode/hc/h2/newplay.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/h2/newplay.hc -------------------------------------------------------------------------------- /gamecode/hc/h2/object.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/h2/object.hc -------------------------------------------------------------------------------- /gamecode/hc/h2/path.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/h2/path.hc -------------------------------------------------------------------------------- /gamecode/hc/h2/plaque.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/h2/plaque.hc -------------------------------------------------------------------------------- /gamecode/hc/h2/plats.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/h2/plats.hc -------------------------------------------------------------------------------- /gamecode/hc/h2/precache.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/h2/precache.hc -------------------------------------------------------------------------------- /gamecode/hc/h2/progs.src: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/h2/progs.src -------------------------------------------------------------------------------- /gamecode/hc/h2/progs2.src: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/h2/progs2.src -------------------------------------------------------------------------------- /gamecode/hc/h2/projbhvr.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/h2/projbhvr.hc -------------------------------------------------------------------------------- /gamecode/hc/h2/proto.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/h2/proto.hc -------------------------------------------------------------------------------- /gamecode/hc/h2/pstboar.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/h2/pstboar.hc -------------------------------------------------------------------------------- /gamecode/hc/h2/punchdgr.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/h2/punchdgr.hc -------------------------------------------------------------------------------- /gamecode/hc/h2/purifier.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/h2/purifier.hc -------------------------------------------------------------------------------- /gamecode/hc/h2/quake.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/h2/quake.hc -------------------------------------------------------------------------------- /gamecode/hc/h2/rat.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/h2/rat.hc -------------------------------------------------------------------------------- /gamecode/hc/h2/raven.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/h2/raven.hc -------------------------------------------------------------------------------- /gamecode/hc/h2/ravenai.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/h2/ravenai.hc -------------------------------------------------------------------------------- /gamecode/hc/h2/ravenstf.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/h2/ravenstf.hc -------------------------------------------------------------------------------- /gamecode/hc/h2/rider.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/h2/rider.hc -------------------------------------------------------------------------------- /gamecode/hc/h2/rings.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/h2/rings.hc -------------------------------------------------------------------------------- /gamecode/hc/h2/scorpion.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/h2/scorpion.hc -------------------------------------------------------------------------------- /gamecode/hc/h2/setmodth.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/h2/setmodth.hc -------------------------------------------------------------------------------- /gamecode/hc/h2/setstaff.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/h2/setstaff.hc -------------------------------------------------------------------------------- /gamecode/hc/h2/shardice.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/h2/shardice.hc -------------------------------------------------------------------------------- /gamecode/hc/h2/sheep.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/h2/sheep.hc -------------------------------------------------------------------------------- /gamecode/hc/h2/sickle.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/h2/sickle.hc -------------------------------------------------------------------------------- /gamecode/hc/h2/skullwiz.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/h2/skullwiz.hc -------------------------------------------------------------------------------- /gamecode/hc/h2/snake.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/h2/snake.hc -------------------------------------------------------------------------------- /gamecode/hc/h2/soul.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/h2/soul.hc -------------------------------------------------------------------------------- /gamecode/hc/h2/sound.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/h2/sound.hc -------------------------------------------------------------------------------- /gamecode/hc/h2/spawn.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/h2/spawn.hc -------------------------------------------------------------------------------- /gamecode/hc/h2/specials.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/h2/specials.hc -------------------------------------------------------------------------------- /gamecode/hc/h2/spider.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/h2/spider.hc -------------------------------------------------------------------------------- /gamecode/hc/h2/spit.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/h2/spit.hc -------------------------------------------------------------------------------- /gamecode/hc/h2/stats.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/h2/stats.hc -------------------------------------------------------------------------------- /gamecode/hc/h2/strings.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/h2/strings.hc -------------------------------------------------------------------------------- /gamecode/hc/h2/subs.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/h2/subs.hc -------------------------------------------------------------------------------- /gamecode/hc/h2/sunstaff.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/h2/sunstaff.hc -------------------------------------------------------------------------------- /gamecode/hc/h2/torch.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/h2/torch.hc -------------------------------------------------------------------------------- /gamecode/hc/h2/triggers.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/h2/triggers.hc -------------------------------------------------------------------------------- /gamecode/hc/h2/tripmine.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/h2/tripmine.hc -------------------------------------------------------------------------------- /gamecode/hc/h2/vorpal.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/h2/vorpal.hc -------------------------------------------------------------------------------- /gamecode/hc/h2/warhamer.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/h2/warhamer.hc -------------------------------------------------------------------------------- /gamecode/hc/h2/warhorse.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/h2/warhorse.hc -------------------------------------------------------------------------------- /gamecode/hc/h2/waypoint.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/h2/waypoint.hc -------------------------------------------------------------------------------- /gamecode/hc/h2/weapons.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/h2/weapons.hc -------------------------------------------------------------------------------- /gamecode/hc/h2/weather.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/h2/weather.hc -------------------------------------------------------------------------------- /gamecode/hc/h2/world.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/h2/world.hc -------------------------------------------------------------------------------- /gamecode/hc/h2/wp_art.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/h2/wp_art.hc -------------------------------------------------------------------------------- /gamecode/hc/hw/MG_AI.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/hw/MG_AI.hc -------------------------------------------------------------------------------- /gamecode/hc/hw/acidorb.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/hw/acidorb.hc -------------------------------------------------------------------------------- /gamecode/hc/hw/ai.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/hw/ai.hc -------------------------------------------------------------------------------- /gamecode/hc/hw/allplay.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/hw/allplay.hc -------------------------------------------------------------------------------- /gamecode/hc/hw/altdeath.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/hw/altdeath.hc -------------------------------------------------------------------------------- /gamecode/hc/hw/archer.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/hw/archer.hc -------------------------------------------------------------------------------- /gamecode/hc/hw/artifact.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/hw/artifact.hc -------------------------------------------------------------------------------- /gamecode/hc/hw/assgren.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/hw/assgren.hc -------------------------------------------------------------------------------- /gamecode/hc/hw/axe.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/hw/axe.hc -------------------------------------------------------------------------------- /gamecode/hc/hw/barrel.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/hw/barrel.hc -------------------------------------------------------------------------------- /gamecode/hc/hw/bldrain.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/hw/bldrain.hc -------------------------------------------------------------------------------- /gamecode/hc/hw/boner.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/hw/boner.hc -------------------------------------------------------------------------------- /gamecode/hc/hw/breakabl.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/hw/breakabl.hc -------------------------------------------------------------------------------- /gamecode/hc/hw/builtin.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/hw/builtin.hc -------------------------------------------------------------------------------- /gamecode/hc/hw/buttons.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/hw/buttons.hc -------------------------------------------------------------------------------- /gamecode/hc/hw/camera.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/hw/camera.hc -------------------------------------------------------------------------------- /gamecode/hc/hw/cat2.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/hw/cat2.hc -------------------------------------------------------------------------------- /gamecode/hc/hw/chunk.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/hw/chunk.hc -------------------------------------------------------------------------------- /gamecode/hc/hw/client.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/hw/client.hc -------------------------------------------------------------------------------- /gamecode/hc/hw/combat.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/hw/combat.hc -------------------------------------------------------------------------------- /gamecode/hc/hw/constant.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/hw/constant.hc -------------------------------------------------------------------------------- /gamecode/hc/hw/corpse.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/hw/corpse.hc -------------------------------------------------------------------------------- /gamecode/hc/hw/crossbow.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/hw/crossbow.hc -------------------------------------------------------------------------------- /gamecode/hc/hw/damage.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/hw/damage.hc -------------------------------------------------------------------------------- /gamecode/hc/hw/dmlevels.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/hw/dmlevels.hc -------------------------------------------------------------------------------- /gamecode/hc/hw/doors.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/hw/doors.hc -------------------------------------------------------------------------------- /gamecode/hc/hw/dthhorse.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/hw/dthhorse.hc -------------------------------------------------------------------------------- /gamecode/hc/hw/eidolon.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/hw/eidolon.hc -------------------------------------------------------------------------------- /gamecode/hc/hw/entity.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/hw/entity.hc -------------------------------------------------------------------------------- /gamecode/hc/hw/eric.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/hw/eric.hc -------------------------------------------------------------------------------- /gamecode/hc/hw/explode.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/hw/explode.hc -------------------------------------------------------------------------------- /gamecode/hc/hw/fablade.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/hw/fablade.hc -------------------------------------------------------------------------------- /gamecode/hc/hw/famhorse.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/hw/famhorse.hc -------------------------------------------------------------------------------- /gamecode/hc/hw/fangel.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/hw/fangel.hc -------------------------------------------------------------------------------- /gamecode/hc/hw/faspell.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/hw/faspell.hc -------------------------------------------------------------------------------- /gamecode/hc/hw/fight.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/hw/fight.hc -------------------------------------------------------------------------------- /gamecode/hc/hw/fireball.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/hw/fireball.hc -------------------------------------------------------------------------------- /gamecode/hc/hw/fish.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/hw/fish.hc -------------------------------------------------------------------------------- /gamecode/hc/hw/flameorb.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/hw/flameorb.hc -------------------------------------------------------------------------------- /gamecode/hc/hw/fx.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/hw/fx.hc -------------------------------------------------------------------------------- /gamecode/hc/hw/gauntlet.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/hw/gauntlet.hc -------------------------------------------------------------------------------- /gamecode/hc/hw/global.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/hw/global.hc -------------------------------------------------------------------------------- /gamecode/hc/hw/golem.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/hw/golem.hc -------------------------------------------------------------------------------- /gamecode/hc/hw/head.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/hw/head.hc -------------------------------------------------------------------------------- /gamecode/hc/hw/hydra.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/hw/hydra.hc -------------------------------------------------------------------------------- /gamecode/hc/hw/icemace.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/hw/icemace.hc -------------------------------------------------------------------------------- /gamecode/hc/hw/imp.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/hw/imp.hc -------------------------------------------------------------------------------- /gamecode/hc/hw/impulse.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/hw/impulse.hc -------------------------------------------------------------------------------- /gamecode/hc/hw/invntory.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/hw/invntory.hc -------------------------------------------------------------------------------- /gamecode/hc/hw/items.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/hw/items.hc -------------------------------------------------------------------------------- /gamecode/hc/hw/light.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/hw/light.hc -------------------------------------------------------------------------------- /gamecode/hc/hw/lightwp.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/hw/lightwp.hc -------------------------------------------------------------------------------- /gamecode/hc/hw/magicmis.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/hw/magicmis.hc -------------------------------------------------------------------------------- /gamecode/hc/hw/math.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/hw/math.hc -------------------------------------------------------------------------------- /gamecode/hc/hw/medusa.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/hw/medusa.hc -------------------------------------------------------------------------------- /gamecode/hc/hw/meteor.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/hw/meteor.hc -------------------------------------------------------------------------------- /gamecode/hc/hw/mezzoman.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/hw/mezzoman.hc -------------------------------------------------------------------------------- /gamecode/hc/hw/misc.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/hw/misc.hc -------------------------------------------------------------------------------- /gamecode/hc/hw/monsters.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/hw/monsters.hc -------------------------------------------------------------------------------- /gamecode/hc/hw/mummy.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/hw/mummy.hc -------------------------------------------------------------------------------- /gamecode/hc/hw/newcube.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/hw/newcube.hc -------------------------------------------------------------------------------- /gamecode/hc/hw/newplay.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/hw/newplay.hc -------------------------------------------------------------------------------- /gamecode/hc/hw/object.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/hw/object.hc -------------------------------------------------------------------------------- /gamecode/hc/hw/path.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/hw/path.hc -------------------------------------------------------------------------------- /gamecode/hc/hw/plaque.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/hw/plaque.hc -------------------------------------------------------------------------------- /gamecode/hc/hw/plats.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/hw/plats.hc -------------------------------------------------------------------------------- /gamecode/hc/hw/plats_mp.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/hw/plats_mp.hc -------------------------------------------------------------------------------- /gamecode/hc/hw/precache.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/hw/precache.hc -------------------------------------------------------------------------------- /gamecode/hc/hw/progs.src: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/hw/progs.src -------------------------------------------------------------------------------- /gamecode/hc/hw/projbhvr.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/hw/projbhvr.hc -------------------------------------------------------------------------------- /gamecode/hc/hw/proto.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/hw/proto.hc -------------------------------------------------------------------------------- /gamecode/hc/hw/pstboar.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/hw/pstboar.hc -------------------------------------------------------------------------------- /gamecode/hc/hw/punchdgr.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/hw/punchdgr.hc -------------------------------------------------------------------------------- /gamecode/hc/hw/purifier.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/hw/purifier.hc -------------------------------------------------------------------------------- /gamecode/hc/hw/quake.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/hw/quake.hc -------------------------------------------------------------------------------- /gamecode/hc/hw/rat.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/hw/rat.hc -------------------------------------------------------------------------------- /gamecode/hc/hw/raven.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/hw/raven.hc -------------------------------------------------------------------------------- /gamecode/hc/hw/ravenai.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/hw/ravenai.hc -------------------------------------------------------------------------------- /gamecode/hc/hw/ravenstf.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/hw/ravenstf.hc -------------------------------------------------------------------------------- /gamecode/hc/hw/rider.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/hw/rider.hc -------------------------------------------------------------------------------- /gamecode/hc/hw/rings.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/hw/rings.hc -------------------------------------------------------------------------------- /gamecode/hc/hw/scorpion.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/hw/scorpion.hc -------------------------------------------------------------------------------- /gamecode/hc/hw/setmodth.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/hw/setmodth.hc -------------------------------------------------------------------------------- /gamecode/hc/hw/setstaff.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/hw/setstaff.hc -------------------------------------------------------------------------------- /gamecode/hc/hw/shardice.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/hw/shardice.hc -------------------------------------------------------------------------------- /gamecode/hc/hw/sheep.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/hw/sheep.hc -------------------------------------------------------------------------------- /gamecode/hc/hw/sickle.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/hw/sickle.hc -------------------------------------------------------------------------------- /gamecode/hc/hw/skullwiz.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/hw/skullwiz.hc -------------------------------------------------------------------------------- /gamecode/hc/hw/snake.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/hw/snake.hc -------------------------------------------------------------------------------- /gamecode/hc/hw/soul.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/hw/soul.hc -------------------------------------------------------------------------------- /gamecode/hc/hw/sound.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/hw/sound.hc -------------------------------------------------------------------------------- /gamecode/hc/hw/spawn.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/hw/spawn.hc -------------------------------------------------------------------------------- /gamecode/hc/hw/spawner.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/hw/spawner.hc -------------------------------------------------------------------------------- /gamecode/hc/hw/specials.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/hw/specials.hc -------------------------------------------------------------------------------- /gamecode/hc/hw/spectate.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/hw/spectate.hc -------------------------------------------------------------------------------- /gamecode/hc/hw/spider.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/hw/spider.hc -------------------------------------------------------------------------------- /gamecode/hc/hw/spit.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/hw/spit.hc -------------------------------------------------------------------------------- /gamecode/hc/hw/stats.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/hw/stats.hc -------------------------------------------------------------------------------- /gamecode/hc/hw/strings.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/hw/strings.hc -------------------------------------------------------------------------------- /gamecode/hc/hw/subs.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/hw/subs.hc -------------------------------------------------------------------------------- /gamecode/hc/hw/sunstaff.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/hw/sunstaff.hc -------------------------------------------------------------------------------- /gamecode/hc/hw/torch.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/hw/torch.hc -------------------------------------------------------------------------------- /gamecode/hc/hw/triggers.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/hw/triggers.hc -------------------------------------------------------------------------------- /gamecode/hc/hw/tripmine.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/hw/tripmine.hc -------------------------------------------------------------------------------- /gamecode/hc/hw/vorpal.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/hw/vorpal.hc -------------------------------------------------------------------------------- /gamecode/hc/hw/warhamer.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/hw/warhamer.hc -------------------------------------------------------------------------------- /gamecode/hc/hw/warhorse.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/hw/warhorse.hc -------------------------------------------------------------------------------- /gamecode/hc/hw/waypoint.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/hw/waypoint.hc -------------------------------------------------------------------------------- /gamecode/hc/hw/weapons.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/hw/weapons.hc -------------------------------------------------------------------------------- /gamecode/hc/hw/weather.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/hw/weather.hc -------------------------------------------------------------------------------- /gamecode/hc/hw/world.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/hw/world.hc -------------------------------------------------------------------------------- /gamecode/hc/hw/wp_art.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/hw/wp_art.hc -------------------------------------------------------------------------------- /gamecode/hc/portals/ai.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/portals/ai.hc -------------------------------------------------------------------------------- /gamecode/hc/portals/axe.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/portals/axe.hc -------------------------------------------------------------------------------- /gamecode/hc/portals/fx.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/portals/fx.hc -------------------------------------------------------------------------------- /gamecode/hc/portals/imp.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/portals/imp.hc -------------------------------------------------------------------------------- /gamecode/hc/portals/rat.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/portals/rat.hc -------------------------------------------------------------------------------- /gamecode/hc/siege/MG_AI.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/siege/MG_AI.hc -------------------------------------------------------------------------------- /gamecode/hc/siege/ai.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/siege/ai.hc -------------------------------------------------------------------------------- /gamecode/hc/siege/axe.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/siege/axe.hc -------------------------------------------------------------------------------- /gamecode/hc/siege/boner.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/siege/boner.hc -------------------------------------------------------------------------------- /gamecode/hc/siege/cat2.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/siege/cat2.hc -------------------------------------------------------------------------------- /gamecode/hc/siege/chunk.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/siege/chunk.hc -------------------------------------------------------------------------------- /gamecode/hc/siege/doors.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/siege/doors.hc -------------------------------------------------------------------------------- /gamecode/hc/siege/eric.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/siege/eric.hc -------------------------------------------------------------------------------- /gamecode/hc/siege/fight.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/siege/fight.hc -------------------------------------------------------------------------------- /gamecode/hc/siege/fish.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/siege/fish.hc -------------------------------------------------------------------------------- /gamecode/hc/siege/fx.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/siege/fx.hc -------------------------------------------------------------------------------- /gamecode/hc/siege/golem.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/siege/golem.hc -------------------------------------------------------------------------------- /gamecode/hc/siege/head.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/siege/head.hc -------------------------------------------------------------------------------- /gamecode/hc/siege/hydra.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/siege/hydra.hc -------------------------------------------------------------------------------- /gamecode/hc/siege/imp.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/siege/imp.hc -------------------------------------------------------------------------------- /gamecode/hc/siege/items.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/siege/items.hc -------------------------------------------------------------------------------- /gamecode/hc/siege/light.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/siege/light.hc -------------------------------------------------------------------------------- /gamecode/hc/siege/math.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/siege/math.hc -------------------------------------------------------------------------------- /gamecode/hc/siege/misc.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/siege/misc.hc -------------------------------------------------------------------------------- /gamecode/hc/siege/mummy.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/siege/mummy.hc -------------------------------------------------------------------------------- /gamecode/hc/siege/path.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/siege/path.hc -------------------------------------------------------------------------------- /gamecode/hc/siege/plats.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/siege/plats.hc -------------------------------------------------------------------------------- /gamecode/hc/siege/proto.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/siege/proto.hc -------------------------------------------------------------------------------- /gamecode/hc/siege/quake.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/siege/quake.hc -------------------------------------------------------------------------------- /gamecode/hc/siege/rat.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/siege/rat.hc -------------------------------------------------------------------------------- /gamecode/hc/siege/raven.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/siege/raven.hc -------------------------------------------------------------------------------- /gamecode/hc/siege/rings.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/siege/rings.hc -------------------------------------------------------------------------------- /gamecode/hc/siege/sheep.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/siege/sheep.hc -------------------------------------------------------------------------------- /gamecode/hc/siege/siege.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/siege/siege.hc -------------------------------------------------------------------------------- /gamecode/hc/siege/snake.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/siege/snake.hc -------------------------------------------------------------------------------- /gamecode/hc/siege/soul.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/siege/soul.hc -------------------------------------------------------------------------------- /gamecode/hc/siege/sound.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/siege/sound.hc -------------------------------------------------------------------------------- /gamecode/hc/siege/spawn.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/siege/spawn.hc -------------------------------------------------------------------------------- /gamecode/hc/siege/spit.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/siege/spit.hc -------------------------------------------------------------------------------- /gamecode/hc/siege/stats.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/siege/stats.hc -------------------------------------------------------------------------------- /gamecode/hc/siege/subs.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/siege/subs.hc -------------------------------------------------------------------------------- /gamecode/hc/siege/torch.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/siege/torch.hc -------------------------------------------------------------------------------- /gamecode/hc/siege/world.hc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/hc/siege/world.hc -------------------------------------------------------------------------------- /gamecode/res/h2/hexen.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/gamecode/res/h2/hexen.rc -------------------------------------------------------------------------------- /gamecode/res/hw/server.cfg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /gamecode/res/portals/maplist.txt: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /gamecode/res/siege/server.cfg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /h2patch/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/h2patch/Makefile -------------------------------------------------------------------------------- /h2patch/Makefile.amiga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/h2patch/Makefile.amiga -------------------------------------------------------------------------------- /h2patch/Makefile.darwin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/h2patch/Makefile.darwin -------------------------------------------------------------------------------- /h2patch/Makefile.dj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/h2patch/Makefile.dj -------------------------------------------------------------------------------- /h2patch/Makefile.emx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/h2patch/Makefile.emx -------------------------------------------------------------------------------- /h2patch/Makefile.mingw32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/h2patch/Makefile.mingw32 -------------------------------------------------------------------------------- /h2patch/Makefile.mingw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/h2patch/Makefile.mingw64 -------------------------------------------------------------------------------- /h2patch/Makefile.os2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/h2patch/Makefile.os2 -------------------------------------------------------------------------------- /h2patch/Makefile.wat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/h2patch/Makefile.wat -------------------------------------------------------------------------------- /h2patch/VS2005.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/h2patch/VS2005.zip -------------------------------------------------------------------------------- /h2patch/VisualStudio.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/h2patch/VisualStudio.zip -------------------------------------------------------------------------------- /h2patch/build_aros.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/h2patch/build_aros.sh -------------------------------------------------------------------------------- /h2patch/build_aros64.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/h2patch/build_aros64.sh -------------------------------------------------------------------------------- /h2patch/build_dos.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/h2patch/build_dos.sh -------------------------------------------------------------------------------- /h2patch/build_morphos.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/h2patch/build_morphos.sh -------------------------------------------------------------------------------- /h2patch/build_osx.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/h2patch/build_osx.sh -------------------------------------------------------------------------------- /h2patch/build_w32.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/h2patch/build_w32.sh -------------------------------------------------------------------------------- /h2patch/build_w64.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/h2patch/build_w64.sh -------------------------------------------------------------------------------- /h2patch/h2patch3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/h2patch/h2patch3.c -------------------------------------------------------------------------------- /h2patch/h2patch3.rc: -------------------------------------------------------------------------------- 1 | #include 2 | 1 RT_MANIFEST "h2patch.exe.manifest" 3 | 4 | -------------------------------------------------------------------------------- /hw_utils/VS2005.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/hw_utils/VS2005.zip -------------------------------------------------------------------------------- /hw_utils/VisualStudio.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/hw_utils/VisualStudio.zip -------------------------------------------------------------------------------- /hw_utils/hwmaster/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/hw_utils/hwmaster/Makefile -------------------------------------------------------------------------------- /hw_utils/hwmaster/cmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/hw_utils/hwmaster/cmd.h -------------------------------------------------------------------------------- /hw_utils/hwmaster/cmds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/hw_utils/hwmaster/cmds.c -------------------------------------------------------------------------------- /hw_utils/hwmaster/common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/hw_utils/hwmaster/common.c -------------------------------------------------------------------------------- /hw_utils/hwmaster/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/hw_utils/hwmaster/common.h -------------------------------------------------------------------------------- /hw_utils/hwmaster/defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/hw_utils/hwmaster/defs.h -------------------------------------------------------------------------------- /hw_utils/hwmaster/master.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/hw_utils/hwmaster/master.c -------------------------------------------------------------------------------- /hw_utils/hwmaster/msg_io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/hw_utils/hwmaster/msg_io.c -------------------------------------------------------------------------------- /hw_utils/hwmaster/msg_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/hw_utils/hwmaster/msg_io.h -------------------------------------------------------------------------------- /hw_utils/hwmaster/net.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/hw_utils/hwmaster/net.c -------------------------------------------------------------------------------- /hw_utils/hwmaster/net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/hw_utils/hwmaster/net.h -------------------------------------------------------------------------------- /hw_utils/hwmaster/server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/hw_utils/hwmaster/server.h -------------------------------------------------------------------------------- /hw_utils/hwmaster/sys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/hw_utils/hwmaster/sys.h -------------------------------------------------------------------------------- /hw_utils/hwmquery/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/hw_utils/hwmquery/Makefile -------------------------------------------------------------------------------- /hw_utils/hwrcon/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/hw_utils/hwrcon/Makefile -------------------------------------------------------------------------------- /hw_utils/hwrcon/hufffreq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/hw_utils/hwrcon/hufffreq.h -------------------------------------------------------------------------------- /hw_utils/hwrcon/huffman.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/hw_utils/hwrcon/huffman.c -------------------------------------------------------------------------------- /hw_utils/hwrcon/huffman.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/hw_utils/hwrcon/huffman.h -------------------------------------------------------------------------------- /hw_utils/hwrcon/hwrcon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/hw_utils/hwrcon/hwrcon.c -------------------------------------------------------------------------------- /hw_utils/hwrcon/hwrcon.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/hw_utils/hwrcon/hwrcon.txt -------------------------------------------------------------------------------- /hw_utils/hwrcon/hwterm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/hw_utils/hwrcon/hwterm.c -------------------------------------------------------------------------------- /hw_utils/hwrcon/hwterm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/hw_utils/hwrcon/hwterm.txt -------------------------------------------------------------------------------- /libs/timidity/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/libs/timidity/AUTHORS -------------------------------------------------------------------------------- /libs/timidity/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/libs/timidity/CHANGES -------------------------------------------------------------------------------- /libs/timidity/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/libs/timidity/COPYING -------------------------------------------------------------------------------- /libs/timidity/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/libs/timidity/Makefile -------------------------------------------------------------------------------- /libs/timidity/Makefile.os2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/libs/timidity/Makefile.os2 -------------------------------------------------------------------------------- /libs/timidity/Makefile.wat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/libs/timidity/Makefile.wat -------------------------------------------------------------------------------- /libs/timidity/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/libs/timidity/README -------------------------------------------------------------------------------- /libs/timidity/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/libs/timidity/TODO -------------------------------------------------------------------------------- /libs/timidity/_timi.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/libs/timidity/_timi.mak -------------------------------------------------------------------------------- /libs/timidity/build_dos.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/libs/timidity/build_dos.sh -------------------------------------------------------------------------------- /libs/timidity/build_w32.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/libs/timidity/build_w32.sh -------------------------------------------------------------------------------- /libs/timidity/build_w64.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/libs/timidity/build_w64.sh -------------------------------------------------------------------------------- /libs/timidity/common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/libs/timidity/common.c -------------------------------------------------------------------------------- /libs/timidity/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/libs/timidity/common.h -------------------------------------------------------------------------------- /libs/timidity/instrum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/libs/timidity/instrum.c -------------------------------------------------------------------------------- /libs/timidity/instrum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/libs/timidity/instrum.h -------------------------------------------------------------------------------- /libs/timidity/mix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/libs/timidity/mix.c -------------------------------------------------------------------------------- /libs/timidity/mix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/libs/timidity/mix.h -------------------------------------------------------------------------------- /libs/timidity/options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/libs/timidity/options.h -------------------------------------------------------------------------------- /libs/timidity/ospaths.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/libs/timidity/ospaths.h -------------------------------------------------------------------------------- /libs/timidity/output.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/libs/timidity/output.c -------------------------------------------------------------------------------- /libs/timidity/output.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/libs/timidity/output.h -------------------------------------------------------------------------------- /libs/timidity/playmidi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/libs/timidity/playmidi.c -------------------------------------------------------------------------------- /libs/timidity/playmidi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/libs/timidity/playmidi.h -------------------------------------------------------------------------------- /libs/timidity/readmidi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/libs/timidity/readmidi.c -------------------------------------------------------------------------------- /libs/timidity/readmidi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/libs/timidity/readmidi.h -------------------------------------------------------------------------------- /libs/timidity/resample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/libs/timidity/resample.c -------------------------------------------------------------------------------- /libs/timidity/resample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/libs/timidity/resample.h -------------------------------------------------------------------------------- /libs/timidity/stream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/libs/timidity/stream.c -------------------------------------------------------------------------------- /libs/timidity/tables.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/libs/timidity/tables.c -------------------------------------------------------------------------------- /libs/timidity/tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/libs/timidity/tables.h -------------------------------------------------------------------------------- /libs/timidity/timidity.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/libs/timidity/timidity.c -------------------------------------------------------------------------------- /libs/timidity/timidity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/libs/timidity/timidity.h -------------------------------------------------------------------------------- /libs/xdelta3/xdelta3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/libs/xdelta3/xdelta3.c -------------------------------------------------------------------------------- /libs/xdelta3/xdelta3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/libs/xdelta3/xdelta3.h -------------------------------------------------------------------------------- /libs/xdelta3/xdelta3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/libs/xdelta3/xdelta3.txt -------------------------------------------------------------------------------- /oslibs/dos/djtime/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/oslibs/dos/djtime/README -------------------------------------------------------------------------------- /oslibs/dos/djtime/ctime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/oslibs/dos/djtime/ctime.c -------------------------------------------------------------------------------- /oslibs/dos/djtime/djtime.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/oslibs/dos/djtime/djtime.a -------------------------------------------------------------------------------- /oslibs/dos/djtime/gettod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/oslibs/dos/djtime/gettod.c -------------------------------------------------------------------------------- /oslibs/dos/djtime/gmtime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/oslibs/dos/djtime/gmtime.c -------------------------------------------------------------------------------- /oslibs/dos/djtime/mktime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/oslibs/dos/djtime/mktime.c -------------------------------------------------------------------------------- /oslibs/dos/djtime/time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/oslibs/dos/djtime/time.c -------------------------------------------------------------------------------- /oslibs/dos/djtime/tzname.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/oslibs/dos/djtime/tzname.c -------------------------------------------------------------------------------- /oslibs/dos/djtime/tzset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/oslibs/dos/djtime/tzset.c -------------------------------------------------------------------------------- /oslibs/dos/glide3/lib/cvg/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /oslibs/dos/glide3/lib/h3/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /oslibs/dos/glide3/lib/h5/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /oslibs/dos/glide3/lib/sst1/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /oslibs/dos/glide3/lib/sst96/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /oslibs/dos/libau/src/au.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/oslibs/dos/libau/src/au.c -------------------------------------------------------------------------------- /oslibs/dos/libau/src/tim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/oslibs/dos/libau/src/tim.c -------------------------------------------------------------------------------- /oslibs/dos/libwss/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/oslibs/dos/libwss/COPYING -------------------------------------------------------------------------------- /oslibs/dos/libwss/mk.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/oslibs/dos/libwss/mk.bat -------------------------------------------------------------------------------- /oslibs/dos/libwss/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/oslibs/dos/libwss/test.c -------------------------------------------------------------------------------- /oslibs/dos/libwss/wss.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/oslibs/dos/libwss/wss.c -------------------------------------------------------------------------------- /oslibs/dos/libwss/wss.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/oslibs/dos/libwss/wss.h -------------------------------------------------------------------------------- /oslibs/dos/opengl/lib/fxmesa/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /oslibs/dos/opengl/lib/mesa/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /oslibs/dos/opengl/lib/sage/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /oslibs/macosx/SDL.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /oslibs/macosx/SDL.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /oslibs/macosx/SDL.framework/SDL: -------------------------------------------------------------------------------- 1 | Versions/Current/SDL -------------------------------------------------------------------------------- /oslibs/macosx/SDL.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /oslibs/os2/SDL/BUGS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/oslibs/os2/SDL/BUGS -------------------------------------------------------------------------------- /oslibs/os2/SDL/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/oslibs/os2/SDL/COPYING -------------------------------------------------------------------------------- /oslibs/os2/SDL/lib/SDL12.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/oslibs/os2/SDL/lib/SDL12.a -------------------------------------------------------------------------------- /oslibs/windows/SDL/BUGS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/oslibs/windows/SDL/BUGS -------------------------------------------------------------------------------- /oslibs/windows/SDL/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/oslibs/windows/SDL/COPYING -------------------------------------------------------------------------------- /oslibs/windows/misc/x64/.cvsignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /oslibs/windows/misc/x86/.cvsignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /patches/FLT_MAX.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/patches/FLT_MAX.patch -------------------------------------------------------------------------------- /patches/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/patches/README -------------------------------------------------------------------------------- /patches/glfog-test1.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/patches/glfog-test1.patch -------------------------------------------------------------------------------- /patches/maplist.txt: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /patches/sdl2.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/patches/sdl2.patch -------------------------------------------------------------------------------- /rpm/hexen2.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/rpm/hexen2.spec -------------------------------------------------------------------------------- /scripts/ax_pthread.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/scripts/ax_pthread.m4 -------------------------------------------------------------------------------- /scripts/ccase.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/scripts/ccase.sh -------------------------------------------------------------------------------- /scripts/cdrip_hexen2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/scripts/cdrip_hexen2.sh -------------------------------------------------------------------------------- /scripts/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/scripts/config.guess -------------------------------------------------------------------------------- /scripts/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/scripts/config.sub -------------------------------------------------------------------------------- /scripts/cross_defs.aros: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/scripts/cross_defs.aros -------------------------------------------------------------------------------- /scripts/cross_defs.aros64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/scripts/cross_defs.aros64 -------------------------------------------------------------------------------- /scripts/cross_defs.dj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/scripts/cross_defs.dj -------------------------------------------------------------------------------- /scripts/cross_defs.morphos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/scripts/cross_defs.morphos -------------------------------------------------------------------------------- /scripts/cross_defs.w32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/scripts/cross_defs.w32 -------------------------------------------------------------------------------- /scripts/cross_defs.w64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/scripts/cross_defs.w64 -------------------------------------------------------------------------------- /scripts/detect.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/scripts/detect.sh -------------------------------------------------------------------------------- /scripts/gcc-version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/scripts/gcc-version.sh -------------------------------------------------------------------------------- /scripts/hexen2-run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/scripts/hexen2-run.sh -------------------------------------------------------------------------------- /scripts/makefile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/scripts/makefile.inc -------------------------------------------------------------------------------- /scripts/mk_header.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/scripts/mk_header.c -------------------------------------------------------------------------------- /scripts/pthread.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/scripts/pthread.sh -------------------------------------------------------------------------------- /scripts/systest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/scripts/systest.c -------------------------------------------------------------------------------- /utils/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/utils/README -------------------------------------------------------------------------------- /utils/VS2005.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/utils/VS2005.zip -------------------------------------------------------------------------------- /utils/VisualStudio.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/utils/VisualStudio.zip -------------------------------------------------------------------------------- /utils/bsp2map/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/utils/bsp2map/Makefile -------------------------------------------------------------------------------- /utils/bsp2map/Makefile.os2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/utils/bsp2map/Makefile.os2 -------------------------------------------------------------------------------- /utils/bsp2map/Makefile.wat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/utils/bsp2map/Makefile.wat -------------------------------------------------------------------------------- /utils/bsp2map/bsp2map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/utils/bsp2map/bsp2map.c -------------------------------------------------------------------------------- /utils/bsp2map/bsp2map.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/utils/bsp2map/bsp2map.txt -------------------------------------------------------------------------------- /utils/bspinfo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/utils/bspinfo/Makefile -------------------------------------------------------------------------------- /utils/bspinfo/Makefile.os2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/utils/bspinfo/Makefile.os2 -------------------------------------------------------------------------------- /utils/bspinfo/Makefile.wat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/utils/bspinfo/Makefile.wat -------------------------------------------------------------------------------- /utils/bspinfo/bspinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/utils/bspinfo/bspinfo.c -------------------------------------------------------------------------------- /utils/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/utils/build.sh -------------------------------------------------------------------------------- /utils/build_cross_win32.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/utils/build_cross_win32.sh -------------------------------------------------------------------------------- /utils/build_cross_win64.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/utils/build_cross_win64.sh -------------------------------------------------------------------------------- /utils/common/bspfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/utils/common/bspfile.c -------------------------------------------------------------------------------- /utils/common/byteordr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/utils/common/byteordr.c -------------------------------------------------------------------------------- /utils/common/byteordr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/utils/common/byteordr.h -------------------------------------------------------------------------------- /utils/common/cmdlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/utils/common/cmdlib.c -------------------------------------------------------------------------------- /utils/common/cmdlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/utils/common/cmdlib.h -------------------------------------------------------------------------------- /utils/common/mathlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/utils/common/mathlib.c -------------------------------------------------------------------------------- /utils/common/mathlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/utils/common/mathlib.h -------------------------------------------------------------------------------- /utils/common/pathutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/utils/common/pathutil.c -------------------------------------------------------------------------------- /utils/common/pathutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/utils/common/pathutil.h -------------------------------------------------------------------------------- /utils/common/qdir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/utils/common/qdir.c -------------------------------------------------------------------------------- /utils/common/qdir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/utils/common/qdir.h -------------------------------------------------------------------------------- /utils/common/scriplib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/utils/common/scriplib.c -------------------------------------------------------------------------------- /utils/common/scriplib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/utils/common/scriplib.h -------------------------------------------------------------------------------- /utils/common/threads.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/utils/common/threads.c -------------------------------------------------------------------------------- /utils/common/threads.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/utils/common/threads.h -------------------------------------------------------------------------------- /utils/common/util_io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/utils/common/util_io.c -------------------------------------------------------------------------------- /utils/common/util_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/utils/common/util_io.h -------------------------------------------------------------------------------- /utils/dcc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/utils/dcc/Makefile -------------------------------------------------------------------------------- /utils/dcc/Makefile.os2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/utils/dcc/Makefile.os2 -------------------------------------------------------------------------------- /utils/dcc/Makefile.wat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/utils/dcc/Makefile.wat -------------------------------------------------------------------------------- /utils/dcc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/utils/dcc/README -------------------------------------------------------------------------------- /utils/dcc/dcc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/utils/dcc/dcc.c -------------------------------------------------------------------------------- /utils/dcc/dcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/utils/dcc/dcc.h -------------------------------------------------------------------------------- /utils/dcc/dcc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/utils/dcc/dcc.txt -------------------------------------------------------------------------------- /utils/dcc/hcc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/utils/dcc/hcc.c -------------------------------------------------------------------------------- /utils/dcc/pr_comp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/utils/dcc/pr_comp.c -------------------------------------------------------------------------------- /utils/dcc/pr_lex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/utils/dcc/pr_lex.c -------------------------------------------------------------------------------- /utils/dcc/qcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/utils/dcc/qcc.h -------------------------------------------------------------------------------- /utils/genmodel/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/utils/genmodel/Makefile -------------------------------------------------------------------------------- /utils/genmodel/genmodel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/utils/genmodel/genmodel.c -------------------------------------------------------------------------------- /utils/genmodel/loadtri.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/utils/genmodel/loadtri.c -------------------------------------------------------------------------------- /utils/genmodel/loadtri.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/utils/genmodel/loadtri.h -------------------------------------------------------------------------------- /utils/genmodel/token.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/utils/genmodel/token.c -------------------------------------------------------------------------------- /utils/genmodel/token.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/utils/genmodel/token.h -------------------------------------------------------------------------------- /utils/hcc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/utils/hcc/Makefile -------------------------------------------------------------------------------- /utils/hcc/Makefile.os2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/utils/hcc/Makefile.os2 -------------------------------------------------------------------------------- /utils/hcc/Makefile.wat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/utils/hcc/Makefile.wat -------------------------------------------------------------------------------- /utils/hcc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/utils/hcc/README -------------------------------------------------------------------------------- /utils/hcc/crchash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/utils/hcc/crchash.c -------------------------------------------------------------------------------- /utils/hcc/crchash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/utils/hcc/crchash.h -------------------------------------------------------------------------------- /utils/hcc/expr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/utils/hcc/expr.c -------------------------------------------------------------------------------- /utils/hcc/hcc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/utils/hcc/hcc.c -------------------------------------------------------------------------------- /utils/hcc/hcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/utils/hcc/hcc.h -------------------------------------------------------------------------------- /utils/hcc/pr_comp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/utils/hcc/pr_comp.c -------------------------------------------------------------------------------- /utils/hcc/pr_lex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/utils/hcc/pr_lex.c -------------------------------------------------------------------------------- /utils/hcc/stmt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/utils/hcc/stmt.c -------------------------------------------------------------------------------- /utils/jsh2color/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/utils/jsh2color/ChangeLog -------------------------------------------------------------------------------- /utils/jsh2color/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/utils/jsh2color/Makefile -------------------------------------------------------------------------------- /utils/jsh2color/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/utils/jsh2color/README -------------------------------------------------------------------------------- /utils/jsh2color/entities.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/utils/jsh2color/entities.c -------------------------------------------------------------------------------- /utils/jsh2color/entities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/utils/jsh2color/entities.h -------------------------------------------------------------------------------- /utils/jsh2color/jscolor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/utils/jsh2color/jscolor.c -------------------------------------------------------------------------------- /utils/jsh2color/jscolor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/utils/jsh2color/jscolor.h -------------------------------------------------------------------------------- /utils/jsh2color/litfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/utils/jsh2color/litfile.c -------------------------------------------------------------------------------- /utils/jsh2color/litfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/utils/jsh2color/litfile.h -------------------------------------------------------------------------------- /utils/jsh2color/ltface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/utils/jsh2color/ltface.c -------------------------------------------------------------------------------- /utils/jsh2color/trace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/utils/jsh2color/trace.c -------------------------------------------------------------------------------- /utils/jsh2color/tyrlite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/utils/jsh2color/tyrlite.c -------------------------------------------------------------------------------- /utils/jsh2color/tyrlite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/utils/jsh2color/tyrlite.h -------------------------------------------------------------------------------- /utils/light/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/utils/light/Makefile -------------------------------------------------------------------------------- /utils/light/Makefile.os2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/utils/light/Makefile.os2 -------------------------------------------------------------------------------- /utils/light/Makefile.wat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/utils/light/Makefile.wat -------------------------------------------------------------------------------- /utils/light/entities.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/utils/light/entities.c -------------------------------------------------------------------------------- /utils/light/entities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/utils/light/entities.h -------------------------------------------------------------------------------- /utils/light/light.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/utils/light/light.c -------------------------------------------------------------------------------- /utils/light/light.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/utils/light/light.h -------------------------------------------------------------------------------- /utils/light/ltface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/utils/light/ltface.c -------------------------------------------------------------------------------- /utils/light/trace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/utils/light/trace.c -------------------------------------------------------------------------------- /utils/mapsrc/compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/utils/mapsrc/compile.sh -------------------------------------------------------------------------------- /utils/mapsrc/getwad.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/utils/mapsrc/getwad.sh -------------------------------------------------------------------------------- /utils/mapsrc/hour04-0.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/utils/mapsrc/hour04-0.map -------------------------------------------------------------------------------- /utils/mapsrc/worldmix.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/utils/mapsrc/worldmix.map -------------------------------------------------------------------------------- /utils/mapsrc/worldmix.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/utils/mapsrc/worldmix.txt -------------------------------------------------------------------------------- /utils/pak/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/utils/pak/Makefile -------------------------------------------------------------------------------- /utils/pak/Makefile.os2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/utils/pak/Makefile.os2 -------------------------------------------------------------------------------- /utils/pak/Makefile.wat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/utils/pak/Makefile.wat -------------------------------------------------------------------------------- /utils/pak/pak.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/utils/pak/pak.h -------------------------------------------------------------------------------- /utils/pak/pakfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/utils/pak/pakfile.c -------------------------------------------------------------------------------- /utils/pak/paklist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/utils/pak/paklist.c -------------------------------------------------------------------------------- /utils/pak/pakx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/utils/pak/pakx.c -------------------------------------------------------------------------------- /utils/qbsp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/utils/qbsp/Makefile -------------------------------------------------------------------------------- /utils/qbsp/Makefile.os2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/utils/qbsp/Makefile.os2 -------------------------------------------------------------------------------- /utils/qbsp/Makefile.wat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/utils/qbsp/Makefile.wat -------------------------------------------------------------------------------- /utils/qbsp/brush.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/utils/qbsp/brush.c -------------------------------------------------------------------------------- /utils/qbsp/bsp5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/utils/qbsp/bsp5.h -------------------------------------------------------------------------------- /utils/qbsp/csg4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/utils/qbsp/csg4.c -------------------------------------------------------------------------------- /utils/qbsp/entmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/utils/qbsp/entmap.c -------------------------------------------------------------------------------- /utils/qbsp/map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/utils/qbsp/map.c -------------------------------------------------------------------------------- /utils/qbsp/map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/utils/qbsp/map.h -------------------------------------------------------------------------------- /utils/qbsp/merge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/utils/qbsp/merge.c -------------------------------------------------------------------------------- /utils/qbsp/nodraw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/utils/qbsp/nodraw.c -------------------------------------------------------------------------------- /utils/qbsp/outside.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/utils/qbsp/outside.c -------------------------------------------------------------------------------- /utils/qbsp/portals.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/utils/qbsp/portals.c -------------------------------------------------------------------------------- /utils/qbsp/qbsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/utils/qbsp/qbsp.c -------------------------------------------------------------------------------- /utils/qbsp/region.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/utils/qbsp/region.c -------------------------------------------------------------------------------- /utils/qbsp/solidbsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/utils/qbsp/solidbsp.c -------------------------------------------------------------------------------- /utils/qbsp/surfaces.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/utils/qbsp/surfaces.c -------------------------------------------------------------------------------- /utils/qbsp/tjunc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/utils/qbsp/tjunc.c -------------------------------------------------------------------------------- /utils/qbsp/writebsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/utils/qbsp/writebsp.c -------------------------------------------------------------------------------- /utils/qfiles/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/utils/qfiles/Makefile -------------------------------------------------------------------------------- /utils/qfiles/Makefile.os2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/utils/qfiles/Makefile.os2 -------------------------------------------------------------------------------- /utils/qfiles/Makefile.wat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/utils/qfiles/Makefile.wat -------------------------------------------------------------------------------- /utils/qfiles/qfiles.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/utils/qfiles/qfiles.c -------------------------------------------------------------------------------- /utils/vis/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/utils/vis/Makefile -------------------------------------------------------------------------------- /utils/vis/Makefile.os2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/utils/vis/Makefile.os2 -------------------------------------------------------------------------------- /utils/vis/Makefile.wat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/utils/vis/Makefile.wat -------------------------------------------------------------------------------- /utils/vis/flow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/utils/vis/flow.c -------------------------------------------------------------------------------- /utils/vis/soundpvs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/utils/vis/soundpvs.c -------------------------------------------------------------------------------- /utils/vis/vis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/utils/vis/vis.c -------------------------------------------------------------------------------- /utils/vis/vis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sezero/uhexen2/HEAD/utils/vis/vis.h --------------------------------------------------------------------------------