├── .gitattributes ├── .github └── workflows │ ├── continuous_integration.yml │ ├── copy_dependencies.cmd │ ├── dumb │ ├── CONTROL │ ├── msvc-build-fixes.patch │ └── portfile.cmake │ ├── portmidi │ ├── portfile.cmake │ └── winmm-x64.patch │ └── windows_dependencies.yml ├── .gitignore ├── .gitmodules ├── README.md └── prboom2 ├── AUTHORS ├── CMakeLists.txt ├── COPYING ├── FAQ ├── ICONS ├── icons.rc ├── prboom-plus.bash ├── prboom-plus.desktop ├── prboom-plus.exe.manifest ├── prboom-plus.ico ├── prboom-plus.svg └── resource.h ├── INSTALL ├── NEWS ├── README ├── TODO ├── cmake ├── FindDUMB.cmake ├── FindFluidSynth.cmake ├── FindLibMad.cmake ├── FindOgg.cmake ├── FindPCREPOSIX.cmake ├── FindPortMidi.cmake ├── FindSDL2.cmake ├── FindSDL2_image.cmake ├── FindSDL2_mixer.cmake ├── FindSDL2_net.cmake ├── FindVorbis.cmake ├── TargetArch.cmake └── config.h.cin ├── data ├── CMakeLists.txt ├── convert-icon ├── flats │ └── -n0_tex-.ppm ├── graphics │ ├── boxcc.ppm │ ├── boxcl.ppm │ ├── boxcr.ppm │ ├── boxlc.ppm │ ├── boxll.ppm │ ├── boxlr.ppm │ ├── boxuc.ppm │ ├── boxul.ppm │ ├── boxur.ppm │ ├── cross1.ppm │ ├── cross2.ppm │ ├── cross3.ppm │ ├── dig0.ppm │ ├── dig1.ppm │ ├── dig2.ppm │ ├── dig3.ppm │ ├── dig4.ppm │ ├── dig45.ppm │ ├── dig47.ppm │ ├── dig5.ppm │ ├── dig58.ppm │ ├── dig6.ppm │ ├── dig7.ppm │ ├── dig8.ppm │ ├── dig9.ppm │ ├── dig91.ppm │ ├── dig93.ppm │ ├── diga.ppm │ ├── digb.ppm │ ├── digc.ppm │ ├── digd.ppm │ ├── dige.ppm │ ├── digf.ppm │ ├── digg.ppm │ ├── digh.ppm │ ├── digi.ppm │ ├── digj.ppm │ ├── digk.ppm │ ├── digl.ppm │ ├── digm.ppm │ ├── dign.ppm │ ├── digo.ppm │ ├── digp.ppm │ ├── digq.ppm │ ├── digr.ppm │ ├── digs.ppm │ ├── digt.ppm │ ├── digu.ppm │ ├── digv.ppm │ ├── digw.ppm │ ├── digx.ppm │ ├── digy.ppm │ ├── digz.ppm │ ├── m_butt1.ppm │ ├── m_butt2.ppm │ ├── m_colors.ppm │ ├── m_palno.ppm │ ├── m_palsel.ppm │ ├── m_vbox.ppm │ ├── stbr123.ppm │ ├── stbr124.ppm │ ├── stbr125.ppm │ ├── stbr126.ppm │ ├── stbr127.ppm │ ├── stcfn096.ppm │ ├── stkeys6.ppm │ ├── stkeys7.ppm │ └── stkeys8.ppm ├── lumps │ ├── -prbhud-.lmp │ ├── animated.lmp │ ├── b_end.lmp │ ├── b_start.lmp │ ├── bfgbex.lmp │ ├── c_end.lmp │ ├── c_start.lmp │ ├── chexdeh.lmp │ ├── crblue.lmp │ ├── crblue2.lmp │ ├── crbrick.lmp │ ├── crbrown.lmp │ ├── crgold.lmp │ ├── crgray.lmp │ ├── crgreen.lmp │ ├── crorange.lmp │ ├── crred.lmp │ ├── crtan.lmp │ ├── cryellow.lmp │ ├── endboom.lmp │ ├── gammatbl.lmp │ ├── glfp.lmp │ ├── glshadow.lmp │ ├── glvp.lmp │ ├── m_ammo.lmp │ ├── m_armour.lmp │ ├── m_arrow.lmp │ ├── m_health.lmp │ ├── m_key.lmp │ ├── m_mark.lmp │ ├── m_normal.lmp │ ├── m_power.lmp │ ├── m_shadow.lmp │ ├── m_weap.lmp │ ├── nervebex.lmp │ ├── sinetabl.lmp │ ├── switches.lmp │ ├── tangtabl.lmp │ ├── tantoang.lmp │ └── watermap.lmp ├── palette.rgb ├── prboom.txt ├── rd_graphic.c ├── rd_graphic.h ├── rd_main.c ├── rd_output.c ├── rd_output.h ├── rd_palette.c ├── rd_palette.h ├── rd_sound.c ├── rd_sound.h ├── rd_util.c ├── rd_util.h ├── sounds │ ├── dsdgact.wav │ ├── dsdgatk.wav │ ├── dsdgdth.wav │ ├── dsdgpain.wav │ └── dsdgsit.wav ├── sprites │ ├── dogsa1.ppm │ ├── dogsa2.ppm │ ├── dogsa3.ppm │ ├── dogsa4.ppm │ ├── dogsa5.ppm │ ├── dogsa6.ppm │ ├── dogsa7.ppm │ ├── dogsa8.ppm │ ├── dogsb1.ppm │ ├── dogsb2.ppm │ ├── dogsb3.ppm │ ├── dogsb4.ppm │ ├── dogsb5.ppm │ ├── dogsb6.ppm │ ├── dogsb7.ppm │ ├── dogsb8.ppm │ ├── dogsc1.ppm │ ├── dogsc2.ppm │ ├── dogsc3.ppm │ ├── dogsc4.ppm │ ├── dogsc5.ppm │ ├── dogsc6.ppm │ ├── dogsc7.ppm │ ├── dogsc8.ppm │ ├── dogsd1.ppm │ ├── dogsd2.ppm │ ├── dogsd3.ppm │ ├── dogsd4.ppm │ ├── dogsd5.ppm │ ├── dogsd6.ppm │ ├── dogsd7.ppm │ ├── dogsd8.ppm │ ├── dogse1.ppm │ ├── dogse2.ppm │ ├── dogse3.ppm │ ├── dogse4.ppm │ ├── dogse5.ppm │ ├── dogse6.ppm │ ├── dogse7.ppm │ ├── dogse8.ppm │ ├── dogsf1.ppm │ ├── dogsf2.ppm │ ├── dogsf3.ppm │ ├── dogsf4.ppm │ ├── dogsf5.ppm │ ├── dogsf6.ppm │ ├── dogsf7.ppm │ ├── dogsf8.ppm │ ├── dogsg1.ppm │ ├── dogsg2.ppm │ ├── dogsg3.ppm │ ├── dogsg4.ppm │ ├── dogsg5.ppm │ ├── dogsg6.ppm │ ├── dogsg7.ppm │ ├── dogsg8.ppm │ ├── dogsh1.ppm │ ├── dogsh2.ppm │ ├── dogsh3.ppm │ ├── dogsh4.ppm │ ├── dogsh5.ppm │ ├── dogsh6.ppm │ ├── dogsh7.ppm │ ├── dogsh8.ppm │ ├── dogsi0.ppm │ ├── dogsj0.ppm │ ├── dogsk0.ppm │ ├── dogsl0.ppm │ ├── dogsm0.ppm │ ├── dogsn0.ppm │ ├── pls1a0.ppm │ ├── pls1b0.ppm │ ├── pls1c0.ppm │ ├── pls1d0.ppm │ ├── pls1e0.ppm │ ├── pls1f0.ppm │ ├── pls1g0.ppm │ ├── pls2a0.ppm │ ├── pls2b0.ppm │ ├── pls2c0.ppm │ ├── pls2d0.ppm │ ├── pls2e0.ppm │ └── tnt1a0.ppm └── vita │ ├── launcher │ └── fnt_buttons.png │ └── sce_sys │ ├── icon0.png │ ├── licenses.txt │ └── livearea │ └── contents │ ├── bg.png │ ├── startup.png │ └── template.xml ├── doc ├── CMakeLists.txt ├── DeePBSPV4specs.txt ├── MBF.txt ├── MBFFAQ.txt ├── README.command-line ├── README.compat ├── README.demos ├── boom.txt ├── prboom-plus-game-server.6 ├── prboom-plus-history.html ├── prboom-plus-history.txt ├── prboom-plus-usage.txt ├── prboom-plus.6 ├── prboom-plus.cfg.5 └── umapinfo.txt ├── src ├── CMakeLists.txt ├── MAC │ ├── ANSIString.h │ ├── ANSIString.m │ ├── ConsoleController.h │ ├── ConsoleController.m │ ├── DrawerButton.h │ ├── DrawerButton.m │ ├── English.lproj │ │ └── MainMenu.nib │ │ │ ├── classes.nib │ │ │ ├── info.nib │ │ │ └── keyedobjects.nib │ ├── FileButtonController.h │ ├── FileButtonController.m │ ├── Info.plist │ ├── Launcher.icns │ ├── LauncherApp.h │ ├── LauncherApp.m │ ├── LauncherMain.m │ ├── PrBoom.icns │ ├── PrBoom.sdef │ ├── ResolutionDataSource.h │ ├── ResolutionDataSource.m │ ├── TODO │ ├── UKFileWatcher.h │ ├── UKKQueue.h │ ├── UKKQueue.m │ ├── UKMainThreadProxy.h │ ├── UKMainThreadProxy.m │ ├── WadViewController.h │ ├── WadViewController.m │ ├── i_sound.m │ └── i_system.m ├── MUSIC │ ├── dbopl.c │ ├── dbopl.h │ ├── dumbplayer.c │ ├── dumbplayer.h │ ├── flplayer.c │ ├── flplayer.h │ ├── madplayer.c │ ├── madplayer.h │ ├── midifile.c │ ├── midifile.h │ ├── musicplayer.h │ ├── opl.c │ ├── opl.h │ ├── opl_queue.c │ ├── opl_queue.h │ ├── oplplayer.c │ ├── oplplayer.h │ ├── portmidiplayer.c │ ├── portmidiplayer.h │ ├── vorbisplayer.c │ └── vorbisplayer.h ├── PCSOUND │ ├── pcsound.c │ ├── pcsound.h │ ├── pcsound_linux.c │ ├── pcsound_sdl.c │ └── pcsound_win32.c ├── POSIX │ └── i_system.c ├── SDL │ ├── SDL_windows.h │ ├── SDL_windows_main.c │ ├── i_joy.c │ ├── i_main.c │ ├── i_network.c │ ├── i_sound.c │ ├── i_sshot.c │ ├── i_system.c │ └── i_video.c ├── TEXTSCREEN │ ├── doomkeys.h │ ├── txt_font.h │ ├── txt_largefont.h │ ├── txt_main.h │ ├── txt_sdl.c │ ├── txt_sdl.h │ └── txt_smallfont.h ├── am_map.c ├── am_map.h ├── d_client.c ├── d_deh.c ├── d_deh.h ├── d_englsh.h ├── d_event.h ├── d_ipxgate.c ├── d_items.c ├── d_items.h ├── d_main.c ├── d_main.h ├── d_net.h ├── d_player.h ├── d_server.c ├── d_think.h ├── d_ticcmd.h ├── doomdata.h ├── doomdef.c ├── doomdef.h ├── doomstat.c ├── doomstat.h ├── doomtype.h ├── dstrings.c ├── dstrings.h ├── e6y.c ├── e6y.h ├── e6y_launcher.c ├── e6y_launcher.h ├── f_finale.c ├── f_finale.h ├── f_finale2.c ├── f_wipe.c ├── f_wipe.h ├── g_game.c ├── g_game.h ├── g_overflow.c ├── g_overflow.h ├── gl_clipper.c ├── gl_detail.c ├── gl_drawinfo.c ├── gl_fbo.c ├── gl_gamma.c ├── gl_hires.c ├── gl_hqresize.c ├── gl_intern.h ├── gl_light.c ├── gl_main.c ├── gl_map.c ├── gl_missingtexture.c ├── gl_opengl.c ├── gl_opengl.h ├── gl_preprocess.c ├── gl_shader.c ├── gl_shadow.c ├── gl_sky.c ├── gl_struct.h ├── gl_texture.c ├── gl_vertex.c ├── gl_wipe.c ├── hu_lib.c ├── hu_lib.h ├── hu_stuff.c ├── hu_stuff.h ├── hu_tracers.c ├── hu_tracers.h ├── i_capture.c ├── i_capture.h ├── i_joy.h ├── i_main.h ├── i_network.h ├── i_pcsound.c ├── i_pcsound.h ├── i_sound.h ├── i_system.h ├── i_video.h ├── icon.c ├── info.c ├── info.h ├── lprintf.c ├── lprintf.h ├── m_argv.c ├── m_argv.h ├── m_bbox.c ├── m_bbox.h ├── m_cheat.c ├── m_cheat.h ├── m_fixed.h ├── m_menu.c ├── m_menu.h ├── m_misc.c ├── m_misc.h ├── m_random.c ├── m_random.h ├── m_swap.h ├── md5.c ├── md5.h ├── memio.c ├── memio.h ├── mus2mid.c ├── mus2mid.h ├── p_ceilng.c ├── p_checksum.c ├── p_checksum.h ├── p_doors.c ├── p_enemy.c ├── p_enemy.h ├── p_floor.c ├── p_genlin.c ├── p_inter.c ├── p_inter.h ├── p_lights.c ├── p_map.c ├── p_map.h ├── p_maputl.c ├── p_maputl.h ├── p_mobj.c ├── p_mobj.h ├── p_plats.c ├── p_pspr.c ├── p_pspr.h ├── p_saveg.c ├── p_saveg.h ├── p_setup.c ├── p_setup.h ├── p_sight.c ├── p_spec.c ├── p_spec.h ├── p_switch.c ├── p_telept.c ├── p_tick.c ├── p_tick.h ├── p_user.c ├── p_user.h ├── protocol.h ├── r_bsp.c ├── r_bsp.h ├── r_data.c ├── r_data.h ├── r_defs.h ├── r_demo.c ├── r_demo.h ├── r_draw.c ├── r_draw.h ├── r_drawcolpipeline.inl ├── r_drawcolumn.inl ├── r_drawflush.inl ├── r_drawspan.inl ├── r_filter.c ├── r_filter.h ├── r_fps.c ├── r_fps.h ├── r_main.c ├── r_main.h ├── r_patch.c ├── r_patch.h ├── r_plane.c ├── r_plane.h ├── r_segs.c ├── r_segs.h ├── r_sky.c ├── r_sky.h ├── r_state.h ├── r_things.c ├── r_things.h ├── s_advsound.c ├── s_advsound.h ├── s_sound.c ├── s_sound.h ├── sc_man.c ├── sc_man.h ├── scanner.cpp ├── scanner.h ├── sounds.c ├── sounds.h ├── st_lib.c ├── st_lib.h ├── st_stuff.c ├── st_stuff.h ├── statdump.c ├── statdump.h ├── tables.c ├── tables.h ├── umapinfo.cpp ├── umapinfo.h ├── v_video.c ├── v_video.h ├── version.c ├── version.h ├── w_memcache.c ├── w_mmap.c ├── w_wad.c ├── w_wad.h ├── wi_stuff.c ├── wi_stuff.h ├── xs_Float.h ├── z_bmalloc.c ├── z_bmalloc.h ├── z_zone.c └── z_zone.h ├── tests ├── boxes.pl ├── crosses.pl ├── demo-testing.csv ├── donut_av.wad ├── heightlist_overflow.wad ├── lmpwatch.pl ├── missed_back_side.zip ├── runtests.py ├── sky.wad └── weaponinfo.wad └── vita ├── launcher ├── CMakeLists.txt ├── configs.c ├── configs.h ├── files.c ├── files.h ├── input.c ├── input.h ├── main.c ├── net.c ├── net.h ├── screen.c ├── screen.h ├── ui.c ├── ui.h ├── ui_audio.c ├── ui_input.c ├── ui_main.c ├── ui_misc.c ├── ui_net.c ├── ui_pwads.c ├── ui_video.c ├── utils.c └── utils.h └── libtess ├── CMakeLists.txt ├── README ├── alg-outline ├── dict-list.h ├── dict.c ├── dict.h ├── geom.c ├── geom.h ├── glu.h ├── gluos.h ├── memalloc.c ├── memalloc.h ├── mesh.c ├── mesh.h ├── normal.c ├── normal.h ├── priorityq-heap.c ├── priorityq-heap.h ├── priorityq-sort.h ├── priorityq.c ├── priorityq.h ├── render.c ├── render.h ├── sweep.c ├── sweep.h ├── tess.c ├── tess.h ├── tessmono.c └── tessmono.h /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/continuous_integration.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/.github/workflows/continuous_integration.yml -------------------------------------------------------------------------------- /.github/workflows/copy_dependencies.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/.github/workflows/copy_dependencies.cmd -------------------------------------------------------------------------------- /.github/workflows/dumb/CONTROL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/.github/workflows/dumb/CONTROL -------------------------------------------------------------------------------- /.github/workflows/dumb/msvc-build-fixes.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/.github/workflows/dumb/msvc-build-fixes.patch -------------------------------------------------------------------------------- /.github/workflows/dumb/portfile.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/.github/workflows/dumb/portfile.cmake -------------------------------------------------------------------------------- /.github/workflows/portmidi/portfile.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/.github/workflows/portmidi/portfile.cmake -------------------------------------------------------------------------------- /.github/workflows/portmidi/winmm-x64.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/.github/workflows/portmidi/winmm-x64.patch -------------------------------------------------------------------------------- /.github/workflows/windows_dependencies.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/.github/workflows/windows_dependencies.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/.gitmodules -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/README.md -------------------------------------------------------------------------------- /prboom2/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/AUTHORS -------------------------------------------------------------------------------- /prboom2/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/CMakeLists.txt -------------------------------------------------------------------------------- /prboom2/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/COPYING -------------------------------------------------------------------------------- /prboom2/FAQ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/FAQ -------------------------------------------------------------------------------- /prboom2/ICONS/icons.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/ICONS/icons.rc -------------------------------------------------------------------------------- /prboom2/ICONS/prboom-plus.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/ICONS/prboom-plus.bash -------------------------------------------------------------------------------- /prboom2/ICONS/prboom-plus.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/ICONS/prboom-plus.desktop -------------------------------------------------------------------------------- /prboom2/ICONS/prboom-plus.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/ICONS/prboom-plus.exe.manifest -------------------------------------------------------------------------------- /prboom2/ICONS/prboom-plus.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/ICONS/prboom-plus.ico -------------------------------------------------------------------------------- /prboom2/ICONS/prboom-plus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/ICONS/prboom-plus.svg -------------------------------------------------------------------------------- /prboom2/ICONS/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/ICONS/resource.h -------------------------------------------------------------------------------- /prboom2/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/INSTALL -------------------------------------------------------------------------------- /prboom2/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/NEWS -------------------------------------------------------------------------------- /prboom2/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/README -------------------------------------------------------------------------------- /prboom2/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/TODO -------------------------------------------------------------------------------- /prboom2/cmake/FindDUMB.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/cmake/FindDUMB.cmake -------------------------------------------------------------------------------- /prboom2/cmake/FindFluidSynth.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/cmake/FindFluidSynth.cmake -------------------------------------------------------------------------------- /prboom2/cmake/FindLibMad.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/cmake/FindLibMad.cmake -------------------------------------------------------------------------------- /prboom2/cmake/FindOgg.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/cmake/FindOgg.cmake -------------------------------------------------------------------------------- /prboom2/cmake/FindPCREPOSIX.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/cmake/FindPCREPOSIX.cmake -------------------------------------------------------------------------------- /prboom2/cmake/FindPortMidi.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/cmake/FindPortMidi.cmake -------------------------------------------------------------------------------- /prboom2/cmake/FindSDL2.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/cmake/FindSDL2.cmake -------------------------------------------------------------------------------- /prboom2/cmake/FindSDL2_image.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/cmake/FindSDL2_image.cmake -------------------------------------------------------------------------------- /prboom2/cmake/FindSDL2_mixer.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/cmake/FindSDL2_mixer.cmake -------------------------------------------------------------------------------- /prboom2/cmake/FindSDL2_net.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/cmake/FindSDL2_net.cmake -------------------------------------------------------------------------------- /prboom2/cmake/FindVorbis.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/cmake/FindVorbis.cmake -------------------------------------------------------------------------------- /prboom2/cmake/TargetArch.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/cmake/TargetArch.cmake -------------------------------------------------------------------------------- /prboom2/cmake/config.h.cin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/cmake/config.h.cin -------------------------------------------------------------------------------- /prboom2/data/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/CMakeLists.txt -------------------------------------------------------------------------------- /prboom2/data/convert-icon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/convert-icon -------------------------------------------------------------------------------- /prboom2/data/flats/-n0_tex-.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/flats/-n0_tex-.ppm -------------------------------------------------------------------------------- /prboom2/data/graphics/boxcc.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/graphics/boxcc.ppm -------------------------------------------------------------------------------- /prboom2/data/graphics/boxcl.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/graphics/boxcl.ppm -------------------------------------------------------------------------------- /prboom2/data/graphics/boxcr.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/graphics/boxcr.ppm -------------------------------------------------------------------------------- /prboom2/data/graphics/boxlc.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/graphics/boxlc.ppm -------------------------------------------------------------------------------- /prboom2/data/graphics/boxll.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/graphics/boxll.ppm -------------------------------------------------------------------------------- /prboom2/data/graphics/boxlr.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/graphics/boxlr.ppm -------------------------------------------------------------------------------- /prboom2/data/graphics/boxuc.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/graphics/boxuc.ppm -------------------------------------------------------------------------------- /prboom2/data/graphics/boxul.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/graphics/boxul.ppm -------------------------------------------------------------------------------- /prboom2/data/graphics/boxur.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/graphics/boxur.ppm -------------------------------------------------------------------------------- /prboom2/data/graphics/cross1.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/graphics/cross1.ppm -------------------------------------------------------------------------------- /prboom2/data/graphics/cross2.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/graphics/cross2.ppm -------------------------------------------------------------------------------- /prboom2/data/graphics/cross3.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/graphics/cross3.ppm -------------------------------------------------------------------------------- /prboom2/data/graphics/dig0.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/graphics/dig0.ppm -------------------------------------------------------------------------------- /prboom2/data/graphics/dig1.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/graphics/dig1.ppm -------------------------------------------------------------------------------- /prboom2/data/graphics/dig2.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/graphics/dig2.ppm -------------------------------------------------------------------------------- /prboom2/data/graphics/dig3.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/graphics/dig3.ppm -------------------------------------------------------------------------------- /prboom2/data/graphics/dig4.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/graphics/dig4.ppm -------------------------------------------------------------------------------- /prboom2/data/graphics/dig45.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/graphics/dig45.ppm -------------------------------------------------------------------------------- /prboom2/data/graphics/dig47.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/graphics/dig47.ppm -------------------------------------------------------------------------------- /prboom2/data/graphics/dig5.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/graphics/dig5.ppm -------------------------------------------------------------------------------- /prboom2/data/graphics/dig58.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/graphics/dig58.ppm -------------------------------------------------------------------------------- /prboom2/data/graphics/dig6.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/graphics/dig6.ppm -------------------------------------------------------------------------------- /prboom2/data/graphics/dig7.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/graphics/dig7.ppm -------------------------------------------------------------------------------- /prboom2/data/graphics/dig8.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/graphics/dig8.ppm -------------------------------------------------------------------------------- /prboom2/data/graphics/dig9.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/graphics/dig9.ppm -------------------------------------------------------------------------------- /prboom2/data/graphics/dig91.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/graphics/dig91.ppm -------------------------------------------------------------------------------- /prboom2/data/graphics/dig93.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/graphics/dig93.ppm -------------------------------------------------------------------------------- /prboom2/data/graphics/diga.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/graphics/diga.ppm -------------------------------------------------------------------------------- /prboom2/data/graphics/digb.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/graphics/digb.ppm -------------------------------------------------------------------------------- /prboom2/data/graphics/digc.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/graphics/digc.ppm -------------------------------------------------------------------------------- /prboom2/data/graphics/digd.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/graphics/digd.ppm -------------------------------------------------------------------------------- /prboom2/data/graphics/dige.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/graphics/dige.ppm -------------------------------------------------------------------------------- /prboom2/data/graphics/digf.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/graphics/digf.ppm -------------------------------------------------------------------------------- /prboom2/data/graphics/digg.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/graphics/digg.ppm -------------------------------------------------------------------------------- /prboom2/data/graphics/digh.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/graphics/digh.ppm -------------------------------------------------------------------------------- /prboom2/data/graphics/digi.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/graphics/digi.ppm -------------------------------------------------------------------------------- /prboom2/data/graphics/digj.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/graphics/digj.ppm -------------------------------------------------------------------------------- /prboom2/data/graphics/digk.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/graphics/digk.ppm -------------------------------------------------------------------------------- /prboom2/data/graphics/digl.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/graphics/digl.ppm -------------------------------------------------------------------------------- /prboom2/data/graphics/digm.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/graphics/digm.ppm -------------------------------------------------------------------------------- /prboom2/data/graphics/dign.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/graphics/dign.ppm -------------------------------------------------------------------------------- /prboom2/data/graphics/digo.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/graphics/digo.ppm -------------------------------------------------------------------------------- /prboom2/data/graphics/digp.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/graphics/digp.ppm -------------------------------------------------------------------------------- /prboom2/data/graphics/digq.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/graphics/digq.ppm -------------------------------------------------------------------------------- /prboom2/data/graphics/digr.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/graphics/digr.ppm -------------------------------------------------------------------------------- /prboom2/data/graphics/digs.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/graphics/digs.ppm -------------------------------------------------------------------------------- /prboom2/data/graphics/digt.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/graphics/digt.ppm -------------------------------------------------------------------------------- /prboom2/data/graphics/digu.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/graphics/digu.ppm -------------------------------------------------------------------------------- /prboom2/data/graphics/digv.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/graphics/digv.ppm -------------------------------------------------------------------------------- /prboom2/data/graphics/digw.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/graphics/digw.ppm -------------------------------------------------------------------------------- /prboom2/data/graphics/digx.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/graphics/digx.ppm -------------------------------------------------------------------------------- /prboom2/data/graphics/digy.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/graphics/digy.ppm -------------------------------------------------------------------------------- /prboom2/data/graphics/digz.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/graphics/digz.ppm -------------------------------------------------------------------------------- /prboom2/data/graphics/m_butt1.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/graphics/m_butt1.ppm -------------------------------------------------------------------------------- /prboom2/data/graphics/m_butt2.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/graphics/m_butt2.ppm -------------------------------------------------------------------------------- /prboom2/data/graphics/m_colors.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/graphics/m_colors.ppm -------------------------------------------------------------------------------- /prboom2/data/graphics/m_palno.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/graphics/m_palno.ppm -------------------------------------------------------------------------------- /prboom2/data/graphics/m_palsel.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/graphics/m_palsel.ppm -------------------------------------------------------------------------------- /prboom2/data/graphics/m_vbox.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/graphics/m_vbox.ppm -------------------------------------------------------------------------------- /prboom2/data/graphics/stbr123.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/graphics/stbr123.ppm -------------------------------------------------------------------------------- /prboom2/data/graphics/stbr124.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/graphics/stbr124.ppm -------------------------------------------------------------------------------- /prboom2/data/graphics/stbr125.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/graphics/stbr125.ppm -------------------------------------------------------------------------------- /prboom2/data/graphics/stbr126.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/graphics/stbr126.ppm -------------------------------------------------------------------------------- /prboom2/data/graphics/stbr127.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/graphics/stbr127.ppm -------------------------------------------------------------------------------- /prboom2/data/graphics/stcfn096.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/graphics/stcfn096.ppm -------------------------------------------------------------------------------- /prboom2/data/graphics/stkeys6.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/graphics/stkeys6.ppm -------------------------------------------------------------------------------- /prboom2/data/graphics/stkeys7.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/graphics/stkeys7.ppm -------------------------------------------------------------------------------- /prboom2/data/graphics/stkeys8.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/graphics/stkeys8.ppm -------------------------------------------------------------------------------- /prboom2/data/lumps/-prbhud-.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/lumps/-prbhud-.lmp -------------------------------------------------------------------------------- /prboom2/data/lumps/animated.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/lumps/animated.lmp -------------------------------------------------------------------------------- /prboom2/data/lumps/b_end.lmp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /prboom2/data/lumps/b_start.lmp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /prboom2/data/lumps/bfgbex.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/lumps/bfgbex.lmp -------------------------------------------------------------------------------- /prboom2/data/lumps/c_end.lmp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /prboom2/data/lumps/c_start.lmp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /prboom2/data/lumps/chexdeh.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/lumps/chexdeh.lmp -------------------------------------------------------------------------------- /prboom2/data/lumps/crblue.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/lumps/crblue.lmp -------------------------------------------------------------------------------- /prboom2/data/lumps/crblue2.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/lumps/crblue2.lmp -------------------------------------------------------------------------------- /prboom2/data/lumps/crbrick.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/lumps/crbrick.lmp -------------------------------------------------------------------------------- /prboom2/data/lumps/crbrown.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/lumps/crbrown.lmp -------------------------------------------------------------------------------- /prboom2/data/lumps/crgold.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/lumps/crgold.lmp -------------------------------------------------------------------------------- /prboom2/data/lumps/crgray.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/lumps/crgray.lmp -------------------------------------------------------------------------------- /prboom2/data/lumps/crgreen.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/lumps/crgreen.lmp -------------------------------------------------------------------------------- /prboom2/data/lumps/crorange.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/lumps/crorange.lmp -------------------------------------------------------------------------------- /prboom2/data/lumps/crred.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/lumps/crred.lmp -------------------------------------------------------------------------------- /prboom2/data/lumps/crtan.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/lumps/crtan.lmp -------------------------------------------------------------------------------- /prboom2/data/lumps/cryellow.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/lumps/cryellow.lmp -------------------------------------------------------------------------------- /prboom2/data/lumps/endboom.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/lumps/endboom.lmp -------------------------------------------------------------------------------- /prboom2/data/lumps/gammatbl.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/lumps/gammatbl.lmp -------------------------------------------------------------------------------- /prboom2/data/lumps/glfp.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/lumps/glfp.lmp -------------------------------------------------------------------------------- /prboom2/data/lumps/glshadow.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/lumps/glshadow.lmp -------------------------------------------------------------------------------- /prboom2/data/lumps/glvp.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/lumps/glvp.lmp -------------------------------------------------------------------------------- /prboom2/data/lumps/m_ammo.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/lumps/m_ammo.lmp -------------------------------------------------------------------------------- /prboom2/data/lumps/m_armour.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/lumps/m_armour.lmp -------------------------------------------------------------------------------- /prboom2/data/lumps/m_arrow.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/lumps/m_arrow.lmp -------------------------------------------------------------------------------- /prboom2/data/lumps/m_health.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/lumps/m_health.lmp -------------------------------------------------------------------------------- /prboom2/data/lumps/m_key.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/lumps/m_key.lmp -------------------------------------------------------------------------------- /prboom2/data/lumps/m_mark.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/lumps/m_mark.lmp -------------------------------------------------------------------------------- /prboom2/data/lumps/m_normal.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/lumps/m_normal.lmp -------------------------------------------------------------------------------- /prboom2/data/lumps/m_power.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/lumps/m_power.lmp -------------------------------------------------------------------------------- /prboom2/data/lumps/m_shadow.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/lumps/m_shadow.lmp -------------------------------------------------------------------------------- /prboom2/data/lumps/m_weap.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/lumps/m_weap.lmp -------------------------------------------------------------------------------- /prboom2/data/lumps/nervebex.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/lumps/nervebex.lmp -------------------------------------------------------------------------------- /prboom2/data/lumps/sinetabl.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/lumps/sinetabl.lmp -------------------------------------------------------------------------------- /prboom2/data/lumps/switches.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/lumps/switches.lmp -------------------------------------------------------------------------------- /prboom2/data/lumps/tangtabl.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/lumps/tangtabl.lmp -------------------------------------------------------------------------------- /prboom2/data/lumps/tantoang.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/lumps/tantoang.lmp -------------------------------------------------------------------------------- /prboom2/data/lumps/watermap.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/lumps/watermap.lmp -------------------------------------------------------------------------------- /prboom2/data/palette.rgb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/palette.rgb -------------------------------------------------------------------------------- /prboom2/data/prboom.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/prboom.txt -------------------------------------------------------------------------------- /prboom2/data/rd_graphic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/rd_graphic.c -------------------------------------------------------------------------------- /prboom2/data/rd_graphic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/rd_graphic.h -------------------------------------------------------------------------------- /prboom2/data/rd_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/rd_main.c -------------------------------------------------------------------------------- /prboom2/data/rd_output.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/rd_output.c -------------------------------------------------------------------------------- /prboom2/data/rd_output.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/rd_output.h -------------------------------------------------------------------------------- /prboom2/data/rd_palette.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/rd_palette.c -------------------------------------------------------------------------------- /prboom2/data/rd_palette.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/rd_palette.h -------------------------------------------------------------------------------- /prboom2/data/rd_sound.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/rd_sound.c -------------------------------------------------------------------------------- /prboom2/data/rd_sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/rd_sound.h -------------------------------------------------------------------------------- /prboom2/data/rd_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/rd_util.c -------------------------------------------------------------------------------- /prboom2/data/rd_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/rd_util.h -------------------------------------------------------------------------------- /prboom2/data/sounds/dsdgact.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/sounds/dsdgact.wav -------------------------------------------------------------------------------- /prboom2/data/sounds/dsdgatk.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/sounds/dsdgatk.wav -------------------------------------------------------------------------------- /prboom2/data/sounds/dsdgdth.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/sounds/dsdgdth.wav -------------------------------------------------------------------------------- /prboom2/data/sounds/dsdgpain.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/sounds/dsdgpain.wav -------------------------------------------------------------------------------- /prboom2/data/sounds/dsdgsit.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/sounds/dsdgsit.wav -------------------------------------------------------------------------------- /prboom2/data/sprites/dogsa1.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/sprites/dogsa1.ppm -------------------------------------------------------------------------------- /prboom2/data/sprites/dogsa2.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/sprites/dogsa2.ppm -------------------------------------------------------------------------------- /prboom2/data/sprites/dogsa3.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/sprites/dogsa3.ppm -------------------------------------------------------------------------------- /prboom2/data/sprites/dogsa4.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/sprites/dogsa4.ppm -------------------------------------------------------------------------------- /prboom2/data/sprites/dogsa5.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/sprites/dogsa5.ppm -------------------------------------------------------------------------------- /prboom2/data/sprites/dogsa6.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/sprites/dogsa6.ppm -------------------------------------------------------------------------------- /prboom2/data/sprites/dogsa7.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/sprites/dogsa7.ppm -------------------------------------------------------------------------------- /prboom2/data/sprites/dogsa8.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/sprites/dogsa8.ppm -------------------------------------------------------------------------------- /prboom2/data/sprites/dogsb1.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/sprites/dogsb1.ppm -------------------------------------------------------------------------------- /prboom2/data/sprites/dogsb2.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/sprites/dogsb2.ppm -------------------------------------------------------------------------------- /prboom2/data/sprites/dogsb3.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/sprites/dogsb3.ppm -------------------------------------------------------------------------------- /prboom2/data/sprites/dogsb4.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/sprites/dogsb4.ppm -------------------------------------------------------------------------------- /prboom2/data/sprites/dogsb5.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/sprites/dogsb5.ppm -------------------------------------------------------------------------------- /prboom2/data/sprites/dogsb6.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/sprites/dogsb6.ppm -------------------------------------------------------------------------------- /prboom2/data/sprites/dogsb7.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/sprites/dogsb7.ppm -------------------------------------------------------------------------------- /prboom2/data/sprites/dogsb8.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/sprites/dogsb8.ppm -------------------------------------------------------------------------------- /prboom2/data/sprites/dogsc1.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/sprites/dogsc1.ppm -------------------------------------------------------------------------------- /prboom2/data/sprites/dogsc2.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/sprites/dogsc2.ppm -------------------------------------------------------------------------------- /prboom2/data/sprites/dogsc3.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/sprites/dogsc3.ppm -------------------------------------------------------------------------------- /prboom2/data/sprites/dogsc4.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/sprites/dogsc4.ppm -------------------------------------------------------------------------------- /prboom2/data/sprites/dogsc5.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/sprites/dogsc5.ppm -------------------------------------------------------------------------------- /prboom2/data/sprites/dogsc6.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/sprites/dogsc6.ppm -------------------------------------------------------------------------------- /prboom2/data/sprites/dogsc7.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/sprites/dogsc7.ppm -------------------------------------------------------------------------------- /prboom2/data/sprites/dogsc8.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/sprites/dogsc8.ppm -------------------------------------------------------------------------------- /prboom2/data/sprites/dogsd1.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/sprites/dogsd1.ppm -------------------------------------------------------------------------------- /prboom2/data/sprites/dogsd2.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/sprites/dogsd2.ppm -------------------------------------------------------------------------------- /prboom2/data/sprites/dogsd3.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/sprites/dogsd3.ppm -------------------------------------------------------------------------------- /prboom2/data/sprites/dogsd4.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/sprites/dogsd4.ppm -------------------------------------------------------------------------------- /prboom2/data/sprites/dogsd5.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/sprites/dogsd5.ppm -------------------------------------------------------------------------------- /prboom2/data/sprites/dogsd6.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/sprites/dogsd6.ppm -------------------------------------------------------------------------------- /prboom2/data/sprites/dogsd7.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/sprites/dogsd7.ppm -------------------------------------------------------------------------------- /prboom2/data/sprites/dogsd8.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/sprites/dogsd8.ppm -------------------------------------------------------------------------------- /prboom2/data/sprites/dogse1.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/sprites/dogse1.ppm -------------------------------------------------------------------------------- /prboom2/data/sprites/dogse2.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/sprites/dogse2.ppm -------------------------------------------------------------------------------- /prboom2/data/sprites/dogse3.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/sprites/dogse3.ppm -------------------------------------------------------------------------------- /prboom2/data/sprites/dogse4.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/sprites/dogse4.ppm -------------------------------------------------------------------------------- /prboom2/data/sprites/dogse5.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/sprites/dogse5.ppm -------------------------------------------------------------------------------- /prboom2/data/sprites/dogse6.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/sprites/dogse6.ppm -------------------------------------------------------------------------------- /prboom2/data/sprites/dogse7.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/sprites/dogse7.ppm -------------------------------------------------------------------------------- /prboom2/data/sprites/dogse8.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/sprites/dogse8.ppm -------------------------------------------------------------------------------- /prboom2/data/sprites/dogsf1.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/sprites/dogsf1.ppm -------------------------------------------------------------------------------- /prboom2/data/sprites/dogsf2.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/sprites/dogsf2.ppm -------------------------------------------------------------------------------- /prboom2/data/sprites/dogsf3.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/sprites/dogsf3.ppm -------------------------------------------------------------------------------- /prboom2/data/sprites/dogsf4.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/sprites/dogsf4.ppm -------------------------------------------------------------------------------- /prboom2/data/sprites/dogsf5.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/sprites/dogsf5.ppm -------------------------------------------------------------------------------- /prboom2/data/sprites/dogsf6.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/sprites/dogsf6.ppm -------------------------------------------------------------------------------- /prboom2/data/sprites/dogsf7.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/sprites/dogsf7.ppm -------------------------------------------------------------------------------- /prboom2/data/sprites/dogsf8.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/sprites/dogsf8.ppm -------------------------------------------------------------------------------- /prboom2/data/sprites/dogsg1.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/sprites/dogsg1.ppm -------------------------------------------------------------------------------- /prboom2/data/sprites/dogsg2.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/sprites/dogsg2.ppm -------------------------------------------------------------------------------- /prboom2/data/sprites/dogsg3.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/sprites/dogsg3.ppm -------------------------------------------------------------------------------- /prboom2/data/sprites/dogsg4.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/sprites/dogsg4.ppm -------------------------------------------------------------------------------- /prboom2/data/sprites/dogsg5.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/sprites/dogsg5.ppm -------------------------------------------------------------------------------- /prboom2/data/sprites/dogsg6.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/sprites/dogsg6.ppm -------------------------------------------------------------------------------- /prboom2/data/sprites/dogsg7.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/sprites/dogsg7.ppm -------------------------------------------------------------------------------- /prboom2/data/sprites/dogsg8.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/sprites/dogsg8.ppm -------------------------------------------------------------------------------- /prboom2/data/sprites/dogsh1.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/sprites/dogsh1.ppm -------------------------------------------------------------------------------- /prboom2/data/sprites/dogsh2.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/sprites/dogsh2.ppm -------------------------------------------------------------------------------- /prboom2/data/sprites/dogsh3.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/sprites/dogsh3.ppm -------------------------------------------------------------------------------- /prboom2/data/sprites/dogsh4.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/sprites/dogsh4.ppm -------------------------------------------------------------------------------- /prboom2/data/sprites/dogsh5.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/sprites/dogsh5.ppm -------------------------------------------------------------------------------- /prboom2/data/sprites/dogsh6.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/sprites/dogsh6.ppm -------------------------------------------------------------------------------- /prboom2/data/sprites/dogsh7.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/sprites/dogsh7.ppm -------------------------------------------------------------------------------- /prboom2/data/sprites/dogsh8.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/sprites/dogsh8.ppm -------------------------------------------------------------------------------- /prboom2/data/sprites/dogsi0.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/sprites/dogsi0.ppm -------------------------------------------------------------------------------- /prboom2/data/sprites/dogsj0.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/sprites/dogsj0.ppm -------------------------------------------------------------------------------- /prboom2/data/sprites/dogsk0.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/sprites/dogsk0.ppm -------------------------------------------------------------------------------- /prboom2/data/sprites/dogsl0.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/sprites/dogsl0.ppm -------------------------------------------------------------------------------- /prboom2/data/sprites/dogsm0.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/sprites/dogsm0.ppm -------------------------------------------------------------------------------- /prboom2/data/sprites/dogsn0.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/sprites/dogsn0.ppm -------------------------------------------------------------------------------- /prboom2/data/sprites/pls1a0.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/sprites/pls1a0.ppm -------------------------------------------------------------------------------- /prboom2/data/sprites/pls1b0.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/sprites/pls1b0.ppm -------------------------------------------------------------------------------- /prboom2/data/sprites/pls1c0.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/sprites/pls1c0.ppm -------------------------------------------------------------------------------- /prboom2/data/sprites/pls1d0.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/sprites/pls1d0.ppm -------------------------------------------------------------------------------- /prboom2/data/sprites/pls1e0.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/sprites/pls1e0.ppm -------------------------------------------------------------------------------- /prboom2/data/sprites/pls1f0.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/sprites/pls1f0.ppm -------------------------------------------------------------------------------- /prboom2/data/sprites/pls1g0.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/sprites/pls1g0.ppm -------------------------------------------------------------------------------- /prboom2/data/sprites/pls2a0.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/sprites/pls2a0.ppm -------------------------------------------------------------------------------- /prboom2/data/sprites/pls2b0.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/sprites/pls2b0.ppm -------------------------------------------------------------------------------- /prboom2/data/sprites/pls2c0.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/sprites/pls2c0.ppm -------------------------------------------------------------------------------- /prboom2/data/sprites/pls2d0.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/sprites/pls2d0.ppm -------------------------------------------------------------------------------- /prboom2/data/sprites/pls2e0.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/sprites/pls2e0.ppm -------------------------------------------------------------------------------- /prboom2/data/sprites/tnt1a0.ppm: -------------------------------------------------------------------------------- 1 | P6 2 | 1 1 3 | 255 4 | // -------------------------------------------------------------------------------- /prboom2/data/vita/launcher/fnt_buttons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/vita/launcher/fnt_buttons.png -------------------------------------------------------------------------------- /prboom2/data/vita/sce_sys/icon0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/vita/sce_sys/icon0.png -------------------------------------------------------------------------------- /prboom2/data/vita/sce_sys/licenses.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/vita/sce_sys/licenses.txt -------------------------------------------------------------------------------- /prboom2/data/vita/sce_sys/livearea/contents/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/vita/sce_sys/livearea/contents/bg.png -------------------------------------------------------------------------------- /prboom2/data/vita/sce_sys/livearea/contents/startup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/vita/sce_sys/livearea/contents/startup.png -------------------------------------------------------------------------------- /prboom2/data/vita/sce_sys/livearea/contents/template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/data/vita/sce_sys/livearea/contents/template.xml -------------------------------------------------------------------------------- /prboom2/doc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/doc/CMakeLists.txt -------------------------------------------------------------------------------- /prboom2/doc/DeePBSPV4specs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/doc/DeePBSPV4specs.txt -------------------------------------------------------------------------------- /prboom2/doc/MBF.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/doc/MBF.txt -------------------------------------------------------------------------------- /prboom2/doc/MBFFAQ.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/doc/MBFFAQ.txt -------------------------------------------------------------------------------- /prboom2/doc/README.command-line: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/doc/README.command-line -------------------------------------------------------------------------------- /prboom2/doc/README.compat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/doc/README.compat -------------------------------------------------------------------------------- /prboom2/doc/README.demos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/doc/README.demos -------------------------------------------------------------------------------- /prboom2/doc/boom.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/doc/boom.txt -------------------------------------------------------------------------------- /prboom2/doc/prboom-plus-game-server.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/doc/prboom-plus-game-server.6 -------------------------------------------------------------------------------- /prboom2/doc/prboom-plus-history.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/doc/prboom-plus-history.html -------------------------------------------------------------------------------- /prboom2/doc/prboom-plus-history.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/doc/prboom-plus-history.txt -------------------------------------------------------------------------------- /prboom2/doc/prboom-plus-usage.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/doc/prboom-plus-usage.txt -------------------------------------------------------------------------------- /prboom2/doc/prboom-plus.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/doc/prboom-plus.6 -------------------------------------------------------------------------------- /prboom2/doc/prboom-plus.cfg.5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/doc/prboom-plus.cfg.5 -------------------------------------------------------------------------------- /prboom2/doc/umapinfo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/doc/umapinfo.txt -------------------------------------------------------------------------------- /prboom2/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/CMakeLists.txt -------------------------------------------------------------------------------- /prboom2/src/MAC/ANSIString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/MAC/ANSIString.h -------------------------------------------------------------------------------- /prboom2/src/MAC/ANSIString.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/MAC/ANSIString.m -------------------------------------------------------------------------------- /prboom2/src/MAC/ConsoleController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/MAC/ConsoleController.h -------------------------------------------------------------------------------- /prboom2/src/MAC/ConsoleController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/MAC/ConsoleController.m -------------------------------------------------------------------------------- /prboom2/src/MAC/DrawerButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/MAC/DrawerButton.h -------------------------------------------------------------------------------- /prboom2/src/MAC/DrawerButton.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/MAC/DrawerButton.m -------------------------------------------------------------------------------- /prboom2/src/MAC/English.lproj/MainMenu.nib/classes.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/MAC/English.lproj/MainMenu.nib/classes.nib -------------------------------------------------------------------------------- /prboom2/src/MAC/English.lproj/MainMenu.nib/info.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/MAC/English.lproj/MainMenu.nib/info.nib -------------------------------------------------------------------------------- /prboom2/src/MAC/English.lproj/MainMenu.nib/keyedobjects.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/MAC/English.lproj/MainMenu.nib/keyedobjects.nib -------------------------------------------------------------------------------- /prboom2/src/MAC/FileButtonController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/MAC/FileButtonController.h -------------------------------------------------------------------------------- /prboom2/src/MAC/FileButtonController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/MAC/FileButtonController.m -------------------------------------------------------------------------------- /prboom2/src/MAC/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/MAC/Info.plist -------------------------------------------------------------------------------- /prboom2/src/MAC/Launcher.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/MAC/Launcher.icns -------------------------------------------------------------------------------- /prboom2/src/MAC/LauncherApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/MAC/LauncherApp.h -------------------------------------------------------------------------------- /prboom2/src/MAC/LauncherApp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/MAC/LauncherApp.m -------------------------------------------------------------------------------- /prboom2/src/MAC/LauncherMain.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/MAC/LauncherMain.m -------------------------------------------------------------------------------- /prboom2/src/MAC/PrBoom.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/MAC/PrBoom.icns -------------------------------------------------------------------------------- /prboom2/src/MAC/PrBoom.sdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/MAC/PrBoom.sdef -------------------------------------------------------------------------------- /prboom2/src/MAC/ResolutionDataSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/MAC/ResolutionDataSource.h -------------------------------------------------------------------------------- /prboom2/src/MAC/ResolutionDataSource.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/MAC/ResolutionDataSource.m -------------------------------------------------------------------------------- /prboom2/src/MAC/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/MAC/TODO -------------------------------------------------------------------------------- /prboom2/src/MAC/UKFileWatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/MAC/UKFileWatcher.h -------------------------------------------------------------------------------- /prboom2/src/MAC/UKKQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/MAC/UKKQueue.h -------------------------------------------------------------------------------- /prboom2/src/MAC/UKKQueue.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/MAC/UKKQueue.m -------------------------------------------------------------------------------- /prboom2/src/MAC/UKMainThreadProxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/MAC/UKMainThreadProxy.h -------------------------------------------------------------------------------- /prboom2/src/MAC/UKMainThreadProxy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/MAC/UKMainThreadProxy.m -------------------------------------------------------------------------------- /prboom2/src/MAC/WadViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/MAC/WadViewController.h -------------------------------------------------------------------------------- /prboom2/src/MAC/WadViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/MAC/WadViewController.m -------------------------------------------------------------------------------- /prboom2/src/MAC/i_sound.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/MAC/i_sound.m -------------------------------------------------------------------------------- /prboom2/src/MAC/i_system.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/MAC/i_system.m -------------------------------------------------------------------------------- /prboom2/src/MUSIC/dbopl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/MUSIC/dbopl.c -------------------------------------------------------------------------------- /prboom2/src/MUSIC/dbopl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/MUSIC/dbopl.h -------------------------------------------------------------------------------- /prboom2/src/MUSIC/dumbplayer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/MUSIC/dumbplayer.c -------------------------------------------------------------------------------- /prboom2/src/MUSIC/dumbplayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/MUSIC/dumbplayer.h -------------------------------------------------------------------------------- /prboom2/src/MUSIC/flplayer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/MUSIC/flplayer.c -------------------------------------------------------------------------------- /prboom2/src/MUSIC/flplayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/MUSIC/flplayer.h -------------------------------------------------------------------------------- /prboom2/src/MUSIC/madplayer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/MUSIC/madplayer.c -------------------------------------------------------------------------------- /prboom2/src/MUSIC/madplayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/MUSIC/madplayer.h -------------------------------------------------------------------------------- /prboom2/src/MUSIC/midifile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/MUSIC/midifile.c -------------------------------------------------------------------------------- /prboom2/src/MUSIC/midifile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/MUSIC/midifile.h -------------------------------------------------------------------------------- /prboom2/src/MUSIC/musicplayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/MUSIC/musicplayer.h -------------------------------------------------------------------------------- /prboom2/src/MUSIC/opl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/MUSIC/opl.c -------------------------------------------------------------------------------- /prboom2/src/MUSIC/opl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/MUSIC/opl.h -------------------------------------------------------------------------------- /prboom2/src/MUSIC/opl_queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/MUSIC/opl_queue.c -------------------------------------------------------------------------------- /prboom2/src/MUSIC/opl_queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/MUSIC/opl_queue.h -------------------------------------------------------------------------------- /prboom2/src/MUSIC/oplplayer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/MUSIC/oplplayer.c -------------------------------------------------------------------------------- /prboom2/src/MUSIC/oplplayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/MUSIC/oplplayer.h -------------------------------------------------------------------------------- /prboom2/src/MUSIC/portmidiplayer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/MUSIC/portmidiplayer.c -------------------------------------------------------------------------------- /prboom2/src/MUSIC/portmidiplayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/MUSIC/portmidiplayer.h -------------------------------------------------------------------------------- /prboom2/src/MUSIC/vorbisplayer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/MUSIC/vorbisplayer.c -------------------------------------------------------------------------------- /prboom2/src/MUSIC/vorbisplayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/MUSIC/vorbisplayer.h -------------------------------------------------------------------------------- /prboom2/src/PCSOUND/pcsound.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/PCSOUND/pcsound.c -------------------------------------------------------------------------------- /prboom2/src/PCSOUND/pcsound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/PCSOUND/pcsound.h -------------------------------------------------------------------------------- /prboom2/src/PCSOUND/pcsound_linux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/PCSOUND/pcsound_linux.c -------------------------------------------------------------------------------- /prboom2/src/PCSOUND/pcsound_sdl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/PCSOUND/pcsound_sdl.c -------------------------------------------------------------------------------- /prboom2/src/PCSOUND/pcsound_win32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/PCSOUND/pcsound_win32.c -------------------------------------------------------------------------------- /prboom2/src/POSIX/i_system.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/POSIX/i_system.c -------------------------------------------------------------------------------- /prboom2/src/SDL/SDL_windows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/SDL/SDL_windows.h -------------------------------------------------------------------------------- /prboom2/src/SDL/SDL_windows_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/SDL/SDL_windows_main.c -------------------------------------------------------------------------------- /prboom2/src/SDL/i_joy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/SDL/i_joy.c -------------------------------------------------------------------------------- /prboom2/src/SDL/i_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/SDL/i_main.c -------------------------------------------------------------------------------- /prboom2/src/SDL/i_network.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/SDL/i_network.c -------------------------------------------------------------------------------- /prboom2/src/SDL/i_sound.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/SDL/i_sound.c -------------------------------------------------------------------------------- /prboom2/src/SDL/i_sshot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/SDL/i_sshot.c -------------------------------------------------------------------------------- /prboom2/src/SDL/i_system.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/SDL/i_system.c -------------------------------------------------------------------------------- /prboom2/src/SDL/i_video.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/SDL/i_video.c -------------------------------------------------------------------------------- /prboom2/src/TEXTSCREEN/doomkeys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/TEXTSCREEN/doomkeys.h -------------------------------------------------------------------------------- /prboom2/src/TEXTSCREEN/txt_font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/TEXTSCREEN/txt_font.h -------------------------------------------------------------------------------- /prboom2/src/TEXTSCREEN/txt_largefont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/TEXTSCREEN/txt_largefont.h -------------------------------------------------------------------------------- /prboom2/src/TEXTSCREEN/txt_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/TEXTSCREEN/txt_main.h -------------------------------------------------------------------------------- /prboom2/src/TEXTSCREEN/txt_sdl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/TEXTSCREEN/txt_sdl.c -------------------------------------------------------------------------------- /prboom2/src/TEXTSCREEN/txt_sdl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/TEXTSCREEN/txt_sdl.h -------------------------------------------------------------------------------- /prboom2/src/TEXTSCREEN/txt_smallfont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/TEXTSCREEN/txt_smallfont.h -------------------------------------------------------------------------------- /prboom2/src/am_map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/am_map.c -------------------------------------------------------------------------------- /prboom2/src/am_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/am_map.h -------------------------------------------------------------------------------- /prboom2/src/d_client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/d_client.c -------------------------------------------------------------------------------- /prboom2/src/d_deh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/d_deh.c -------------------------------------------------------------------------------- /prboom2/src/d_deh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/d_deh.h -------------------------------------------------------------------------------- /prboom2/src/d_englsh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/d_englsh.h -------------------------------------------------------------------------------- /prboom2/src/d_event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/d_event.h -------------------------------------------------------------------------------- /prboom2/src/d_ipxgate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/d_ipxgate.c -------------------------------------------------------------------------------- /prboom2/src/d_items.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/d_items.c -------------------------------------------------------------------------------- /prboom2/src/d_items.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/d_items.h -------------------------------------------------------------------------------- /prboom2/src/d_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/d_main.c -------------------------------------------------------------------------------- /prboom2/src/d_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/d_main.h -------------------------------------------------------------------------------- /prboom2/src/d_net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/d_net.h -------------------------------------------------------------------------------- /prboom2/src/d_player.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/d_player.h -------------------------------------------------------------------------------- /prboom2/src/d_server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/d_server.c -------------------------------------------------------------------------------- /prboom2/src/d_think.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/d_think.h -------------------------------------------------------------------------------- /prboom2/src/d_ticcmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/d_ticcmd.h -------------------------------------------------------------------------------- /prboom2/src/doomdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/doomdata.h -------------------------------------------------------------------------------- /prboom2/src/doomdef.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/doomdef.c -------------------------------------------------------------------------------- /prboom2/src/doomdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/doomdef.h -------------------------------------------------------------------------------- /prboom2/src/doomstat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/doomstat.c -------------------------------------------------------------------------------- /prboom2/src/doomstat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/doomstat.h -------------------------------------------------------------------------------- /prboom2/src/doomtype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/doomtype.h -------------------------------------------------------------------------------- /prboom2/src/dstrings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/dstrings.c -------------------------------------------------------------------------------- /prboom2/src/dstrings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/dstrings.h -------------------------------------------------------------------------------- /prboom2/src/e6y.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/e6y.c -------------------------------------------------------------------------------- /prboom2/src/e6y.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/e6y.h -------------------------------------------------------------------------------- /prboom2/src/e6y_launcher.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/e6y_launcher.c -------------------------------------------------------------------------------- /prboom2/src/e6y_launcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/e6y_launcher.h -------------------------------------------------------------------------------- /prboom2/src/f_finale.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/f_finale.c -------------------------------------------------------------------------------- /prboom2/src/f_finale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/f_finale.h -------------------------------------------------------------------------------- /prboom2/src/f_finale2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/f_finale2.c -------------------------------------------------------------------------------- /prboom2/src/f_wipe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/f_wipe.c -------------------------------------------------------------------------------- /prboom2/src/f_wipe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/f_wipe.h -------------------------------------------------------------------------------- /prboom2/src/g_game.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/g_game.c -------------------------------------------------------------------------------- /prboom2/src/g_game.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/g_game.h -------------------------------------------------------------------------------- /prboom2/src/g_overflow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/g_overflow.c -------------------------------------------------------------------------------- /prboom2/src/g_overflow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/g_overflow.h -------------------------------------------------------------------------------- /prboom2/src/gl_clipper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/gl_clipper.c -------------------------------------------------------------------------------- /prboom2/src/gl_detail.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/gl_detail.c -------------------------------------------------------------------------------- /prboom2/src/gl_drawinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/gl_drawinfo.c -------------------------------------------------------------------------------- /prboom2/src/gl_fbo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/gl_fbo.c -------------------------------------------------------------------------------- /prboom2/src/gl_gamma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/gl_gamma.c -------------------------------------------------------------------------------- /prboom2/src/gl_hires.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/gl_hires.c -------------------------------------------------------------------------------- /prboom2/src/gl_hqresize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/gl_hqresize.c -------------------------------------------------------------------------------- /prboom2/src/gl_intern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/gl_intern.h -------------------------------------------------------------------------------- /prboom2/src/gl_light.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/gl_light.c -------------------------------------------------------------------------------- /prboom2/src/gl_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/gl_main.c -------------------------------------------------------------------------------- /prboom2/src/gl_map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/gl_map.c -------------------------------------------------------------------------------- /prboom2/src/gl_missingtexture.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/gl_missingtexture.c -------------------------------------------------------------------------------- /prboom2/src/gl_opengl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/gl_opengl.c -------------------------------------------------------------------------------- /prboom2/src/gl_opengl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/gl_opengl.h -------------------------------------------------------------------------------- /prboom2/src/gl_preprocess.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/gl_preprocess.c -------------------------------------------------------------------------------- /prboom2/src/gl_shader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/gl_shader.c -------------------------------------------------------------------------------- /prboom2/src/gl_shadow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/gl_shadow.c -------------------------------------------------------------------------------- /prboom2/src/gl_sky.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/gl_sky.c -------------------------------------------------------------------------------- /prboom2/src/gl_struct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/gl_struct.h -------------------------------------------------------------------------------- /prboom2/src/gl_texture.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/gl_texture.c -------------------------------------------------------------------------------- /prboom2/src/gl_vertex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/gl_vertex.c -------------------------------------------------------------------------------- /prboom2/src/gl_wipe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/gl_wipe.c -------------------------------------------------------------------------------- /prboom2/src/hu_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/hu_lib.c -------------------------------------------------------------------------------- /prboom2/src/hu_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/hu_lib.h -------------------------------------------------------------------------------- /prboom2/src/hu_stuff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/hu_stuff.c -------------------------------------------------------------------------------- /prboom2/src/hu_stuff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/hu_stuff.h -------------------------------------------------------------------------------- /prboom2/src/hu_tracers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/hu_tracers.c -------------------------------------------------------------------------------- /prboom2/src/hu_tracers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/hu_tracers.h -------------------------------------------------------------------------------- /prboom2/src/i_capture.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/i_capture.c -------------------------------------------------------------------------------- /prboom2/src/i_capture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/i_capture.h -------------------------------------------------------------------------------- /prboom2/src/i_joy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/i_joy.h -------------------------------------------------------------------------------- /prboom2/src/i_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/i_main.h -------------------------------------------------------------------------------- /prboom2/src/i_network.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/i_network.h -------------------------------------------------------------------------------- /prboom2/src/i_pcsound.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/i_pcsound.c -------------------------------------------------------------------------------- /prboom2/src/i_pcsound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/i_pcsound.h -------------------------------------------------------------------------------- /prboom2/src/i_sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/i_sound.h -------------------------------------------------------------------------------- /prboom2/src/i_system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/i_system.h -------------------------------------------------------------------------------- /prboom2/src/i_video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/i_video.h -------------------------------------------------------------------------------- /prboom2/src/icon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/icon.c -------------------------------------------------------------------------------- /prboom2/src/info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/info.c -------------------------------------------------------------------------------- /prboom2/src/info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/info.h -------------------------------------------------------------------------------- /prboom2/src/lprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/lprintf.c -------------------------------------------------------------------------------- /prboom2/src/lprintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/lprintf.h -------------------------------------------------------------------------------- /prboom2/src/m_argv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/m_argv.c -------------------------------------------------------------------------------- /prboom2/src/m_argv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/m_argv.h -------------------------------------------------------------------------------- /prboom2/src/m_bbox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/m_bbox.c -------------------------------------------------------------------------------- /prboom2/src/m_bbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/m_bbox.h -------------------------------------------------------------------------------- /prboom2/src/m_cheat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/m_cheat.c -------------------------------------------------------------------------------- /prboom2/src/m_cheat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/m_cheat.h -------------------------------------------------------------------------------- /prboom2/src/m_fixed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/m_fixed.h -------------------------------------------------------------------------------- /prboom2/src/m_menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/m_menu.c -------------------------------------------------------------------------------- /prboom2/src/m_menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/m_menu.h -------------------------------------------------------------------------------- /prboom2/src/m_misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/m_misc.c -------------------------------------------------------------------------------- /prboom2/src/m_misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/m_misc.h -------------------------------------------------------------------------------- /prboom2/src/m_random.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/m_random.c -------------------------------------------------------------------------------- /prboom2/src/m_random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/m_random.h -------------------------------------------------------------------------------- /prboom2/src/m_swap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/m_swap.h -------------------------------------------------------------------------------- /prboom2/src/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/md5.c -------------------------------------------------------------------------------- /prboom2/src/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/md5.h -------------------------------------------------------------------------------- /prboom2/src/memio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/memio.c -------------------------------------------------------------------------------- /prboom2/src/memio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/memio.h -------------------------------------------------------------------------------- /prboom2/src/mus2mid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/mus2mid.c -------------------------------------------------------------------------------- /prboom2/src/mus2mid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/mus2mid.h -------------------------------------------------------------------------------- /prboom2/src/p_ceilng.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/p_ceilng.c -------------------------------------------------------------------------------- /prboom2/src/p_checksum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/p_checksum.c -------------------------------------------------------------------------------- /prboom2/src/p_checksum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/p_checksum.h -------------------------------------------------------------------------------- /prboom2/src/p_doors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/p_doors.c -------------------------------------------------------------------------------- /prboom2/src/p_enemy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/p_enemy.c -------------------------------------------------------------------------------- /prboom2/src/p_enemy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/p_enemy.h -------------------------------------------------------------------------------- /prboom2/src/p_floor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/p_floor.c -------------------------------------------------------------------------------- /prboom2/src/p_genlin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/p_genlin.c -------------------------------------------------------------------------------- /prboom2/src/p_inter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/p_inter.c -------------------------------------------------------------------------------- /prboom2/src/p_inter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/p_inter.h -------------------------------------------------------------------------------- /prboom2/src/p_lights.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/p_lights.c -------------------------------------------------------------------------------- /prboom2/src/p_map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/p_map.c -------------------------------------------------------------------------------- /prboom2/src/p_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/p_map.h -------------------------------------------------------------------------------- /prboom2/src/p_maputl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/p_maputl.c -------------------------------------------------------------------------------- /prboom2/src/p_maputl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/p_maputl.h -------------------------------------------------------------------------------- /prboom2/src/p_mobj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/p_mobj.c -------------------------------------------------------------------------------- /prboom2/src/p_mobj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/p_mobj.h -------------------------------------------------------------------------------- /prboom2/src/p_plats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/p_plats.c -------------------------------------------------------------------------------- /prboom2/src/p_pspr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/p_pspr.c -------------------------------------------------------------------------------- /prboom2/src/p_pspr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/p_pspr.h -------------------------------------------------------------------------------- /prboom2/src/p_saveg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/p_saveg.c -------------------------------------------------------------------------------- /prboom2/src/p_saveg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/p_saveg.h -------------------------------------------------------------------------------- /prboom2/src/p_setup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/p_setup.c -------------------------------------------------------------------------------- /prboom2/src/p_setup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/p_setup.h -------------------------------------------------------------------------------- /prboom2/src/p_sight.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/p_sight.c -------------------------------------------------------------------------------- /prboom2/src/p_spec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/p_spec.c -------------------------------------------------------------------------------- /prboom2/src/p_spec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/p_spec.h -------------------------------------------------------------------------------- /prboom2/src/p_switch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/p_switch.c -------------------------------------------------------------------------------- /prboom2/src/p_telept.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/p_telept.c -------------------------------------------------------------------------------- /prboom2/src/p_tick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/p_tick.c -------------------------------------------------------------------------------- /prboom2/src/p_tick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/p_tick.h -------------------------------------------------------------------------------- /prboom2/src/p_user.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/p_user.c -------------------------------------------------------------------------------- /prboom2/src/p_user.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/p_user.h -------------------------------------------------------------------------------- /prboom2/src/protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/protocol.h -------------------------------------------------------------------------------- /prboom2/src/r_bsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/r_bsp.c -------------------------------------------------------------------------------- /prboom2/src/r_bsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/r_bsp.h -------------------------------------------------------------------------------- /prboom2/src/r_data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/r_data.c -------------------------------------------------------------------------------- /prboom2/src/r_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/r_data.h -------------------------------------------------------------------------------- /prboom2/src/r_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/r_defs.h -------------------------------------------------------------------------------- /prboom2/src/r_demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/r_demo.c -------------------------------------------------------------------------------- /prboom2/src/r_demo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/r_demo.h -------------------------------------------------------------------------------- /prboom2/src/r_draw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/r_draw.c -------------------------------------------------------------------------------- /prboom2/src/r_draw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/r_draw.h -------------------------------------------------------------------------------- /prboom2/src/r_drawcolpipeline.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/r_drawcolpipeline.inl -------------------------------------------------------------------------------- /prboom2/src/r_drawcolumn.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/r_drawcolumn.inl -------------------------------------------------------------------------------- /prboom2/src/r_drawflush.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/r_drawflush.inl -------------------------------------------------------------------------------- /prboom2/src/r_drawspan.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/r_drawspan.inl -------------------------------------------------------------------------------- /prboom2/src/r_filter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/r_filter.c -------------------------------------------------------------------------------- /prboom2/src/r_filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/r_filter.h -------------------------------------------------------------------------------- /prboom2/src/r_fps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/r_fps.c -------------------------------------------------------------------------------- /prboom2/src/r_fps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/r_fps.h -------------------------------------------------------------------------------- /prboom2/src/r_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/r_main.c -------------------------------------------------------------------------------- /prboom2/src/r_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/r_main.h -------------------------------------------------------------------------------- /prboom2/src/r_patch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/r_patch.c -------------------------------------------------------------------------------- /prboom2/src/r_patch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/r_patch.h -------------------------------------------------------------------------------- /prboom2/src/r_plane.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/r_plane.c -------------------------------------------------------------------------------- /prboom2/src/r_plane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/r_plane.h -------------------------------------------------------------------------------- /prboom2/src/r_segs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/r_segs.c -------------------------------------------------------------------------------- /prboom2/src/r_segs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/r_segs.h -------------------------------------------------------------------------------- /prboom2/src/r_sky.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/r_sky.c -------------------------------------------------------------------------------- /prboom2/src/r_sky.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/r_sky.h -------------------------------------------------------------------------------- /prboom2/src/r_state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/r_state.h -------------------------------------------------------------------------------- /prboom2/src/r_things.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/r_things.c -------------------------------------------------------------------------------- /prboom2/src/r_things.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/r_things.h -------------------------------------------------------------------------------- /prboom2/src/s_advsound.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/s_advsound.c -------------------------------------------------------------------------------- /prboom2/src/s_advsound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/s_advsound.h -------------------------------------------------------------------------------- /prboom2/src/s_sound.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/s_sound.c -------------------------------------------------------------------------------- /prboom2/src/s_sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/s_sound.h -------------------------------------------------------------------------------- /prboom2/src/sc_man.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/sc_man.c -------------------------------------------------------------------------------- /prboom2/src/sc_man.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/sc_man.h -------------------------------------------------------------------------------- /prboom2/src/scanner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/scanner.cpp -------------------------------------------------------------------------------- /prboom2/src/scanner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/scanner.h -------------------------------------------------------------------------------- /prboom2/src/sounds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/sounds.c -------------------------------------------------------------------------------- /prboom2/src/sounds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/sounds.h -------------------------------------------------------------------------------- /prboom2/src/st_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/st_lib.c -------------------------------------------------------------------------------- /prboom2/src/st_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/st_lib.h -------------------------------------------------------------------------------- /prboom2/src/st_stuff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/st_stuff.c -------------------------------------------------------------------------------- /prboom2/src/st_stuff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/st_stuff.h -------------------------------------------------------------------------------- /prboom2/src/statdump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/statdump.c -------------------------------------------------------------------------------- /prboom2/src/statdump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/statdump.h -------------------------------------------------------------------------------- /prboom2/src/tables.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/tables.c -------------------------------------------------------------------------------- /prboom2/src/tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/tables.h -------------------------------------------------------------------------------- /prboom2/src/umapinfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/umapinfo.cpp -------------------------------------------------------------------------------- /prboom2/src/umapinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/umapinfo.h -------------------------------------------------------------------------------- /prboom2/src/v_video.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/v_video.c -------------------------------------------------------------------------------- /prboom2/src/v_video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/v_video.h -------------------------------------------------------------------------------- /prboom2/src/version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/version.c -------------------------------------------------------------------------------- /prboom2/src/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/version.h -------------------------------------------------------------------------------- /prboom2/src/w_memcache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/w_memcache.c -------------------------------------------------------------------------------- /prboom2/src/w_mmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/w_mmap.c -------------------------------------------------------------------------------- /prboom2/src/w_wad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/w_wad.c -------------------------------------------------------------------------------- /prboom2/src/w_wad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/w_wad.h -------------------------------------------------------------------------------- /prboom2/src/wi_stuff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/wi_stuff.c -------------------------------------------------------------------------------- /prboom2/src/wi_stuff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/wi_stuff.h -------------------------------------------------------------------------------- /prboom2/src/xs_Float.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/xs_Float.h -------------------------------------------------------------------------------- /prboom2/src/z_bmalloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/z_bmalloc.c -------------------------------------------------------------------------------- /prboom2/src/z_bmalloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/z_bmalloc.h -------------------------------------------------------------------------------- /prboom2/src/z_zone.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/z_zone.c -------------------------------------------------------------------------------- /prboom2/src/z_zone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/src/z_zone.h -------------------------------------------------------------------------------- /prboom2/tests/boxes.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/tests/boxes.pl -------------------------------------------------------------------------------- /prboom2/tests/crosses.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/tests/crosses.pl -------------------------------------------------------------------------------- /prboom2/tests/demo-testing.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/tests/demo-testing.csv -------------------------------------------------------------------------------- /prboom2/tests/donut_av.wad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/tests/donut_av.wad -------------------------------------------------------------------------------- /prboom2/tests/heightlist_overflow.wad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/tests/heightlist_overflow.wad -------------------------------------------------------------------------------- /prboom2/tests/lmpwatch.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/tests/lmpwatch.pl -------------------------------------------------------------------------------- /prboom2/tests/missed_back_side.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/tests/missed_back_side.zip -------------------------------------------------------------------------------- /prboom2/tests/runtests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/tests/runtests.py -------------------------------------------------------------------------------- /prboom2/tests/sky.wad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/tests/sky.wad -------------------------------------------------------------------------------- /prboom2/tests/weaponinfo.wad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/tests/weaponinfo.wad -------------------------------------------------------------------------------- /prboom2/vita/launcher/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/vita/launcher/CMakeLists.txt -------------------------------------------------------------------------------- /prboom2/vita/launcher/configs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/vita/launcher/configs.c -------------------------------------------------------------------------------- /prboom2/vita/launcher/configs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/vita/launcher/configs.h -------------------------------------------------------------------------------- /prboom2/vita/launcher/files.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/vita/launcher/files.c -------------------------------------------------------------------------------- /prboom2/vita/launcher/files.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/vita/launcher/files.h -------------------------------------------------------------------------------- /prboom2/vita/launcher/input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/vita/launcher/input.c -------------------------------------------------------------------------------- /prboom2/vita/launcher/input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/vita/launcher/input.h -------------------------------------------------------------------------------- /prboom2/vita/launcher/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/vita/launcher/main.c -------------------------------------------------------------------------------- /prboom2/vita/launcher/net.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/vita/launcher/net.c -------------------------------------------------------------------------------- /prboom2/vita/launcher/net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/vita/launcher/net.h -------------------------------------------------------------------------------- /prboom2/vita/launcher/screen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/vita/launcher/screen.c -------------------------------------------------------------------------------- /prboom2/vita/launcher/screen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/vita/launcher/screen.h -------------------------------------------------------------------------------- /prboom2/vita/launcher/ui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/vita/launcher/ui.c -------------------------------------------------------------------------------- /prboom2/vita/launcher/ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/vita/launcher/ui.h -------------------------------------------------------------------------------- /prboom2/vita/launcher/ui_audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/vita/launcher/ui_audio.c -------------------------------------------------------------------------------- /prboom2/vita/launcher/ui_input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/vita/launcher/ui_input.c -------------------------------------------------------------------------------- /prboom2/vita/launcher/ui_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/vita/launcher/ui_main.c -------------------------------------------------------------------------------- /prboom2/vita/launcher/ui_misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/vita/launcher/ui_misc.c -------------------------------------------------------------------------------- /prboom2/vita/launcher/ui_net.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/vita/launcher/ui_net.c -------------------------------------------------------------------------------- /prboom2/vita/launcher/ui_pwads.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/vita/launcher/ui_pwads.c -------------------------------------------------------------------------------- /prboom2/vita/launcher/ui_video.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/vita/launcher/ui_video.c -------------------------------------------------------------------------------- /prboom2/vita/launcher/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/vita/launcher/utils.c -------------------------------------------------------------------------------- /prboom2/vita/launcher/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/vita/launcher/utils.h -------------------------------------------------------------------------------- /prboom2/vita/libtess/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/vita/libtess/CMakeLists.txt -------------------------------------------------------------------------------- /prboom2/vita/libtess/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/vita/libtess/README -------------------------------------------------------------------------------- /prboom2/vita/libtess/alg-outline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/vita/libtess/alg-outline -------------------------------------------------------------------------------- /prboom2/vita/libtess/dict-list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/vita/libtess/dict-list.h -------------------------------------------------------------------------------- /prboom2/vita/libtess/dict.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/vita/libtess/dict.c -------------------------------------------------------------------------------- /prboom2/vita/libtess/dict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/vita/libtess/dict.h -------------------------------------------------------------------------------- /prboom2/vita/libtess/geom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/vita/libtess/geom.c -------------------------------------------------------------------------------- /prboom2/vita/libtess/geom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/vita/libtess/geom.h -------------------------------------------------------------------------------- /prboom2/vita/libtess/glu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/vita/libtess/glu.h -------------------------------------------------------------------------------- /prboom2/vita/libtess/gluos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/vita/libtess/gluos.h -------------------------------------------------------------------------------- /prboom2/vita/libtess/memalloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/vita/libtess/memalloc.c -------------------------------------------------------------------------------- /prboom2/vita/libtess/memalloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/vita/libtess/memalloc.h -------------------------------------------------------------------------------- /prboom2/vita/libtess/mesh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/vita/libtess/mesh.c -------------------------------------------------------------------------------- /prboom2/vita/libtess/mesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/vita/libtess/mesh.h -------------------------------------------------------------------------------- /prboom2/vita/libtess/normal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/vita/libtess/normal.c -------------------------------------------------------------------------------- /prboom2/vita/libtess/normal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/vita/libtess/normal.h -------------------------------------------------------------------------------- /prboom2/vita/libtess/priorityq-heap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/vita/libtess/priorityq-heap.c -------------------------------------------------------------------------------- /prboom2/vita/libtess/priorityq-heap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/vita/libtess/priorityq-heap.h -------------------------------------------------------------------------------- /prboom2/vita/libtess/priorityq-sort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/vita/libtess/priorityq-sort.h -------------------------------------------------------------------------------- /prboom2/vita/libtess/priorityq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/vita/libtess/priorityq.c -------------------------------------------------------------------------------- /prboom2/vita/libtess/priorityq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/vita/libtess/priorityq.h -------------------------------------------------------------------------------- /prboom2/vita/libtess/render.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/vita/libtess/render.c -------------------------------------------------------------------------------- /prboom2/vita/libtess/render.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/vita/libtess/render.h -------------------------------------------------------------------------------- /prboom2/vita/libtess/sweep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/vita/libtess/sweep.c -------------------------------------------------------------------------------- /prboom2/vita/libtess/sweep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/vita/libtess/sweep.h -------------------------------------------------------------------------------- /prboom2/vita/libtess/tess.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/vita/libtess/tess.c -------------------------------------------------------------------------------- /prboom2/vita/libtess/tess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/vita/libtess/tess.h -------------------------------------------------------------------------------- /prboom2/vita/libtess/tessmono.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/vita/libtess/tessmono.c -------------------------------------------------------------------------------- /prboom2/vita/libtess/tessmono.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgsfdsfgs/prboom-plus/HEAD/prboom2/vita/libtess/tessmono.h --------------------------------------------------------------------------------