├── .clang-format ├── .editorconfig ├── .github └── workflows │ ├── cmake-release.yml │ └── cmake.yml ├── .gitignore ├── .vscode └── launch.json ├── ASanSuppress.txt ├── CHANGELOG.md ├── CMakeLists.txt ├── COMPILING.md ├── LICENSE ├── README.md ├── TSanSuppress.txt ├── autoload ├── .gitkeep ├── blasphemer │ └── .gitkeep ├── chex1 │ └── .gitkeep ├── chex3v │ └── .gitkeep ├── chex3vm │ └── .gitkeep ├── doom │ └── .gitkeep ├── doom1 │ └── .gitkeep ├── doom2 │ └── .gitkeep ├── freedoom1 │ └── .gitkeep ├── freedoom2 │ └── .gitkeep ├── hacx │ └── .gitkeep ├── harmony │ └── .gitkeep ├── heretic │ └── .gitkeep ├── plutonia │ └── .gitkeep ├── rekkr │ └── .gitkeep └── tnt │ └── .gitkeep ├── branding.cfg ├── cmake ├── EDGEClassic.cmake ├── Emscripten.cmake ├── Toolchain-mingw32.cmake └── Toolchain-mingw64.cmake ├── crosshairs ├── .gitignore ├── Angle.png ├── Carat.png ├── Circle.png ├── Cross.png ├── Dot.png ├── Double.png ├── Plus.png ├── Spiked.png └── Thin.png ├── docs ├── changelogs │ ├── 090.txt │ ├── 100.txt │ ├── 110.txt │ ├── 120.txt │ ├── 121.txt │ ├── 130.txt │ ├── 131.txt │ ├── 132.txt │ ├── 133.txt │ ├── 134.1.txt │ ├── 134.txt │ ├── 135.txt │ ├── 136.txt │ ├── 137.txt │ ├── 138.txt │ ├── 150.md │ ├── 151.md │ └── original_edge_changelogs │ │ ├── 119.txt │ │ ├── 120.txt │ │ ├── 121.txt │ │ ├── 122.txt │ │ ├── 123.txt │ │ ├── 124.txt │ │ ├── 125.txt │ │ ├── 126.txt │ │ ├── 127.txt │ │ ├── 128.txt │ │ ├── 128A.txt │ │ ├── 129.txt │ │ ├── 131.txt │ │ ├── 134.txt │ │ └── 135.txt ├── devlogs │ └── original_edge_devlogs │ │ ├── andrew.log │ │ ├── andy.log │ │ ├── dan.log │ │ ├── daveel.log │ │ ├── erik.log │ │ ├── john.log │ │ ├── kester.log │ │ └── martin.log ├── licenses │ ├── Apache 2_0.txt │ ├── BSD 0-Clause.txt │ ├── BSD 3-Clause.txt │ ├── CC-1_0-Universal.txt │ ├── CC-BY-3_0-Unported.txt │ ├── CC-BY-NC-4_0-International.txt │ ├── CC-BY-SA-4_0-International.txt │ ├── GPL3.txt │ ├── HacX.txt │ ├── License Attribution.txt │ ├── MIT.txt │ ├── OFL.txt │ ├── Public Domain.txt │ ├── WidePix.txt │ └── zlib.txt ├── mapping │ ├── EdgeC_DB2_Config │ │ ├── Edge_Classic.cfg │ │ ├── Includes │ │ │ ├── Edge_Classic_linedefs.cfg │ │ │ ├── Edge_Classic_sectors.cfg │ │ │ └── Edge_Classic_things.cfg │ │ └── ReadMe.txt │ ├── EdgeC_DBX_Config │ │ ├── EdgeC_Doom2Doom.cfg │ │ ├── EdgeC_DoomUDMF.cfg │ │ ├── Includes │ │ │ ├── EdgeC_common.cfg │ │ │ ├── EdgeC_linedefs.cfg │ │ │ ├── EdgeC_misc.cfg │ │ │ ├── EdgeC_sectors.cfg │ │ │ └── EdgeC_things.cfg │ │ └── ReadMe.txt │ ├── EdgeC_Eureka_Config │ │ ├── ReadMe.txt │ │ └── edge-classic.ugh │ └── EdgeC_UDB_Config │ │ ├── EdgeC_Doom2Doom.cfg │ │ ├── EdgeC_DoomUDMF.cfg │ │ ├── Includes │ │ ├── EdgeC_common.cfg │ │ ├── EdgeC_linedefs.cfg │ │ ├── EdgeC_misc.cfg │ │ ├── EdgeC_sectors.cfg │ │ └── EdgeC_things.cfg │ │ └── ReadMe.txt └── specifications │ ├── EDGE-Classic Coding Standards.txt │ ├── EDGE-Classic Pack Structure and Usage.txt │ ├── EDGE-Classic UDMF Extensions.txt │ ├── UDMF Standard.txt │ └── original_edge_specifications │ ├── bot_docs.txt │ ├── coding_std.txt │ ├── ddf_rule.txt │ ├── dehacked_fmt.txt │ ├── demo_fmt.txt │ ├── hubs.txt │ ├── networking.txt │ ├── rts2lua.txt │ ├── rts_rule.txt │ ├── save_sys.txt │ ├── visibility.txt │ └── wad_sys_II.txt ├── edge_base ├── blasphemer │ ├── graphics │ │ ├── ARTISOAR.png │ │ ├── NULL.png │ │ ├── STBARL.lmp │ │ ├── STBARR.lmp │ │ └── tome │ │ │ ├── SPINBK0.png │ │ │ ├── SPINBK1.png │ │ │ ├── SPINBK10.png │ │ │ ├── SPINBK11.png │ │ │ ├── SPINBK12.png │ │ │ ├── SPINBK13.png │ │ │ ├── SPINBK14.png │ │ │ ├── SPINBK15.png │ │ │ ├── SPINBK2.png │ │ │ ├── SPINBK3.png │ │ │ ├── SPINBK4.png │ │ │ ├── SPINBK5.png │ │ │ ├── SPINBK6.png │ │ │ ├── SPINBK7.png │ │ │ ├── SPINBK8.png │ │ │ └── SPINBK9.png │ └── scripts │ │ ├── anims.ddf │ │ ├── attacks.ddf │ │ ├── colmap.ddf │ │ ├── flats.ddf │ │ ├── fonts.ddf │ │ ├── games.ddf │ │ ├── images.ddf │ │ ├── language.ldf │ │ ├── levels.ddf │ │ ├── lines.ddf │ │ ├── lua │ │ └── edge_hud.lua │ │ ├── playlist.ddf │ │ ├── rscript.rts │ │ ├── sectors.ddf │ │ ├── sounds.ddf │ │ ├── styles.ddf │ │ ├── switch.ddf │ │ ├── things.ddf │ │ └── weapons.ddf ├── chex1 │ ├── graphics │ │ ├── M_SKULL1.png │ │ ├── M_SKULL2.png │ │ ├── STBAR.lmp │ │ ├── chex_font │ │ │ ├── FONT033.lmp │ │ │ ├── FONT034.lmp │ │ │ ├── FONT035.lmp │ │ │ ├── FONT036.lmp │ │ │ ├── FONT037.lmp │ │ │ ├── FONT038.lmp │ │ │ ├── FONT039.lmp │ │ │ ├── FONT040.lmp │ │ │ ├── FONT041.lmp │ │ │ ├── FONT042.lmp │ │ │ ├── FONT043.lmp │ │ │ ├── FONT044.lmp │ │ │ ├── FONT045.lmp │ │ │ ├── FONT046.lmp │ │ │ ├── FONT047.lmp │ │ │ ├── FONT048.lmp │ │ │ ├── FONT049.lmp │ │ │ ├── FONT050.lmp │ │ │ ├── FONT051.lmp │ │ │ ├── FONT052.lmp │ │ │ ├── FONT053.lmp │ │ │ ├── FONT054.lmp │ │ │ ├── FONT055.lmp │ │ │ ├── FONT056.lmp │ │ │ ├── FONT057.lmp │ │ │ ├── FONT058.lmp │ │ │ ├── FONT059.lmp │ │ │ ├── FONT060.lmp │ │ │ ├── FONT061.lmp │ │ │ ├── FONT062.lmp │ │ │ ├── FONT063.lmp │ │ │ ├── FONT064.lmp │ │ │ ├── FONT065.lmp │ │ │ ├── FONT066.lmp │ │ │ ├── FONT067.lmp │ │ │ ├── FONT068.lmp │ │ │ ├── FONT069.lmp │ │ │ ├── FONT070.lmp │ │ │ ├── FONT071.lmp │ │ │ ├── FONT072.lmp │ │ │ ├── FONT073.lmp │ │ │ ├── FONT074.lmp │ │ │ ├── FONT075.lmp │ │ │ ├── FONT076.lmp │ │ │ ├── FONT077.lmp │ │ │ ├── FONT078.lmp │ │ │ ├── FONT079.lmp │ │ │ ├── FONT080.lmp │ │ │ ├── FONT081.lmp │ │ │ ├── FONT082.lmp │ │ │ ├── FONT083.lmp │ │ │ ├── FONT084.lmp │ │ │ ├── FONT085.lmp │ │ │ ├── FONT086.lmp │ │ │ ├── FONT087.lmp │ │ │ ├── FONT088.lmp │ │ │ ├── FONT089.lmp │ │ │ ├── FONT090.lmp │ │ │ ├── FONT091.lmp │ │ │ ├── FONT092.lmp │ │ │ ├── FONT093.lmp │ │ │ └── FONT094.lmp │ │ ├── credit.lmp │ │ ├── help1.lmp │ │ ├── titlepic.lmp │ │ └── wimap0.lmp │ ├── scripts │ │ ├── attacks.ddf │ │ ├── fonts.ddf │ │ ├── games.ddf │ │ ├── language.ldf │ │ ├── levels.ddf │ │ ├── styles.ddf │ │ └── things.ddf │ └── sprites │ │ ├── DOGSA1.lmp │ │ ├── DOGSA2A8.lmp │ │ ├── DOGSA3A7.lmp │ │ ├── DOGSA4A6.lmp │ │ ├── DOGSA5.lmp │ │ ├── DOGSB1.lmp │ │ ├── DOGSB2B8.lmp │ │ ├── DOGSB3B7.lmp │ │ ├── DOGSB4B6.lmp │ │ ├── DOGSB5.lmp │ │ ├── DOGSC1.lmp │ │ ├── DOGSC2C8.lmp │ │ ├── DOGSC3C7.lmp │ │ ├── DOGSC4C6.lmp │ │ ├── DOGSC5.lmp │ │ ├── DOGSD1.lmp │ │ ├── DOGSD2D8.lmp │ │ ├── DOGSD3D7.lmp │ │ ├── DOGSD4D6.lmp │ │ ├── DOGSD5.lmp │ │ ├── DOGSE1.lmp │ │ ├── DOGSE2E8.lmp │ │ ├── DOGSE3E7.lmp │ │ ├── DOGSE4E6.lmp │ │ ├── DOGSE5.lmp │ │ ├── DOGSF1.lmp │ │ ├── DOGSF2F8.lmp │ │ ├── DOGSF3F7.lmp │ │ ├── DOGSF4F6.lmp │ │ ├── DOGSF5.lmp │ │ ├── DOGSG1.lmp │ │ ├── DOGSG2G8.lmp │ │ ├── DOGSG3G7.lmp │ │ ├── DOGSG4G6.lmp │ │ ├── DOGSG5.lmp │ │ ├── DOGSH1.lmp │ │ ├── DOGSH2H8.lmp │ │ ├── DOGSH3H7.lmp │ │ ├── DOGSH4H6.lmp │ │ ├── DOGSH5.lmp │ │ ├── DOGSI0.lmp │ │ ├── DOGSJ0.lmp │ │ ├── DOGSK0.lmp │ │ ├── DOGSL0.lmp │ │ ├── DOGSM0.lmp │ │ └── DOGSN0.lmp ├── chex3v │ ├── graphics │ │ ├── BOSSBACK.lmp │ │ ├── CQ1TITLE.lmp │ │ ├── CQ2TITLE.lmp │ │ ├── ENDPIC.lmp │ │ ├── HELP.lmp │ │ ├── HELP2.lmp │ │ ├── INTERPIC.lmp │ │ ├── M_SKULL1.png │ │ ├── M_SKULL2.png │ │ ├── PFUB0.lmp │ │ ├── PFUB1.lmp │ │ ├── PFUB2.lmp │ │ ├── STBAR.lmp │ │ ├── VICTORY2.lmp │ │ ├── WIMAP1.lmp │ │ ├── WIMAP2.lmp │ │ ├── chex_font │ │ │ ├── FONT033.lmp │ │ │ ├── FONT034.lmp │ │ │ ├── FONT035.lmp │ │ │ ├── FONT036.lmp │ │ │ ├── FONT037.lmp │ │ │ ├── FONT038.lmp │ │ │ ├── FONT039.lmp │ │ │ ├── FONT040.lmp │ │ │ ├── FONT041.lmp │ │ │ ├── FONT042.lmp │ │ │ ├── FONT043.lmp │ │ │ ├── FONT044.lmp │ │ │ ├── FONT045.lmp │ │ │ ├── FONT046.lmp │ │ │ ├── FONT047.lmp │ │ │ ├── FONT048.lmp │ │ │ ├── FONT049.lmp │ │ │ ├── FONT050.lmp │ │ │ ├── FONT051.lmp │ │ │ ├── FONT052.lmp │ │ │ ├── FONT053.lmp │ │ │ ├── FONT054.lmp │ │ │ ├── FONT055.lmp │ │ │ ├── FONT056.lmp │ │ │ ├── FONT057.lmp │ │ │ ├── FONT058.lmp │ │ │ ├── FONT059.lmp │ │ │ ├── FONT060.lmp │ │ │ ├── FONT061.lmp │ │ │ ├── FONT062.lmp │ │ │ ├── FONT063.lmp │ │ │ ├── FONT064.lmp │ │ │ ├── FONT065.lmp │ │ │ ├── FONT066.lmp │ │ │ ├── FONT067.lmp │ │ │ ├── FONT068.lmp │ │ │ ├── FONT069.lmp │ │ │ ├── FONT070.lmp │ │ │ ├── FONT071.lmp │ │ │ ├── FONT072.lmp │ │ │ ├── FONT073.lmp │ │ │ ├── FONT074.lmp │ │ │ ├── FONT075.lmp │ │ │ ├── FONT076.lmp │ │ │ ├── FONT077.lmp │ │ │ ├── FONT078.lmp │ │ │ ├── FONT079.lmp │ │ │ ├── FONT080.lmp │ │ │ ├── FONT081.lmp │ │ │ ├── FONT082.lmp │ │ │ ├── FONT083.lmp │ │ │ ├── FONT084.lmp │ │ │ ├── FONT085.lmp │ │ │ ├── FONT086.lmp │ │ │ ├── FONT087.lmp │ │ │ ├── FONT088.lmp │ │ │ ├── FONT089.lmp │ │ │ ├── FONT090.lmp │ │ │ ├── FONT091.lmp │ │ │ ├── FONT092.lmp │ │ │ ├── FONT093.lmp │ │ │ └── FONT094.lmp │ │ ├── credit.lmp │ │ ├── help1.lmp │ │ ├── titlepic.lmp │ │ └── wimap0.lmp │ └── scripts │ │ ├── UMAPINFO.txt │ │ ├── fonts.ddf │ │ ├── games.ddf │ │ ├── language.ldf │ │ ├── levels.ddf │ │ ├── rscript.rts │ │ ├── styles.ddf │ │ └── things.ddf ├── chex3vm │ ├── graphics │ │ ├── BOSSBACK.lmp │ │ ├── CQ1TITLE.lmp │ │ ├── CQ2TITLE.lmp │ │ ├── CREDIT.lmp │ │ ├── ENDPIC.lmp │ │ ├── HELP.lmp │ │ ├── HELP1.lmp │ │ ├── HELP2.lmp │ │ ├── INTERPIC.lmp │ │ ├── M_SKULL1.png │ │ ├── M_SKULL2.png │ │ ├── PFUB0.lmp │ │ ├── PFUB1.lmp │ │ ├── PFUB2.lmp │ │ ├── STBAR.lmp │ │ ├── TITLEPIC.lmp │ │ ├── VICTORY2.lmp │ │ ├── WIMAP0.lmp │ │ ├── WIMAP1.lmp │ │ ├── WIMAP2.lmp │ │ └── chex_font │ │ │ ├── FONT033.lmp │ │ │ ├── FONT034.lmp │ │ │ ├── FONT035.lmp │ │ │ ├── FONT036.lmp │ │ │ ├── FONT037.lmp │ │ │ ├── FONT038.lmp │ │ │ ├── FONT039.lmp │ │ │ ├── FONT040.lmp │ │ │ ├── FONT041.lmp │ │ │ ├── FONT042.lmp │ │ │ ├── FONT043.lmp │ │ │ ├── FONT044.lmp │ │ │ ├── FONT045.lmp │ │ │ ├── FONT046.lmp │ │ │ ├── FONT047.lmp │ │ │ ├── FONT048.lmp │ │ │ ├── FONT049.lmp │ │ │ ├── FONT050.lmp │ │ │ ├── FONT051.lmp │ │ │ ├── FONT052.lmp │ │ │ ├── FONT053.lmp │ │ │ ├── FONT054.lmp │ │ │ ├── FONT055.lmp │ │ │ ├── FONT056.lmp │ │ │ ├── FONT057.lmp │ │ │ ├── FONT058.lmp │ │ │ ├── FONT059.lmp │ │ │ ├── FONT060.lmp │ │ │ ├── FONT061.lmp │ │ │ ├── FONT062.lmp │ │ │ ├── FONT063.lmp │ │ │ ├── FONT064.lmp │ │ │ ├── FONT065.lmp │ │ │ ├── FONT066.lmp │ │ │ ├── FONT067.lmp │ │ │ ├── FONT068.lmp │ │ │ ├── FONT069.lmp │ │ │ ├── FONT070.lmp │ │ │ ├── FONT071.lmp │ │ │ ├── FONT072.lmp │ │ │ ├── FONT073.lmp │ │ │ ├── FONT074.lmp │ │ │ ├── FONT075.lmp │ │ │ ├── FONT076.lmp │ │ │ ├── FONT077.lmp │ │ │ ├── FONT078.lmp │ │ │ ├── FONT079.lmp │ │ │ ├── FONT080.lmp │ │ │ ├── FONT081.lmp │ │ │ ├── FONT082.lmp │ │ │ ├── FONT083.lmp │ │ │ ├── FONT084.lmp │ │ │ ├── FONT085.lmp │ │ │ ├── FONT086.lmp │ │ │ ├── FONT087.lmp │ │ │ ├── FONT088.lmp │ │ │ ├── FONT089.lmp │ │ │ ├── FONT090.lmp │ │ │ ├── FONT091.lmp │ │ │ ├── FONT092.lmp │ │ │ ├── FONT093.lmp │ │ │ └── FONT094.lmp │ └── scripts │ │ ├── fonts.ddf │ │ ├── games.ddf │ │ ├── language.ldf │ │ ├── levels.ddf │ │ ├── styles.ddf │ │ └── things.ddf ├── doom │ ├── doom_wadfix.wad │ ├── graphics │ │ ├── CREDIT.lmp │ │ ├── ENDPIC.lmp │ │ ├── HELP1.lmp │ │ ├── INTERPIC.lmp │ │ ├── PFUB1.lmp │ │ ├── PFUB2.lmp │ │ ├── TITLEPIC.lmp │ │ ├── VICTORY2.lmp │ │ ├── WIA20000.lmp │ │ ├── WIA20001.lmp │ │ ├── WIA20002.lmp │ │ ├── WIA20400.lmp │ │ ├── WIA20401.lmp │ │ ├── WIA20402.lmp │ │ ├── WIA20500.lmp │ │ ├── WIA20501.lmp │ │ ├── WIA20502.lmp │ │ ├── WIMAP0.lmp │ │ ├── WIMAP1.lmp │ │ └── WIMAP2.lmp │ ├── scripts │ │ ├── games.ddf │ │ └── images.ddf │ └── textures │ │ ├── SKY1_B.png │ │ ├── SKY1_E.png │ │ ├── SKY1_N.png │ │ ├── SKY1_S.png │ │ ├── SKY1_T.png │ │ ├── SKY1_W.png │ │ ├── SKY2_B.png │ │ ├── SKY2_E.png │ │ ├── SKY2_N.png │ │ ├── SKY2_S.png │ │ ├── SKY2_T.png │ │ ├── SKY2_W.png │ │ ├── SKY3_B.png │ │ ├── SKY3_E.png │ │ ├── SKY3_N.png │ │ ├── SKY3_S.png │ │ ├── SKY3_T.png │ │ ├── SKY3_W.png │ │ ├── SKY4_B.png │ │ ├── SKY4_E.png │ │ ├── SKY4_N.png │ │ ├── SKY4_S.png │ │ ├── SKY4_T.png │ │ └── SKY4_W.png ├── doom1 │ ├── doom1_wadfix.wad │ ├── graphics │ │ ├── CREDIT.lmp │ │ ├── HELP1.lmp │ │ ├── HELP2.lmp │ │ ├── TITLEPIC.lmp │ │ └── WIMAP0.lmp │ ├── scripts │ │ └── images.ddf │ └── textures │ │ ├── SKY1_B.png │ │ ├── SKY1_E.png │ │ ├── SKY1_N.png │ │ ├── SKY1_S.png │ │ ├── SKY1_T.png │ │ └── SKY1_W.png ├── doom2 │ ├── graphics │ │ ├── BOSSBACK.lmp │ │ ├── CREDIT.lmp │ │ ├── HELP.lmp │ │ ├── INTERPIC.lmp │ │ └── TITLEPIC.lmp │ ├── scripts │ │ ├── games.ddf │ │ └── images.ddf │ └── textures │ │ ├── SKY1_B.png │ │ ├── SKY1_E.png │ │ ├── SKY1_N.png │ │ ├── SKY1_S.png │ │ ├── SKY1_T.png │ │ ├── SKY1_W.png │ │ ├── SKY2_B.png │ │ ├── SKY2_E.png │ │ ├── SKY2_N.png │ │ ├── SKY2_S.png │ │ ├── SKY2_T.png │ │ ├── SKY2_W.png │ │ ├── SKY3_B.png │ │ ├── SKY3_E.png │ │ ├── SKY3_N.png │ │ ├── SKY3_S.png │ │ ├── SKY3_T.png │ │ └── SKY3_W.png ├── freedoom1 │ ├── freedoom_wadfix.wad │ ├── graphics │ │ ├── STBARL.lmp │ │ ├── STBARR.lmp │ │ └── freedoom_font │ │ │ ├── FONT033.png │ │ │ ├── FONT034.png │ │ │ ├── FONT035.png │ │ │ ├── FONT036.png │ │ │ ├── FONT037.png │ │ │ ├── FONT038.png │ │ │ ├── FONT039.png │ │ │ ├── FONT040.png │ │ │ ├── FONT041.png │ │ │ ├── FONT042.png │ │ │ ├── FONT043.png │ │ │ ├── FONT044.png │ │ │ ├── FONT045.png │ │ │ ├── FONT046.png │ │ │ ├── FONT047.png │ │ │ ├── FONT048.png │ │ │ ├── FONT049.png │ │ │ ├── FONT050.png │ │ │ ├── FONT051.png │ │ │ ├── FONT052.png │ │ │ ├── FONT053.png │ │ │ ├── FONT054.png │ │ │ ├── FONT055.png │ │ │ ├── FONT056.png │ │ │ ├── FONT057.png │ │ │ ├── FONT058.png │ │ │ ├── FONT059.png │ │ │ ├── FONT060.png │ │ │ ├── FONT061.png │ │ │ ├── FONT062.png │ │ │ ├── FONT063.png │ │ │ ├── FONT064.png │ │ │ ├── FONT065.png │ │ │ ├── FONT066.png │ │ │ ├── FONT067.png │ │ │ ├── FONT068.png │ │ │ ├── FONT069.png │ │ │ ├── FONT070.png │ │ │ ├── FONT071.png │ │ │ ├── FONT072.png │ │ │ ├── FONT073.png │ │ │ ├── FONT074.png │ │ │ ├── FONT075.png │ │ │ ├── FONT076.png │ │ │ ├── FONT077.png │ │ │ ├── FONT078.png │ │ │ ├── FONT079.png │ │ │ ├── FONT080.png │ │ │ ├── FONT081.png │ │ │ ├── FONT082.png │ │ │ ├── FONT083.png │ │ │ ├── FONT084.png │ │ │ ├── FONT085.png │ │ │ ├── FONT086.png │ │ │ ├── FONT087.png │ │ │ ├── FONT088.png │ │ │ ├── FONT089.png │ │ │ ├── FONT090.png │ │ │ ├── FONT091.png │ │ │ ├── FONT092.png │ │ │ ├── FONT093.png │ │ │ ├── FONT094.png │ │ │ ├── FONT095.png │ │ │ ├── FONT096.png │ │ │ ├── FONT097.png │ │ │ ├── FONT098.png │ │ │ ├── FONT099.png │ │ │ ├── FONT100.png │ │ │ ├── FONT101.png │ │ │ ├── FONT102.png │ │ │ ├── FONT103.png │ │ │ ├── FONT104.png │ │ │ ├── FONT105.png │ │ │ ├── FONT106.png │ │ │ ├── FONT107.png │ │ │ ├── FONT108.png │ │ │ ├── FONT109.png │ │ │ ├── FONT110.png │ │ │ ├── FONT111.png │ │ │ ├── FONT112.png │ │ │ ├── FONT113.png │ │ │ ├── FONT114.png │ │ │ ├── FONT115.png │ │ │ ├── FONT116.png │ │ │ ├── FONT117.png │ │ │ ├── FONT118.png │ │ │ ├── FONT119.png │ │ │ ├── FONT120.png │ │ │ ├── FONT121.png │ │ │ ├── FONT122.png │ │ │ ├── FONT123.png │ │ │ ├── FONT124.png │ │ │ ├── FONT125.png │ │ │ └── FONT126.png │ └── scripts │ │ ├── attacks.ddf │ │ ├── fonts.ddf │ │ ├── games.ddf │ │ ├── images.ddf │ │ ├── language.ldf │ │ ├── styles.ddf │ │ └── things.ddf ├── freedoom2 │ ├── graphics │ │ ├── STBARL.lmp │ │ ├── STBARR.lmp │ │ └── freedoom_font │ │ │ ├── FONT033.png │ │ │ ├── FONT034.png │ │ │ ├── FONT035.png │ │ │ ├── FONT036.png │ │ │ ├── FONT037.png │ │ │ ├── FONT038.png │ │ │ ├── FONT039.png │ │ │ ├── FONT040.png │ │ │ ├── FONT041.png │ │ │ ├── FONT042.png │ │ │ ├── FONT043.png │ │ │ ├── FONT044.png │ │ │ ├── FONT045.png │ │ │ ├── FONT046.png │ │ │ ├── FONT047.png │ │ │ ├── FONT048.png │ │ │ ├── FONT049.png │ │ │ ├── FONT050.png │ │ │ ├── FONT051.png │ │ │ ├── FONT052.png │ │ │ ├── FONT053.png │ │ │ ├── FONT054.png │ │ │ ├── FONT055.png │ │ │ ├── FONT056.png │ │ │ ├── FONT057.png │ │ │ ├── FONT058.png │ │ │ ├── FONT059.png │ │ │ ├── FONT060.png │ │ │ ├── FONT061.png │ │ │ ├── FONT062.png │ │ │ ├── FONT063.png │ │ │ ├── FONT064.png │ │ │ ├── FONT065.png │ │ │ ├── FONT066.png │ │ │ ├── FONT067.png │ │ │ ├── FONT068.png │ │ │ ├── FONT069.png │ │ │ ├── FONT070.png │ │ │ ├── FONT071.png │ │ │ ├── FONT072.png │ │ │ ├── FONT073.png │ │ │ ├── FONT074.png │ │ │ ├── FONT075.png │ │ │ ├── FONT076.png │ │ │ ├── FONT077.png │ │ │ ├── FONT078.png │ │ │ ├── FONT079.png │ │ │ ├── FONT080.png │ │ │ ├── FONT081.png │ │ │ ├── FONT082.png │ │ │ ├── FONT083.png │ │ │ ├── FONT084.png │ │ │ ├── FONT085.png │ │ │ ├── FONT086.png │ │ │ ├── FONT087.png │ │ │ ├── FONT088.png │ │ │ ├── FONT089.png │ │ │ ├── FONT090.png │ │ │ ├── FONT091.png │ │ │ ├── FONT092.png │ │ │ ├── FONT093.png │ │ │ ├── FONT094.png │ │ │ ├── FONT095.png │ │ │ ├── FONT096.png │ │ │ ├── FONT097.png │ │ │ ├── FONT098.png │ │ │ ├── FONT099.png │ │ │ ├── FONT100.png │ │ │ ├── FONT101.png │ │ │ ├── FONT102.png │ │ │ ├── FONT103.png │ │ │ ├── FONT104.png │ │ │ ├── FONT105.png │ │ │ ├── FONT106.png │ │ │ ├── FONT107.png │ │ │ ├── FONT108.png │ │ │ ├── FONT109.png │ │ │ ├── FONT110.png │ │ │ ├── FONT111.png │ │ │ ├── FONT112.png │ │ │ ├── FONT113.png │ │ │ ├── FONT114.png │ │ │ ├── FONT115.png │ │ │ ├── FONT116.png │ │ │ ├── FONT117.png │ │ │ ├── FONT118.png │ │ │ ├── FONT119.png │ │ │ ├── FONT120.png │ │ │ ├── FONT121.png │ │ │ ├── FONT122.png │ │ │ ├── FONT123.png │ │ │ ├── FONT124.png │ │ │ ├── FONT125.png │ │ │ └── FONT126.png │ └── scripts │ │ ├── attacks.ddf │ │ ├── fonts.ddf │ │ ├── games.ddf │ │ ├── images.ddf │ │ ├── language.ldf │ │ ├── styles.ddf │ │ └── things.ddf ├── hacx │ ├── graphics │ │ ├── CREDIT.lmp │ │ ├── ENDOOM.bin │ │ ├── HELP.lmp │ │ ├── INTERPIC.lmp │ │ ├── STBARL.lmp │ │ ├── STBARR.lmp │ │ └── TITLEPIC.lmp │ ├── scripts │ │ ├── anims.ddf │ │ ├── attacks.ddf │ │ ├── colmap.ddf │ │ ├── flats.ddf │ │ ├── fonts.ddf │ │ ├── games.ddf │ │ ├── language.ldf │ │ ├── levels.ddf │ │ ├── lines.ddf │ │ ├── playlist.ddf │ │ ├── styles.ddf │ │ ├── switch.ddf │ │ ├── things.ddf │ │ └── weapons.ddf │ └── sprites │ │ ├── CHGFA0.lmp │ │ ├── CHGFB0.lmp │ │ ├── CHGGA0.lmp │ │ ├── CHGGB0.lmp │ │ ├── CRYXHRA0.lmp │ │ ├── MISFA0.lmp │ │ ├── MISFB0.lmp │ │ ├── MISFC0.lmp │ │ ├── MISFD0.lmp │ │ ├── MISGA0.lmp │ │ ├── MISGB0.lmp │ │ ├── PISGD0.lmp │ │ ├── PISGE0.lmp │ │ ├── PLSGA0.lmp │ │ ├── PLSGB0.lmp │ │ ├── SAWGA0.lmp │ │ ├── SAWGB0.lmp │ │ ├── SAWGC0.lmp │ │ ├── SAWGD0.lmp │ │ ├── SHT2A0.lmp │ │ ├── SHT2B0.lmp │ │ ├── SHT2C0.lmp │ │ ├── SHT2D0.lmp │ │ ├── SHT2E0.lmp │ │ ├── SHT2F0.lmp │ │ ├── SHT2G0.lmp │ │ ├── SHT2H0.lmp │ │ ├── SHT2I0.lmp │ │ ├── SHT2J0.lmp │ │ ├── SHTFA0.lmp │ │ ├── SHTFB0.lmp │ │ ├── SHTGA0.lmp │ │ ├── SHTGB0.lmp │ │ ├── SHTGC0.lmp │ │ └── SHTGD0.lmp ├── harmony │ ├── ENDOOM.bin │ ├── graphics │ │ ├── BOSSBACK.lmp │ │ ├── CREDIT.lmp │ │ ├── CWILV00.lmp │ │ ├── CWILV01.lmp │ │ ├── CWILV02.lmp │ │ ├── CWILV03.lmp │ │ ├── CWILV04.lmp │ │ ├── CWILV05.lmp │ │ ├── CWILV06.lmp │ │ ├── CWILV07.lmp │ │ ├── CWILV08.lmp │ │ ├── CWILV09.lmp │ │ ├── CWILV10.lmp │ │ ├── CWILV11.lmp │ │ ├── HELP.lmp │ │ ├── INTERPIC.lmp │ │ ├── M_EPISOD.lmp │ │ ├── M_JKILL.lmp │ │ ├── M_NEWG.lmp │ │ ├── M_NGAME.lmp │ │ ├── M_RDTHIS.lmp │ │ ├── M_SAVEG.lmp │ │ ├── M_THERML.png │ │ ├── M_THERMM.png │ │ ├── M_THERMO.png │ │ ├── M_THERMR.png │ │ ├── STBARL.lmp │ │ ├── STBARR.lmp │ │ ├── TITLEPIC.lmp │ │ ├── WICOLON.lmp │ │ ├── WIF.lmp │ │ ├── WIFRGS.lmp │ │ ├── WIKILRS.lmp │ │ ├── WIMINUS.lmp │ │ ├── WIMSTT.lmp │ │ ├── WINUM0.lmp │ │ ├── WINUM1.lmp │ │ ├── WINUM2.lmp │ │ ├── WINUM3.lmp │ │ ├── WINUM4.lmp │ │ ├── WINUM5.lmp │ │ ├── WINUM6.lmp │ │ ├── WINUM7.lmp │ │ ├── WINUM8.lmp │ │ ├── WINUM9.lmp │ │ ├── WIOSTF.lmp │ │ ├── WIOSTI.lmp │ │ ├── WIOSTK.lmp │ │ ├── WIOSTS.lmp │ │ ├── WIPAR.lmp │ │ ├── WIPCNT.lmp │ │ ├── WISCRT2.lmp │ │ ├── WISUCKS.lmp │ │ ├── WITIME.lmp │ │ └── WIVCTMS.lmp │ ├── scripts │ │ ├── attacks.ddf │ │ ├── colmap.ddf │ │ ├── flats.ddf │ │ ├── games.ddf │ │ ├── language.ldf │ │ ├── levels.ddf │ │ ├── lua │ │ │ └── edge_hud.lua │ │ ├── playlist.ddf │ │ ├── styles.ddf │ │ ├── things.ddf │ │ └── weapons.ddf │ └── sprites │ │ ├── CELLA0.png │ │ ├── CLIPA0.png │ │ ├── ROCKA0.png │ │ └── SHELA0.png ├── harmonyc │ ├── graphics │ │ ├── BOSSBACK.lmp │ │ ├── CREDIT.lmp │ │ ├── CWILV00.lmp │ │ ├── CWILV01.lmp │ │ ├── CWILV02.lmp │ │ ├── CWILV03.lmp │ │ ├── CWILV04.lmp │ │ ├── CWILV05.lmp │ │ ├── CWILV06.lmp │ │ ├── CWILV07.lmp │ │ ├── CWILV08.lmp │ │ ├── CWILV09.lmp │ │ ├── CWILV10.lmp │ │ ├── CWILV11.lmp │ │ ├── CWILV12.lmp │ │ ├── CWILV13.lmp │ │ ├── CWILV14.lmp │ │ ├── CWILV30.lmp │ │ ├── HELP.lmp │ │ ├── INTERPIC.lmp │ │ ├── M_EPISOD.lmp │ │ ├── M_JKILL.lmp │ │ ├── M_NEWG.lmp │ │ ├── M_NGAME.lmp │ │ ├── M_RDTHIS.lmp │ │ ├── M_SAVEG.lmp │ │ ├── M_THERML.lmp │ │ ├── M_THERMM.lmp │ │ ├── M_THERMO.lmp │ │ ├── M_THERMR.lmp │ │ ├── STBAR.lmp │ │ ├── TITLEPIC.lmp │ │ ├── WICOLON.lmp │ │ ├── WIF.lmp │ │ ├── WIFRGS.lmp │ │ ├── WIKILRS.lmp │ │ ├── WIMINUS.lmp │ │ ├── WIMSTT.lmp │ │ ├── WINUM0.lmp │ │ ├── WINUM1.lmp │ │ ├── WINUM2.lmp │ │ ├── WINUM3.lmp │ │ ├── WINUM4.lmp │ │ ├── WINUM5.lmp │ │ ├── WINUM6.lmp │ │ ├── WINUM7.lmp │ │ ├── WINUM8.lmp │ │ ├── WINUM9.lmp │ │ ├── WIOSTF.lmp │ │ ├── WIOSTI.lmp │ │ ├── WIOSTK.lmp │ │ ├── WIOSTS.lmp │ │ ├── WIPAR.lmp │ │ ├── WIPCNT.lmp │ │ ├── WISCRT2.lmp │ │ ├── WISUCKS.lmp │ │ ├── WITIME.lmp │ │ └── WIVCTMS.lmp │ └── scripts │ │ ├── attacks.ddf │ │ ├── colmap.ddf │ │ ├── language.ldf │ │ ├── levels.ddf │ │ ├── lua │ │ └── edge_hud.lua │ │ ├── styles.ddf │ │ └── weapons.ddf ├── heretic │ ├── graphics │ │ ├── BARBACK.lmp │ │ ├── CREDIT.lmp │ │ ├── E2END.png │ │ ├── FINAL1.lmp │ │ ├── FINAL2.lmp │ │ ├── HELP1.lmp │ │ ├── HELP2.lmp │ │ ├── LTFCTOP.lmp │ │ ├── MAPE1.lmp │ │ ├── MAPE2.lmp │ │ ├── MAPE3.lmp │ │ ├── NULL.png │ │ ├── RTFCTOP.lmp │ │ ├── STBARL.lmp │ │ ├── STBARR.lmp │ │ ├── TITLE.png │ │ ├── _WIENTER.png │ │ ├── _WIF.png │ │ ├── skull │ │ │ ├── M_SKL00.png │ │ │ ├── M_SKL01.png │ │ │ ├── M_SKL02.png │ │ │ ├── M_SKL03.png │ │ │ ├── M_SKL04.png │ │ │ ├── M_SKL05.png │ │ │ ├── M_SKL06.png │ │ │ ├── M_SKL07.png │ │ │ ├── M_SKL08.png │ │ │ ├── M_SKL09.png │ │ │ ├── M_SKL10.png │ │ │ ├── M_SKL11.png │ │ │ ├── M_SKL12.png │ │ │ ├── M_SKL13.png │ │ │ ├── M_SKL14.png │ │ │ ├── M_SKL15.png │ │ │ ├── M_SKL16.png │ │ │ └── M_SKL17.png │ │ ├── tome │ │ │ ├── SPINBK0.png │ │ │ ├── SPINBK1.png │ │ │ ├── SPINBK10.png │ │ │ ├── SPINBK11.png │ │ │ ├── SPINBK12.png │ │ │ ├── SPINBK13.png │ │ │ ├── SPINBK14.png │ │ │ ├── SPINBK15.png │ │ │ ├── SPINBK2.png │ │ │ ├── SPINBK3.png │ │ │ ├── SPINBK4.png │ │ │ ├── SPINBK5.png │ │ │ ├── SPINBK6.png │ │ │ ├── SPINBK7.png │ │ │ ├── SPINBK8.png │ │ │ └── SPINBK9.png │ │ └── wings │ │ │ ├── SPFLY0.png │ │ │ ├── SPFLY1.png │ │ │ ├── SPFLY10.png │ │ │ ├── SPFLY11.png │ │ │ ├── SPFLY12.png │ │ │ ├── SPFLY13.png │ │ │ ├── SPFLY14.png │ │ │ ├── SPFLY15.png │ │ │ ├── SPFLY2.png │ │ │ ├── SPFLY3.png │ │ │ ├── SPFLY4.png │ │ │ ├── SPFLY5.png │ │ │ ├── SPFLY6.png │ │ │ ├── SPFLY7.png │ │ │ ├── SPFLY8.png │ │ │ └── SPFLY9.png │ ├── scripts │ │ ├── anims.ddf │ │ ├── attacks.ddf │ │ ├── colmap.ddf │ │ ├── flats.ddf │ │ ├── fonts.ddf │ │ ├── games.ddf │ │ ├── images.ddf │ │ ├── language.ldf │ │ ├── levels.ddf │ │ ├── lines.ddf │ │ ├── lua │ │ │ └── edge_hud.lua │ │ ├── playlist.ddf │ │ ├── rscript.rts │ │ ├── sectors.ddf │ │ ├── sounds.ddf │ │ ├── styles.ddf │ │ ├── switch.ddf │ │ ├── things.ddf │ │ └── weapons.ddf │ └── sprites │ │ ├── STFFC0.lmp │ │ └── STFFH0.lmp ├── plutonia │ ├── graphics │ │ ├── BOSSBACK.lmp │ │ ├── CREDIT.lmp │ │ ├── INTERPIC.lmp │ │ └── TITLEPIC.lmp │ ├── scripts │ │ ├── games.ddf │ │ ├── images.ddf │ │ └── language.ldf │ └── textures │ │ ├── SKY1_B.png │ │ ├── SKY1_E.png │ │ ├── SKY1_N.png │ │ ├── SKY1_S.png │ │ ├── SKY1_T.png │ │ ├── SKY1_W.png │ │ ├── SKY2_B.png │ │ ├── SKY2_E.png │ │ ├── SKY2_N.png │ │ ├── SKY2_S.png │ │ ├── SKY2_T.png │ │ ├── SKY2_W.png │ │ ├── SKY3_B.png │ │ ├── SKY3_E.png │ │ ├── SKY3_N.png │ │ ├── SKY3_S.png │ │ ├── SKY3_T.png │ │ └── SKY3_W.png ├── rekkr │ ├── graphics │ │ ├── M_DOOM.lmp │ │ ├── M_EPISOD.lmp │ │ ├── M_HURT.lmp │ │ ├── M_JKILL.lmp │ │ ├── M_LGTTL.lmp │ │ ├── M_LOADG.lmp │ │ ├── M_NEWG.lmp │ │ ├── M_NGAME.lmp │ │ ├── M_NMARE.lmp │ │ ├── M_OPTION.lmp │ │ ├── M_QUITG.lmp │ │ ├── M_RDTHIS.lmp │ │ ├── M_ROUGH.lmp │ │ ├── M_SAVEG.lmp │ │ ├── M_SGTTL.lmp │ │ ├── M_SKILL.lmp │ │ ├── M_SKULL1.png │ │ ├── M_SKULL2.png │ │ ├── M_SKULL3.png │ │ ├── M_SKULL4.png │ │ ├── M_ULTRA.lmp │ │ ├── STBARL.lmp │ │ ├── STBARR.lmp │ │ ├── WIENTER.lmp │ │ ├── WIF.lmp │ │ ├── WILV00.lmp │ │ ├── WILV01.lmp │ │ ├── WILV02.lmp │ │ ├── WILV03.lmp │ │ ├── WILV04.lmp │ │ ├── WILV05.lmp │ │ ├── WILV06.lmp │ │ ├── WILV07.lmp │ │ ├── WILV08.lmp │ │ ├── WILV10.lmp │ │ ├── WILV11.lmp │ │ ├── WILV12.lmp │ │ ├── WILV13.lmp │ │ ├── WILV14.lmp │ │ ├── WILV15.lmp │ │ ├── WILV16.lmp │ │ ├── WILV17.lmp │ │ ├── WILV18.lmp │ │ ├── WILV20.lmp │ │ ├── WILV21.lmp │ │ ├── WILV22.lmp │ │ ├── WILV23.lmp │ │ ├── WILV24.lmp │ │ ├── WILV25.lmp │ │ ├── WILV26.lmp │ │ ├── WILV27.lmp │ │ ├── WILV28.lmp │ │ ├── WILV30.lmp │ │ ├── WILV31.lmp │ │ ├── WILV32.lmp │ │ ├── WILV33.lmp │ │ ├── WILV34.lmp │ │ ├── WILV35.lmp │ │ ├── WILV36.lmp │ │ ├── WILV37.lmp │ │ ├── WILV38.lmp │ │ ├── WIOSTF.lmp │ │ ├── WIOSTI.lmp │ │ ├── WIOSTK.lmp │ │ ├── WIOSTS.lmp │ │ ├── WIPAR.lmp │ │ ├── WISCRT2.lmp │ │ └── WITIME.lmp │ ├── scripts │ │ ├── anims.ddf │ │ ├── attacks.ddf │ │ ├── fonts.ddf │ │ ├── games.ddf │ │ ├── images.ddf │ │ ├── language.ldf │ │ ├── styles.ddf │ │ ├── things.ddf │ │ └── weapons.ddf │ └── sprites │ │ ├── SSWVA1.lmp │ │ ├── SSWVA2A8.lmp │ │ ├── SSWVA3A7.lmp │ │ ├── SSWVA4A6.lmp │ │ ├── SSWVA5.lmp │ │ ├── SSWVB1.lmp │ │ ├── SSWVB2B8.lmp │ │ ├── SSWVB3B7.lmp │ │ ├── SSWVB4B6.lmp │ │ └── SSWVB5.lmp ├── strife │ ├── games.ddf │ ├── images.ddf │ └── playlist.ddf └── tnt │ ├── graphics │ ├── BOSSBACK.lmp │ ├── CREDIT.lmp │ ├── INTERPIC.lmp │ └── TITLEPIC.lmp │ ├── scripts │ ├── games.ddf │ ├── images.ddf │ └── language.ldf │ └── textures │ ├── SKY1_B.png │ ├── SKY1_E.png │ ├── SKY1_N.png │ ├── SKY1_S.png │ ├── SKY1_T.png │ ├── SKY1_W.png │ ├── SKY2_B.png │ ├── SKY2_E.png │ ├── SKY2_N.png │ ├── SKY2_S.png │ ├── SKY2_T.png │ ├── SKY2_W.png │ ├── SKY3_B.png │ ├── SKY3_E.png │ ├── SKY3_N.png │ ├── SKY3_S.png │ ├── SKY3_T.png │ └── SKY3_W.png ├── edge_defs ├── SNDFONT.sf3 ├── colormaps │ ├── AUTOMAPS.dat │ ├── LAVAMAP.cmp │ ├── NITEVMAP.cmp │ ├── PLYRMAPS.dat │ ├── SARGMAPS.dat │ ├── SHADEMAP.cmp │ ├── SKINMAPS.dat │ ├── SLIMEMAP.cmp │ ├── TEXTMAPS.dat │ ├── TXTBLUES.dat │ ├── TXTBRNS1.dat │ ├── TXTBRNS2.dat │ ├── TXTGREYS.dat │ ├── TXTGRNS.dat │ ├── TXTORANS.dat │ ├── TXTPNKS1.dat │ ├── TXTPNKS2.dat │ ├── TXTPURPS.dat │ ├── TXTREDS.dat │ ├── TXTYLWS1.dat │ ├── TXTYLWS2.dat │ └── WATERMAP.cmp ├── graphics │ ├── CREDIT2.lmp │ ├── DLITEXPN.png │ ├── EDGECRED.png │ ├── EDGETTL.lmp │ ├── ENDFONT.png │ ├── FONTVERD.png │ ├── MOUSE.lmp │ ├── M_EPI5.lmp │ ├── M_EPI6.lmp │ ├── STBARL.lmp │ ├── STBARR.lmp │ ├── STCFN000.lmp │ ├── STCFN132.lmp │ ├── STCFN134.lmp │ ├── STCFN148.lmp │ ├── STDESYNC.lmp │ ├── STFB0.lmp │ ├── STFB1.lmp │ ├── STFB2.lmp │ ├── STFB3.lmp │ ├── STFB4.lmp │ ├── STFB5.lmp │ ├── STFB6.lmp │ ├── STFB7.lmp │ ├── STKEYS6.lmp │ ├── STKEYS7.lmp │ ├── STKEYS8.lmp │ ├── STKEYS9.PNG │ ├── STKEYSA.PNG │ ├── STPB0.lmp │ ├── STPB1.lmp │ ├── STPB2.lmp │ ├── STPB3.lmp │ ├── STPB4.lmp │ ├── STPB5.lmp │ ├── STPB6.lmp │ ├── STPB7.lmp │ └── edge1_font │ │ ├── ED1FN001.png │ │ ├── ED1FN002.png │ │ ├── ED1FN003.png │ │ ├── ED1FN004.png │ │ ├── ED1FN005.png │ │ ├── ED1FN006.png │ │ ├── ED1FN007.png │ │ ├── ED1FN008.png │ │ ├── ED1FN009.png │ │ ├── ED1FN010.png │ │ ├── ED1FN011.png │ │ ├── ED1FN012.png │ │ ├── ED1FN013.png │ │ ├── ED1FN014.png │ │ ├── ED1FN015.png │ │ ├── ED1FN016.png │ │ ├── ED1FN017.png │ │ ├── ED1FN018.png │ │ ├── ED1FN019.png │ │ ├── ED1FN020.png │ │ ├── ED1FN021.png │ │ ├── ED1FN022.png │ │ ├── ED1FN023.png │ │ ├── ED1FN024.png │ │ ├── ED1FN025.png │ │ ├── ED1FN026.png │ │ ├── ED1FN027.png │ │ ├── ED1FN028.png │ │ ├── ED1FN029.png │ │ ├── ED1FN030.png │ │ ├── ED1FN031.png │ │ ├── ED1FN032.png │ │ ├── ED1FN033.png │ │ ├── ED1FN034.png │ │ ├── ED1FN035.png │ │ ├── ED1FN036.png │ │ ├── ED1FN037.png │ │ ├── ED1FN038.png │ │ ├── ED1FN039.png │ │ ├── ED1FN040.png │ │ ├── ED1FN041.png │ │ ├── ED1FN042.png │ │ ├── ED1FN043.png │ │ ├── ED1FN044.png │ │ ├── ED1FN045.png │ │ ├── ED1FN046.png │ │ ├── ED1FN047.png │ │ ├── ED1FN048.png │ │ ├── ED1FN049.png │ │ ├── ED1FN050.png │ │ ├── ED1FN051.png │ │ ├── ED1FN052.png │ │ ├── ED1FN053.png │ │ ├── ED1FN054.png │ │ ├── ED1FN055.png │ │ ├── ED1FN056.png │ │ ├── ED1FN057.png │ │ ├── ED1FN058.png │ │ ├── ED1FN059.png │ │ ├── ED1FN060.png │ │ ├── ED1FN061.png │ │ ├── ED1FN062.png │ │ ├── ED1FN063.png │ │ ├── ED1FN064.png │ │ ├── ED1FN065.png │ │ ├── ED1FN066.png │ │ ├── ED1FN067.png │ │ ├── ED1FN068.png │ │ ├── ED1FN069.png │ │ ├── ED1FN070.png │ │ ├── ED1FN071.png │ │ ├── ED1FN072.png │ │ ├── ED1FN073.png │ │ ├── ED1FN074.png │ │ ├── ED1FN075.png │ │ ├── ED1FN076.png │ │ ├── ED1FN077.png │ │ ├── ED1FN078.png │ │ ├── ED1FN079.png │ │ ├── ED1FN080.png │ │ ├── ED1FN081.png │ │ ├── ED1FN082.png │ │ ├── ED1FN083.png │ │ ├── ED1FN084.png │ │ ├── ED1FN085.png │ │ └── ED1FN086.png ├── movies │ └── ECINTRO.mpg ├── scripts │ ├── anims.ddf │ ├── attacks.ddf │ ├── coal_api.ec │ ├── coal_hud.ec │ ├── colmap.ddf │ ├── flats.ddf │ ├── fonts.ddf │ ├── games.ddf │ ├── images.ddf │ ├── language.ldf │ ├── levels.ddf │ ├── lines.ddf │ ├── lua │ │ ├── core │ │ │ ├── base64.lua │ │ │ ├── debugger.lua │ │ │ ├── json.lua │ │ │ ├── mat2.lua │ │ │ ├── mat3.lua │ │ │ ├── mat4.lua │ │ │ ├── mat4Extended.lua │ │ │ ├── quat.lua │ │ │ ├── vec2.lua │ │ │ ├── vec3.lua │ │ │ └── vec4.lua │ │ ├── edge_api.lua │ │ └── edge_hud.lua │ ├── movies.ddf │ ├── playlist.ddf │ ├── reverbs.ddf │ ├── rscript.rts │ ├── sectors.ddf │ ├── sounds.ddf │ ├── styles.ddf │ ├── switch.ddf │ ├── things.ddf │ ├── wadfixes.ddf │ └── weapons.ddf ├── sounds │ ├── DPBAREXP.lmp │ ├── DPBDCLS.lmp │ ├── DPBDOPN.lmp │ ├── DPBFG.lmp │ ├── DPBGACT.lmp │ ├── DPBGDTH1.lmp │ ├── DPBGDTH2.lmp │ ├── DPBGSIT1.lmp │ ├── DPBGSIT2.lmp │ ├── DPBOSCUB.lmp │ ├── DPBOSDTH.lmp │ ├── DPBOSPIT.lmp │ ├── DPBOSPN.lmp │ ├── DPBOSSIT.lmp │ ├── DPBRSDTH.lmp │ ├── DPBRSSIT.lmp │ ├── DPBSPACT.lmp │ ├── DPBSPDTH.lmp │ ├── DPBSPSIT.lmp │ ├── DPBSPWLK.lmp │ ├── DPCACDTH.lmp │ ├── DPCACSIT.lmp │ ├── DPCLAW.lmp │ ├── DPCYBDTH.lmp │ ├── DPCYBSIT.lmp │ ├── DPDBCLS.lmp │ ├── DPDBLOAD.lmp │ ├── DPDBOPN.lmp │ ├── DPDMACT.lmp │ ├── DPDMPAIN.lmp │ ├── DPDORCLS.lmp │ ├── DPDOROPN.lmp │ ├── DPDSHTGN.lmp │ ├── DPFIRSHT.lmp │ ├── DPFIRXPL.lmp │ ├── DPFLAME.lmp │ ├── DPFLAMST.lmp │ ├── DPGETPOW.lmp │ ├── DPHOOF.lmp │ ├── DPITEMUP.lmp │ ├── DPITMBK.lmp │ ├── DPKEENDT.lmp │ ├── DPKEENPN.lmp │ ├── DPKNTDTH.lmp │ ├── DPKNTSIT.lmp │ ├── DPMANATK.lmp │ ├── DPMANDTH.lmp │ ├── DPMANSIT.lmp │ ├── DPMETAL.lmp │ ├── DPMNPAIN.lmp │ ├── DPNOWAY.lmp │ ├── DPOOF.lmp │ ├── DPPDIEHI.lmp │ ├── DPPEDTH.lmp │ ├── DPPEPAIN.lmp │ ├── DPPESIT.lmp │ ├── DPPISTOL.lmp │ ├── DPPLASMA.lmp │ ├── DPPLDETH.lmp │ ├── DPPLPAIN.lmp │ ├── DPPODTH1.lmp │ ├── DPPODTH2.lmp │ ├── DPPODTH3.lmp │ ├── DPPOPAIN.lmp │ ├── DPPOSACT.lmp │ ├── DPPOSIT1.lmp │ ├── DPPOSIT2.lmp │ ├── DPPOSIT3.lmp │ ├── DPPSTART.lmp │ ├── DPPSTOP.lmp │ ├── DPPUNCH.lmp │ ├── DPRADIO.lmp │ ├── DPRLAUNC.lmp │ ├── DPRXPLOD.lmp │ ├── DPSAWFUL.lmp │ ├── DPSAWHIT.lmp │ ├── DPSAWIDL.lmp │ ├── DPSAWUP.lmp │ ├── DPSGCOCK.lmp │ ├── DPSGTATK.lmp │ ├── DPSGTDTH.lmp │ ├── DPSGTSIT.lmp │ ├── DPSHOTGN.lmp │ ├── DPSKEACT.lmp │ ├── DPSKEATK.lmp │ ├── DPSKEDTH.lmp │ ├── DPSKEPCH.lmp │ ├── DPSKESIT.lmp │ ├── DPSKESWG.lmp │ ├── DPSKLATK.lmp │ ├── DPSKLDTH.lmp │ ├── DPSLOP.lmp │ ├── DPSPIDTH.lmp │ ├── DPSPISIT.lmp │ ├── DPSSDTH.lmp │ ├── DPSSSIT.lmp │ ├── DPSTNMOV.lmp │ ├── DPSWTCHN.lmp │ ├── DPSWTCHX.lmp │ ├── DPTELEPT.lmp │ ├── DPTINK.lmp │ ├── DPVILACT.lmp │ ├── DPVILATK.lmp │ ├── DPVILDTH.lmp │ ├── DPVILSIT.lmp │ ├── DPVIPAIN.lmp │ ├── DPWPNUP.lmp │ ├── DSACIDFT.ogg │ ├── DSCRUSH.lmp │ ├── DSDGACT.ogg │ ├── DSDGATK.ogg │ ├── DSDGDTH.ogg │ ├── DSDGPAIN.ogg │ ├── DSDGSIT.ogg │ ├── DSFSWAT1.wav │ ├── DSFSWAT2.wav │ ├── DSFSWAT3.wav │ ├── DSFSWAT4.wav │ ├── DSGLSBRK.wav │ ├── DSJPDOWN.lmp │ ├── DSJPFLOW.lmp │ ├── DSJPIDLE.lmp │ ├── DSJPMOVE.lmp │ ├── DSJPRISE.lmp │ ├── DSMUCKFT.ogg │ ├── DSSECRET.ogg │ ├── DSWATRFT.ogg │ ├── DSWTDIVE.wav │ └── HEARTBT1.ogg ├── sprites │ ├── ARM3A0.png │ ├── ARM3B0.png │ ├── ARM4A0.png │ ├── ARM4B0.png │ ├── ARM5A0.png │ ├── ARM5B0.png │ ├── BSPHA0.png │ ├── BSPHB0.png │ ├── BSPHC0.png │ ├── BSPHD0.png │ ├── BSPHE0.png │ ├── BSPHF0.png │ ├── BSPHG0.png │ ├── BSPHH0.png │ ├── BSPHI0.png │ ├── BSPHJ0.png │ ├── BSPHK0.png │ ├── GKEYA0.png │ ├── GKEYB0.png │ ├── GLS1A0.lmp │ ├── GLS2A0.lmp │ ├── GLS3A0.lmp │ ├── GLS4A0.lmp │ ├── GLS5A0.lmp │ ├── GLS6A0.lmp │ ├── GLS7A0.lmp │ ├── GLS8A0.lmp │ ├── GLS9A0.lmp │ ├── GSKUA0.png │ ├── GSKUB0.png │ ├── JPCKA0.lmp │ ├── JPCKB0.lmp │ ├── JPCKC0.lmp │ ├── LVASA0.png │ ├── LVASB0.png │ ├── LVASC0.png │ ├── LVASD0.png │ ├── LVASE0.png │ ├── LVASF0.png │ ├── MUDSA0.png │ ├── MUDSB0.png │ ├── MUDSC0.png │ ├── MUDSD0.png │ ├── MUDSE0.png │ ├── MUDSF0.png │ ├── MUDSG0.png │ ├── MUDSH0.png │ ├── NVSCA0.lmp │ ├── NVSCB0.lmp │ ├── PLAYX1.lmp │ ├── PLAYX2X8.lmp │ ├── PLAYX3X7.lmp │ ├── PLAYX4X6.lmp │ ├── PLAYX5.lmp │ ├── PLAYY1.lmp │ ├── PLAYY2Y8.lmp │ ├── PLAYY3Y7.lmp │ ├── PLAYY4Y6.lmp │ ├── PLAYY5.lmp │ ├── PLS1A0.lmp │ ├── PLS1B0.lmp │ ├── PLS1C0.lmp │ ├── PLS1D0.lmp │ ├── PLS1E0.lmp │ ├── PLS1F0.lmp │ ├── PLS1G0.lmp │ ├── PLS2A0.lmp │ ├── PLS2B0.lmp │ ├── PLS2C0.lmp │ ├── PLS2D0.lmp │ ├── PLS2E0.lmp │ ├── PRT1A0.png │ ├── PRT2A0.png │ ├── PRT3A0.png │ ├── SLDGA0.png │ ├── SLDGB0.png │ ├── SLDGC0.png │ ├── SLDGD0.png │ ├── SLDGE0.png │ ├── SLDGF0.png │ ├── SLDGG0.png │ ├── SLDGH0.png │ ├── SLIMA0.png │ ├── SLIMB0.png │ ├── SLIMC0.png │ ├── SLIMD0.png │ ├── SLIME0.png │ ├── SLIMF0.png │ ├── SLIMG0.png │ ├── SLIMH0.png │ ├── SPSHA0.png │ ├── SPSHB0.png │ ├── SPSHC0.png │ ├── SPSHD0.png │ ├── SPSHE0.png │ ├── SPSHF0.png │ ├── SPSHG0.png │ ├── SPSHH0.png │ ├── SPSHI0.png │ ├── SPSHJ0.png │ ├── SPSHK0.png │ ├── TSTPA0.png │ ├── TSTPB0.lmp │ └── mbf_dog │ │ ├── MBFDA1.png │ │ ├── MBFDA2.png │ │ ├── MBFDA3.png │ │ ├── MBFDA4.png │ │ ├── MBFDA5.png │ │ ├── MBFDA6.png │ │ ├── MBFDA7.png │ │ ├── MBFDA8.png │ │ ├── MBFDB1.png │ │ ├── MBFDB2.png │ │ ├── MBFDB3.png │ │ ├── MBFDB4.png │ │ ├── MBFDB5.png │ │ ├── MBFDB6.png │ │ ├── MBFDB7.png │ │ ├── MBFDB8.png │ │ ├── MBFDC1.png │ │ ├── MBFDC2.png │ │ ├── MBFDC3.png │ │ ├── MBFDC4.png │ │ ├── MBFDC5.png │ │ ├── MBFDC6.png │ │ ├── MBFDC7.png │ │ ├── MBFDC8.png │ │ ├── MBFDD1.png │ │ ├── MBFDD2.png │ │ ├── MBFDD3.png │ │ ├── MBFDD4.png │ │ ├── MBFDD5.png │ │ ├── MBFDD6.png │ │ ├── MBFDD7.png │ │ ├── MBFDD8.png │ │ ├── MBFDE1.png │ │ ├── MBFDE2.png │ │ ├── MBFDE3.png │ │ ├── MBFDE4.png │ │ ├── MBFDE5.png │ │ ├── MBFDE6.png │ │ ├── MBFDE7.png │ │ ├── MBFDE8.png │ │ ├── MBFDF1.png │ │ ├── MBFDF2.png │ │ ├── MBFDF3.png │ │ ├── MBFDF4.png │ │ ├── MBFDF5.png │ │ ├── MBFDF6.png │ │ ├── MBFDF7.png │ │ ├── MBFDF8.png │ │ ├── MBFDG1.png │ │ ├── MBFDG2.png │ │ ├── MBFDG3.png │ │ ├── MBFDG4.png │ │ ├── MBFDG5.png │ │ ├── MBFDG6.png │ │ ├── MBFDG7.png │ │ ├── MBFDG8.png │ │ ├── MBFDH1.png │ │ ├── MBFDH2.png │ │ ├── MBFDH3.png │ │ ├── MBFDH4.png │ │ ├── MBFDH5.png │ │ ├── MBFDH6.png │ │ ├── MBFDH7.png │ │ ├── MBFDH8.png │ │ ├── MBFDI0.png │ │ ├── MBFDJ0.png │ │ ├── MBFDK0.png │ │ ├── MBFDL0.png │ │ ├── MBFDM0.png │ │ └── MBFDN0.png ├── textures │ ├── FUZZMAP8.png │ ├── PORTAL7A.jpg │ ├── PORTAL7B.jpg │ ├── PORTAL7C.jpg │ ├── PORTAL7D.jpg │ ├── PORTAL7E.jpg │ ├── PORTAL7F.jpg │ └── PORTAL7G.jpg ├── ttf │ ├── ECFONT01.ttf │ ├── ECFONT02.ttf │ └── ECFONT03.ttf └── version.txt ├── edge_fixes ├── .gitignore ├── 18c54748d126d246f82f97232a668ccb.epk ├── 450842739e332f0dab3ba0b7a7889d03.epk ├── aaa4ac5f82e61154e5110f09761371b6.epk ├── ae7c73085764f97403823c8ec770146d.epk ├── b6c622265ed7d6804b5f2dcfa6291f6c.epk ├── c1167b22616a8a23da3c01e90148eea8.epk ├── cfdf8bb2c16e43842ab2f2f5ea196fe5.epk ├── dd832bfc809b1bab8d0b1d17e31384e0.epk ├── doom2_bfg.epk ├── f22db40f110c9b67d1b7ebab3dcbe63a.epk └── fb7662c7adb2e49cb8f693d7ca1c364e.epk ├── libraries ├── CMakeLists.txt ├── almostequals │ ├── AlmostEquals.h │ ├── CMakeLists.txt │ └── LICENSE ├── fluidlite │ ├── CMakeLists.txt │ ├── LICENSE │ ├── include │ │ ├── fluidlite.h │ │ └── fluidlite │ │ │ ├── gen.h │ │ │ ├── log.h │ │ │ ├── misc.h │ │ │ ├── mod.h │ │ │ ├── settings.h │ │ │ ├── sfont.h │ │ │ ├── synth.h │ │ │ ├── types.h │ │ │ └── voice.h │ └── src │ │ ├── fluid_chan.c │ │ ├── fluid_chan.h │ │ ├── fluid_chorus.c │ │ ├── fluid_chorus.h │ │ ├── fluid_config.h │ │ ├── fluid_conv.c │ │ ├── fluid_conv.h │ │ ├── fluid_defsfont.c │ │ ├── fluid_defsfont.h │ │ ├── fluid_dsp_float.c │ │ ├── fluid_gen.c │ │ ├── fluid_gen.h │ │ ├── fluid_hash.c │ │ ├── fluid_hash.h │ │ ├── fluid_list.c │ │ ├── fluid_list.h │ │ ├── fluid_midi.h │ │ ├── fluid_mod.c │ │ ├── fluid_mod.h │ │ ├── fluid_phase.h │ │ ├── fluid_rev.c │ │ ├── fluid_rev.h │ │ ├── fluid_settings.c │ │ ├── fluid_settings.h │ │ ├── fluid_sfont.h │ │ ├── fluid_synth.c │ │ ├── fluid_synth.h │ │ ├── fluid_sys.c │ │ ├── fluid_sys.h │ │ ├── fluid_tuning.c │ │ ├── fluid_tuning.h │ │ ├── fluid_voice.c │ │ ├── fluid_voice.h │ │ └── fluidsynth_priv.h ├── glad │ ├── CMakeLists.txt │ ├── include │ │ ├── KHR │ │ │ └── khrplatform.h │ │ └── glad │ │ │ └── gl.h │ └── src │ │ └── gl.c ├── hmm │ ├── CMakeLists.txt │ ├── HandmadeMath.h │ └── LICENSE ├── libcRSID │ ├── CMakeLists.txt │ ├── LICENSE │ ├── libcRSID.c │ └── libcRSID.h ├── lua │ ├── CMakeLists.txt │ ├── lapi.c │ ├── lapi.h │ ├── lauxlib.c │ ├── lauxlib.h │ ├── lbaselib.c │ ├── lcode.c │ ├── lcode.h │ ├── lcorolib.c │ ├── lctype.c │ ├── lctype.h │ ├── ldblib.c │ ├── ldebug.c │ ├── ldebug.h │ ├── ldo.c │ ├── ldo.h │ ├── ldump.c │ ├── lfunc.c │ ├── lfunc.h │ ├── lgc.c │ ├── lgc.h │ ├── linit.c │ ├── liolib.c │ ├── ljumptab.h │ ├── llex.c │ ├── llex.h │ ├── llimits.h │ ├── lmathlib.c │ ├── lmem.c │ ├── lmem.h │ ├── loadlib.c │ ├── lobject.c │ ├── lobject.h │ ├── lopcodes.c │ ├── lopcodes.h │ ├── lopnames.h │ ├── loslib.c │ ├── lparser.c │ ├── lparser.h │ ├── lprefix.h │ ├── lstate.c │ ├── lstate.h │ ├── lstring.c │ ├── lstring.h │ ├── lstrlib.c │ ├── ltable.c │ ├── ltable.h │ ├── ltablib.c │ ├── ltm.c │ ├── ltm.h │ ├── lua.c │ ├── lua.h │ ├── lua.hpp │ ├── luaconf.h │ ├── lualib.h │ ├── lundump.c │ ├── lundump.h │ ├── lutf8lib.c │ ├── lvm.c │ ├── lvm.h │ ├── lzio.c │ └── lzio.h ├── m4p │ ├── CMakeLists.txt │ ├── LICENSE │ ├── m4p.c │ └── m4p.h ├── miniaudio │ ├── CMakeLists.txt │ ├── LICENSE │ ├── miniaudio.cc │ ├── miniaudio.h │ ├── miniaudio_freeverb.h │ └── verblib.h ├── minivorbis │ ├── CMakeLists.txt │ ├── minivorbis.c │ └── minivorbis.h ├── miniz │ ├── CMakeLists.txt │ ├── ChangeLog.md │ ├── LICENSE │ ├── miniz.c │ ├── miniz.h │ └── readme.md ├── opalmidi │ ├── CMakeLists.txt │ ├── LICENSE.txt │ ├── opal.cpp │ ├── opal.h │ ├── opalmidi.cpp │ ├── opalmidi.h │ ├── patches.cpp │ └── patches.h ├── pl_mpeg │ ├── CMakeLists.txt │ ├── LICENSE │ ├── pl_mpeg.cc │ └── pl_mpeg.h ├── prns │ ├── CMakeLists.txt │ └── prns.h ├── sdl2 │ ├── LICENSE.txt │ ├── mingw │ │ ├── include │ │ │ └── SDL2 │ │ │ │ ├── SDL.h │ │ │ │ ├── SDL_assert.h │ │ │ │ ├── SDL_atomic.h │ │ │ │ ├── SDL_audio.h │ │ │ │ ├── SDL_bits.h │ │ │ │ ├── SDL_blendmode.h │ │ │ │ ├── SDL_clipboard.h │ │ │ │ ├── SDL_config.h │ │ │ │ ├── SDL_config_android.h │ │ │ │ ├── SDL_config_emscripten.h │ │ │ │ ├── SDL_config_iphoneos.h │ │ │ │ ├── SDL_config_macosx.h │ │ │ │ ├── SDL_config_minimal.h │ │ │ │ ├── SDL_config_ngage.h │ │ │ │ ├── SDL_config_os2.h │ │ │ │ ├── SDL_config_pandora.h │ │ │ │ ├── SDL_config_windows.h │ │ │ │ ├── SDL_config_wingdk.h │ │ │ │ ├── SDL_config_winrt.h │ │ │ │ ├── SDL_config_xbox.h │ │ │ │ ├── SDL_cpuinfo.h │ │ │ │ ├── SDL_egl.h │ │ │ │ ├── SDL_endian.h │ │ │ │ ├── SDL_error.h │ │ │ │ ├── SDL_events.h │ │ │ │ ├── SDL_filesystem.h │ │ │ │ ├── SDL_gamecontroller.h │ │ │ │ ├── SDL_gesture.h │ │ │ │ ├── SDL_guid.h │ │ │ │ ├── SDL_haptic.h │ │ │ │ ├── SDL_hidapi.h │ │ │ │ ├── SDL_hints.h │ │ │ │ ├── SDL_joystick.h │ │ │ │ ├── SDL_keyboard.h │ │ │ │ ├── SDL_keycode.h │ │ │ │ ├── SDL_loadso.h │ │ │ │ ├── SDL_locale.h │ │ │ │ ├── SDL_log.h │ │ │ │ ├── SDL_main.h │ │ │ │ ├── SDL_messagebox.h │ │ │ │ ├── SDL_metal.h │ │ │ │ ├── SDL_misc.h │ │ │ │ ├── SDL_mouse.h │ │ │ │ ├── SDL_mutex.h │ │ │ │ ├── SDL_name.h │ │ │ │ ├── SDL_opengl.h │ │ │ │ ├── SDL_opengl_glext.h │ │ │ │ ├── SDL_opengles.h │ │ │ │ ├── SDL_opengles2.h │ │ │ │ ├── SDL_opengles2_gl2.h │ │ │ │ ├── SDL_opengles2_gl2ext.h │ │ │ │ ├── SDL_opengles2_gl2platform.h │ │ │ │ ├── SDL_opengles2_khrplatform.h │ │ │ │ ├── SDL_pixels.h │ │ │ │ ├── SDL_platform.h │ │ │ │ ├── SDL_power.h │ │ │ │ ├── SDL_quit.h │ │ │ │ ├── SDL_rect.h │ │ │ │ ├── SDL_render.h │ │ │ │ ├── SDL_revision.h │ │ │ │ ├── SDL_rwops.h │ │ │ │ ├── SDL_scancode.h │ │ │ │ ├── SDL_sensor.h │ │ │ │ ├── SDL_shape.h │ │ │ │ ├── SDL_stdinc.h │ │ │ │ ├── SDL_surface.h │ │ │ │ ├── SDL_system.h │ │ │ │ ├── SDL_syswm.h │ │ │ │ ├── SDL_test.h │ │ │ │ ├── SDL_test_assert.h │ │ │ │ ├── SDL_test_common.h │ │ │ │ ├── SDL_test_compare.h │ │ │ │ ├── SDL_test_crc32.h │ │ │ │ ├── SDL_test_font.h │ │ │ │ ├── SDL_test_fuzzer.h │ │ │ │ ├── SDL_test_harness.h │ │ │ │ ├── SDL_test_images.h │ │ │ │ ├── SDL_test_log.h │ │ │ │ ├── SDL_test_md5.h │ │ │ │ ├── SDL_test_memory.h │ │ │ │ ├── SDL_test_random.h │ │ │ │ ├── SDL_thread.h │ │ │ │ ├── SDL_timer.h │ │ │ │ ├── SDL_touch.h │ │ │ │ ├── SDL_types.h │ │ │ │ ├── SDL_version.h │ │ │ │ ├── SDL_video.h │ │ │ │ ├── SDL_vulkan.h │ │ │ │ ├── begin_code.h │ │ │ │ └── close_code.h │ │ ├── x64 │ │ │ ├── SDL2.dll │ │ │ ├── libSDL2.dll.a │ │ │ └── libSDL2main.a │ │ └── x86 │ │ │ ├── SDL2.dll │ │ │ ├── libSDL2.dll.a │ │ │ └── libSDL2main.a │ ├── msvc │ │ ├── include │ │ │ └── SDL2 │ │ │ │ ├── SDL.h │ │ │ │ ├── SDL_assert.h │ │ │ │ ├── SDL_atomic.h │ │ │ │ ├── SDL_audio.h │ │ │ │ ├── SDL_bits.h │ │ │ │ ├── SDL_blendmode.h │ │ │ │ ├── SDL_clipboard.h │ │ │ │ ├── SDL_config.h │ │ │ │ ├── SDL_config_android.h │ │ │ │ ├── SDL_config_emscripten.h │ │ │ │ ├── SDL_config_iphoneos.h │ │ │ │ ├── SDL_config_macosx.h │ │ │ │ ├── SDL_config_minimal.h │ │ │ │ ├── SDL_config_ngage.h │ │ │ │ ├── SDL_config_os2.h │ │ │ │ ├── SDL_config_pandora.h │ │ │ │ ├── SDL_config_windows.h │ │ │ │ ├── SDL_config_wingdk.h │ │ │ │ ├── SDL_config_winrt.h │ │ │ │ ├── SDL_config_xbox.h │ │ │ │ ├── SDL_copying.h │ │ │ │ ├── SDL_cpuinfo.h │ │ │ │ ├── SDL_egl.h │ │ │ │ ├── SDL_endian.h │ │ │ │ ├── SDL_error.h │ │ │ │ ├── SDL_events.h │ │ │ │ ├── SDL_filesystem.h │ │ │ │ ├── SDL_gamecontroller.h │ │ │ │ ├── SDL_gesture.h │ │ │ │ ├── SDL_guid.h │ │ │ │ ├── SDL_haptic.h │ │ │ │ ├── SDL_hidapi.h │ │ │ │ ├── SDL_hints.h │ │ │ │ ├── SDL_joystick.h │ │ │ │ ├── SDL_keyboard.h │ │ │ │ ├── SDL_keycode.h │ │ │ │ ├── SDL_loadso.h │ │ │ │ ├── SDL_locale.h │ │ │ │ ├── SDL_log.h │ │ │ │ ├── SDL_main.h │ │ │ │ ├── SDL_messagebox.h │ │ │ │ ├── SDL_metal.h │ │ │ │ ├── SDL_misc.h │ │ │ │ ├── SDL_mouse.h │ │ │ │ ├── SDL_mutex.h │ │ │ │ ├── SDL_name.h │ │ │ │ ├── SDL_opengl.h │ │ │ │ ├── SDL_opengl_glext.h │ │ │ │ ├── SDL_opengles.h │ │ │ │ ├── SDL_opengles2.h │ │ │ │ ├── SDL_opengles2_gl2.h │ │ │ │ ├── SDL_opengles2_gl2ext.h │ │ │ │ ├── SDL_opengles2_gl2platform.h │ │ │ │ ├── SDL_opengles2_khrplatform.h │ │ │ │ ├── SDL_pixels.h │ │ │ │ ├── SDL_platform.h │ │ │ │ ├── SDL_power.h │ │ │ │ ├── SDL_quit.h │ │ │ │ ├── SDL_rect.h │ │ │ │ ├── SDL_render.h │ │ │ │ ├── SDL_revision.h │ │ │ │ ├── SDL_rwops.h │ │ │ │ ├── SDL_scancode.h │ │ │ │ ├── SDL_sensor.h │ │ │ │ ├── SDL_shape.h │ │ │ │ ├── SDL_stdinc.h │ │ │ │ ├── SDL_surface.h │ │ │ │ ├── SDL_system.h │ │ │ │ ├── SDL_syswm.h │ │ │ │ ├── SDL_test.h │ │ │ │ ├── SDL_test_assert.h │ │ │ │ ├── SDL_test_common.h │ │ │ │ ├── SDL_test_compare.h │ │ │ │ ├── SDL_test_crc32.h │ │ │ │ ├── SDL_test_font.h │ │ │ │ ├── SDL_test_fuzzer.h │ │ │ │ ├── SDL_test_harness.h │ │ │ │ ├── SDL_test_images.h │ │ │ │ ├── SDL_test_log.h │ │ │ │ ├── SDL_test_md5.h │ │ │ │ ├── SDL_test_memory.h │ │ │ │ ├── SDL_test_random.h │ │ │ │ ├── SDL_thread.h │ │ │ │ ├── SDL_timer.h │ │ │ │ ├── SDL_touch.h │ │ │ │ ├── SDL_types.h │ │ │ │ ├── SDL_version.h │ │ │ │ ├── SDL_video.h │ │ │ │ ├── SDL_vulkan.h │ │ │ │ ├── begin_code.h │ │ │ │ └── close_code.h │ │ ├── x64 │ │ │ ├── SDL2.dll │ │ │ ├── SDL2.lib │ │ │ ├── SDL2.pdb │ │ │ └── SDL2main.lib │ │ └── x86 │ │ │ ├── SDL2.dll │ │ │ ├── SDL2.lib │ │ │ ├── SDL2.pdb │ │ │ └── SDL2main.lib │ └── sdl2-config.cmake ├── sokol │ ├── CMakeLists.txt │ ├── sokol.cc │ ├── sokol_gfx.h │ ├── sokol_gfx_ec.h │ └── sokol_log.h ├── stb │ ├── CMakeLists.txt │ ├── LICENSE │ ├── stb.cc │ ├── stb_image.h │ ├── stb_rect_pack.h │ ├── stb_sprintf.h │ └── stb_truetype.h ├── thread │ ├── CMakeLists.txt │ ├── thread.cc │ └── thread.h └── tracy │ ├── CMakeLists.txt │ └── edge_profiling.h ├── overlays ├── .gitignore ├── Grill-1x.png ├── Grill-2x.png ├── Lines-1x.png ├── Lines-2x.png ├── Vertical-1x.png └── Vertical-2x.png ├── soundfont ├── 16-Bit Game Station.sf3 ├── ChipFreak.sf3 └── ProtoSquare!.sf3 ├── source_files ├── .clang-format ├── CMakeLists.txt ├── ajbsp │ ├── CMakeLists.txt │ ├── LICENSE.txt │ ├── bsp.h │ ├── bsp_level.cc │ ├── bsp_local.h │ ├── bsp_misc.cc │ ├── bsp_node.cc │ ├── bsp_utility.cc │ ├── bsp_utility.h │ ├── bsp_wad.cc │ └── bsp_wad.h ├── coal │ ├── CMakeLists.txt │ ├── LICENSE.txt │ ├── c_compile.cc │ ├── c_execute.cc │ ├── c_local.h │ ├── c_memory.cc │ └── coal.h ├── ddf │ ├── CMakeLists.txt │ ├── LICENSE.txt │ ├── ddf_anim.cc │ ├── ddf_anim.h │ ├── ddf_attack.cc │ ├── ddf_attack.h │ ├── ddf_boom.cc │ ├── ddf_collection.h │ ├── ddf_colormap.cc │ ├── ddf_colormap.h │ ├── ddf_flat.cc │ ├── ddf_flat.h │ ├── ddf_font.cc │ ├── ddf_font.h │ ├── ddf_game.cc │ ├── ddf_game.h │ ├── ddf_image.cc │ ├── ddf_image.h │ ├── ddf_language.cc │ ├── ddf_language.h │ ├── ddf_level.cc │ ├── ddf_level.h │ ├── ddf_line.cc │ ├── ddf_line.h │ ├── ddf_local.h │ ├── ddf_main.cc │ ├── ddf_main.h │ ├── ddf_movie.cc │ ├── ddf_movie.h │ ├── ddf_playlist.cc │ ├── ddf_playlist.h │ ├── ddf_reverb.cc │ ├── ddf_reverb.h │ ├── ddf_sector.cc │ ├── ddf_sfx.cc │ ├── ddf_sfx.h │ ├── ddf_states.cc │ ├── ddf_states.h │ ├── ddf_style.cc │ ├── ddf_style.h │ ├── ddf_switch.cc │ ├── ddf_switch.h │ ├── ddf_thing.cc │ ├── ddf_thing.h │ ├── ddf_types.h │ ├── ddf_wadfixes.cc │ ├── ddf_wadfixes.h │ ├── ddf_weapon.cc │ └── ddf_weapon.h ├── dehacked │ ├── CMakeLists.txt │ ├── LICENSE.txt │ ├── deh_ammo.cc │ ├── deh_ammo.h │ ├── deh_buffer.cc │ ├── deh_buffer.h │ ├── deh_edge.h │ ├── deh_english.h │ ├── deh_field.cc │ ├── deh_field.h │ ├── deh_frames.cc │ ├── deh_frames.h │ ├── deh_info.cc │ ├── deh_info.h │ ├── deh_main.cc │ ├── deh_misc.cc │ ├── deh_misc.h │ ├── deh_mobj.cc │ ├── deh_mobj.h │ ├── deh_music.cc │ ├── deh_music.h │ ├── deh_patch.cc │ ├── deh_patch.h │ ├── deh_rscript.cc │ ├── deh_rscript.h │ ├── deh_sounds.cc │ ├── deh_sounds.h │ ├── deh_sprites.cc │ ├── deh_sprites.h │ ├── deh_system.cc │ ├── deh_system.h │ ├── deh_text.cc │ ├── deh_text.h │ ├── deh_things.cc │ ├── deh_things.h │ ├── deh_wad.cc │ ├── deh_wad.h │ ├── deh_weapons.cc │ └── deh_weapons.h ├── edge │ ├── CMakeLists.txt │ ├── am_map.cc │ ├── am_map.h │ ├── bot_nav.cc │ ├── bot_nav.h │ ├── bot_think.cc │ ├── bot_think.h │ ├── con_con.cc │ ├── con_gui.h │ ├── con_main.cc │ ├── con_main.h │ ├── con_var.cc │ ├── con_var.h │ ├── defaults.h │ ├── dm_defs.h │ ├── dm_state.h │ ├── dstrings.h │ ├── e_event.h │ ├── e_input.cc │ ├── e_input.h │ ├── e_main.cc │ ├── e_main.h │ ├── e_player.cc │ ├── e_player.h │ ├── e_search.h │ ├── e_ticcmd.h │ ├── edge-classic.desktop │ ├── edge-classic.ico │ ├── edge-classic.png │ ├── edge-classic.sh │ ├── f_finale.cc │ ├── f_finale.h │ ├── f_interm.cc │ ├── f_interm.h │ ├── g_game.cc │ ├── g_game.h │ ├── hu_draw.cc │ ├── hu_draw.h │ ├── hu_font.cc │ ├── hu_font.h │ ├── hu_stuff.cc │ ├── hu_stuff.h │ ├── hu_style.cc │ ├── hu_style.h │ ├── i_ctrl.cc │ ├── i_defs_gl.h │ ├── i_main.cc │ ├── i_movie.cc │ ├── i_movie.h │ ├── i_sound.cc │ ├── i_sound.h │ ├── i_system.cc │ ├── i_system.h │ ├── i_video.cc │ ├── i_video.h │ ├── i_web.cc │ ├── im_data.cc │ ├── im_data.h │ ├── im_filter.cc │ ├── im_filter.h │ ├── im_funcs.cc │ ├── im_funcs.h │ ├── l_deh.cc │ ├── l_deh.h │ ├── m_argv.cc │ ├── m_argv.h │ ├── m_bbox.cc │ ├── m_bbox.h │ ├── m_cheat.cc │ ├── m_cheat.h │ ├── m_math.cc │ ├── m_math.h │ ├── m_menu.cc │ ├── m_menu.h │ ├── m_misc.cc │ ├── m_misc.h │ ├── m_netgame.cc │ ├── m_netgame.h │ ├── m_option.cc │ ├── m_option.h │ ├── m_random.cc │ ├── m_random.h │ ├── n_network.cc │ ├── n_network.h │ ├── p_action.cc │ ├── p_action.h │ ├── p_blockmap.cc │ ├── p_blockmap.h │ ├── p_enemy.cc │ ├── p_forces.cc │ ├── p_inter.cc │ ├── p_lights.cc │ ├── p_local.h │ ├── p_map.cc │ ├── p_maputl.cc │ ├── p_mobj.cc │ ├── p_mobj.h │ ├── p_plane.cc │ ├── p_setup.cc │ ├── p_setup.h │ ├── p_sight.cc │ ├── p_spec.cc │ ├── p_spec.h │ ├── p_switch.cc │ ├── p_telept.cc │ ├── p_tick.cc │ ├── p_tick.h │ ├── p_umapinfo.cc │ ├── p_umapinfo.h │ ├── p_user.cc │ ├── p_weapon.cc │ ├── p_weapon.h │ ├── r_backend.cc │ ├── r_backend.h │ ├── r_bsp.cc │ ├── r_colormap.cc │ ├── r_colormap.h │ ├── r_defs.h │ ├── r_doomtex.cc │ ├── r_draw.cc │ ├── r_draw.h │ ├── r_effects.cc │ ├── r_effects.h │ ├── r_gldefs.h │ ├── r_image.cc │ ├── r_image.h │ ├── r_main.cc │ ├── r_md2.h │ ├── r_mdcommon.h │ ├── r_mdl.h │ ├── r_mirror.cc │ ├── r_mirror.h │ ├── r_misc.cc │ ├── r_misc.h │ ├── r_modes.cc │ ├── r_modes.h │ ├── r_occlude.cc │ ├── r_occlude.h │ ├── r_render.cc │ ├── r_render.h │ ├── r_shader.cc │ ├── r_shader.h │ ├── r_sky.cc │ ├── r_sky.h │ ├── r_state.h │ ├── r_texgl.cc │ ├── r_texgl.h │ ├── r_things.cc │ ├── r_things.h │ ├── r_units.cc │ ├── r_units.h │ ├── r_wipe.cc │ ├── r_wipe.h │ ├── rad_act.cc │ ├── rad_act.h │ ├── rad_defs.h │ ├── rad_pars.cc │ ├── rad_trig.cc │ ├── rad_trig.h │ ├── render │ │ ├── gl │ │ │ ├── gl_backend.cc │ │ │ ├── gl_md2.cc │ │ │ ├── gl_mdl.cc │ │ │ ├── gl_sky.cc │ │ │ ├── gl_state.cc │ │ │ └── gl_units.cc │ │ └── sokol │ │ │ ├── shaders │ │ │ ├── world.glsl │ │ │ └── world.h │ │ │ ├── sokol_backend.cc │ │ │ ├── sokol_d3d11.cc │ │ │ ├── sokol_d3d11.h │ │ │ ├── sokol_gl.cc │ │ │ ├── sokol_gl.h │ │ │ ├── sokol_gl_defines.h │ │ │ ├── sokol_images.cc │ │ │ ├── sokol_images.h │ │ │ ├── sokol_local.h │ │ │ ├── sokol_md2.cc │ │ │ ├── sokol_mdl.cc │ │ │ ├── sokol_pipeline.cc │ │ │ ├── sokol_pipeline.h │ │ │ ├── sokol_sky.cc │ │ │ ├── sokol_state.cc │ │ │ └── sokol_units.cc │ ├── s_blit.cc │ ├── s_blit.h │ ├── s_cache.cc │ ├── s_cache.h │ ├── s_doom.cc │ ├── s_doom.h │ ├── s_flac.cc │ ├── s_flac.h │ ├── s_m4p.cc │ ├── s_m4p.h │ ├── s_midi.cc │ ├── s_midi.h │ ├── s_midi_ec.cc │ ├── s_midi_seq.h │ ├── s_mp3.cc │ ├── s_mp3.h │ ├── s_music.cc │ ├── s_music.h │ ├── s_ogg.cc │ ├── s_ogg.h │ ├── s_sid.cc │ ├── s_sid.h │ ├── s_sound.cc │ ├── s_sound.h │ ├── s_wav.cc │ ├── s_wav.h │ ├── script │ │ ├── compat │ │ │ ├── lua_compat.cc │ │ │ ├── lua_compat.h │ │ │ ├── lua_core.cc │ │ │ ├── lua_game.cc │ │ │ ├── lua_hud.cc │ │ │ ├── lua_player.cc │ │ │ └── lua_vm.cc │ │ ├── lua_debugger.cc │ │ └── lua_debugger.h │ ├── snd_data.cc │ ├── snd_data.h │ ├── snd_gather.cc │ ├── snd_gather.h │ ├── snd_types.cc │ ├── snd_types.h │ ├── sv_chunk.cc │ ├── sv_chunk.h │ ├── sv_glob.cc │ ├── sv_level.cc │ ├── sv_load.cc │ ├── sv_main.cc │ ├── sv_main.h │ ├── sv_misc.cc │ ├── sv_mobj.cc │ ├── sv_play.cc │ ├── sv_save.cc │ ├── swirl_table.h │ ├── version.h │ ├── vm_coal.cc │ ├── vm_coal.h │ ├── vm_hud.cc │ ├── vm_player.cc │ ├── w32_res.rc │ ├── w_epk.cc │ ├── w_epk.h │ ├── w_files.cc │ ├── w_files.h │ ├── w_flat.cc │ ├── w_flat.h │ ├── w_model.cc │ ├── w_model.h │ ├── w_sprite.cc │ ├── w_sprite.h │ ├── w_texture.cc │ ├── w_texture.h │ ├── w_wad.cc │ └── w_wad.h └── epi │ ├── CMakeLists.txt │ ├── LICENSE.txt │ ├── epi.cc │ ├── epi.h │ ├── epi_bam.h │ ├── epi_bitset.h │ ├── epi_color.cc │ ├── epi_color.h │ ├── epi_crc.cc │ ├── epi_crc.h │ ├── epi_doomdefs.h │ ├── epi_endian.h │ ├── epi_file.cc │ ├── epi_file.h │ ├── epi_filesystem.cc │ ├── epi_filesystem.h │ ├── epi_md5.cc │ ├── epi_md5.h │ ├── epi_scanner.cpp │ ├── epi_scanner.h │ ├── epi_sdl.h │ ├── epi_str_compare.cc │ ├── epi_str_compare.h │ ├── epi_str_hash.cc │ ├── epi_str_hash.h │ ├── epi_str_util.cc │ ├── epi_str_util.h │ └── epi_windows.h └── web ├── preload └── .gitkeep └── site ├── index.html ├── logo.png └── webplayer.py /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/.clang-format -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/cmake.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/.github/workflows/cmake.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /ASanSuppress.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/ASanSuppress.txt -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /COMPILING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/COMPILING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/README.md -------------------------------------------------------------------------------- /TSanSuppress.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/TSanSuppress.txt -------------------------------------------------------------------------------- /autoload/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /autoload/blasphemer/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /autoload/chex1/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /autoload/chex3v/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /autoload/chex3vm/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /autoload/doom/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /autoload/doom1/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /autoload/doom2/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /autoload/freedoom1/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /autoload/freedoom2/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /autoload/hacx/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /autoload/harmony/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /autoload/heretic/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /autoload/plutonia/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /autoload/rekkr/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /autoload/tnt/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /branding.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/branding.cfg -------------------------------------------------------------------------------- /cmake/EDGEClassic.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/cmake/EDGEClassic.cmake -------------------------------------------------------------------------------- /cmake/Emscripten.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/cmake/Emscripten.cmake -------------------------------------------------------------------------------- /cmake/Toolchain-mingw32.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/cmake/Toolchain-mingw32.cmake -------------------------------------------------------------------------------- /cmake/Toolchain-mingw64.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/cmake/Toolchain-mingw64.cmake -------------------------------------------------------------------------------- /crosshairs/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crosshairs/Angle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/crosshairs/Angle.png -------------------------------------------------------------------------------- /crosshairs/Carat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/crosshairs/Carat.png -------------------------------------------------------------------------------- /crosshairs/Circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/crosshairs/Circle.png -------------------------------------------------------------------------------- /crosshairs/Cross.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/crosshairs/Cross.png -------------------------------------------------------------------------------- /crosshairs/Dot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/crosshairs/Dot.png -------------------------------------------------------------------------------- /crosshairs/Double.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/crosshairs/Double.png -------------------------------------------------------------------------------- /crosshairs/Plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/crosshairs/Plus.png -------------------------------------------------------------------------------- /crosshairs/Spiked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/crosshairs/Spiked.png -------------------------------------------------------------------------------- /crosshairs/Thin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/crosshairs/Thin.png -------------------------------------------------------------------------------- /docs/changelogs/090.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/docs/changelogs/090.txt -------------------------------------------------------------------------------- /docs/changelogs/100.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/docs/changelogs/100.txt -------------------------------------------------------------------------------- /docs/changelogs/110.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/docs/changelogs/110.txt -------------------------------------------------------------------------------- /docs/changelogs/120.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/docs/changelogs/120.txt -------------------------------------------------------------------------------- /docs/changelogs/121.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/docs/changelogs/121.txt -------------------------------------------------------------------------------- /docs/changelogs/130.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/docs/changelogs/130.txt -------------------------------------------------------------------------------- /docs/changelogs/131.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/docs/changelogs/131.txt -------------------------------------------------------------------------------- /docs/changelogs/132.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/docs/changelogs/132.txt -------------------------------------------------------------------------------- /docs/changelogs/133.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/docs/changelogs/133.txt -------------------------------------------------------------------------------- /docs/changelogs/134.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/docs/changelogs/134.1.txt -------------------------------------------------------------------------------- /docs/changelogs/134.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/docs/changelogs/134.txt -------------------------------------------------------------------------------- /docs/changelogs/135.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/docs/changelogs/135.txt -------------------------------------------------------------------------------- /docs/changelogs/136.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/docs/changelogs/136.txt -------------------------------------------------------------------------------- /docs/changelogs/137.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/docs/changelogs/137.txt -------------------------------------------------------------------------------- /docs/changelogs/138.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/docs/changelogs/138.txt -------------------------------------------------------------------------------- /docs/changelogs/150.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/docs/changelogs/150.md -------------------------------------------------------------------------------- /docs/changelogs/151.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/docs/changelogs/151.md -------------------------------------------------------------------------------- /docs/licenses/Apache 2_0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/docs/licenses/Apache 2_0.txt -------------------------------------------------------------------------------- /docs/licenses/BSD 0-Clause.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/docs/licenses/BSD 0-Clause.txt -------------------------------------------------------------------------------- /docs/licenses/BSD 3-Clause.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/docs/licenses/BSD 3-Clause.txt -------------------------------------------------------------------------------- /docs/licenses/GPL3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/docs/licenses/GPL3.txt -------------------------------------------------------------------------------- /docs/licenses/HacX.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/docs/licenses/HacX.txt -------------------------------------------------------------------------------- /docs/licenses/MIT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/docs/licenses/MIT.txt -------------------------------------------------------------------------------- /docs/licenses/OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/docs/licenses/OFL.txt -------------------------------------------------------------------------------- /docs/licenses/Public Domain.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/docs/licenses/Public Domain.txt -------------------------------------------------------------------------------- /docs/licenses/WidePix.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/docs/licenses/WidePix.txt -------------------------------------------------------------------------------- /docs/licenses/zlib.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/docs/licenses/zlib.txt -------------------------------------------------------------------------------- /edge_base/chex1/scripts/fonts.ddf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_base/chex1/scripts/fonts.ddf -------------------------------------------------------------------------------- /edge_base/chex1/scripts/games.ddf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_base/chex1/scripts/games.ddf -------------------------------------------------------------------------------- /edge_base/doom/doom_wadfix.wad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_base/doom/doom_wadfix.wad -------------------------------------------------------------------------------- /edge_base/doom/graphics/HELP1.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_base/doom/graphics/HELP1.lmp -------------------------------------------------------------------------------- /edge_base/doom/graphics/PFUB1.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_base/doom/graphics/PFUB1.lmp -------------------------------------------------------------------------------- /edge_base/doom/graphics/PFUB2.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_base/doom/graphics/PFUB2.lmp -------------------------------------------------------------------------------- /edge_base/doom/scripts/games.ddf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_base/doom/scripts/games.ddf -------------------------------------------------------------------------------- /edge_base/doom/scripts/images.ddf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_base/doom/scripts/images.ddf -------------------------------------------------------------------------------- /edge_base/doom1/doom1_wadfix.wad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_base/doom1/doom1_wadfix.wad -------------------------------------------------------------------------------- /edge_base/doom2/graphics/HELP.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_base/doom2/graphics/HELP.lmp -------------------------------------------------------------------------------- /edge_base/doom2/scripts/games.ddf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_base/doom2/scripts/games.ddf -------------------------------------------------------------------------------- /edge_base/hacx/graphics/HELP.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_base/hacx/graphics/HELP.lmp -------------------------------------------------------------------------------- /edge_base/hacx/scripts/anims.ddf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_base/hacx/scripts/anims.ddf -------------------------------------------------------------------------------- /edge_base/hacx/scripts/colmap.ddf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_base/hacx/scripts/colmap.ddf -------------------------------------------------------------------------------- /edge_base/hacx/scripts/flats.ddf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_base/hacx/scripts/flats.ddf -------------------------------------------------------------------------------- /edge_base/hacx/scripts/fonts.ddf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_base/hacx/scripts/fonts.ddf -------------------------------------------------------------------------------- /edge_base/hacx/scripts/games.ddf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_base/hacx/scripts/games.ddf -------------------------------------------------------------------------------- /edge_base/hacx/scripts/levels.ddf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_base/hacx/scripts/levels.ddf -------------------------------------------------------------------------------- /edge_base/hacx/scripts/lines.ddf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_base/hacx/scripts/lines.ddf -------------------------------------------------------------------------------- /edge_base/hacx/scripts/styles.ddf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_base/hacx/scripts/styles.ddf -------------------------------------------------------------------------------- /edge_base/hacx/scripts/switch.ddf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_base/hacx/scripts/switch.ddf -------------------------------------------------------------------------------- /edge_base/hacx/scripts/things.ddf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_base/hacx/scripts/things.ddf -------------------------------------------------------------------------------- /edge_base/hacx/sprites/CHGFA0.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_base/hacx/sprites/CHGFA0.lmp -------------------------------------------------------------------------------- /edge_base/hacx/sprites/CHGFB0.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_base/hacx/sprites/CHGFB0.lmp -------------------------------------------------------------------------------- /edge_base/hacx/sprites/CHGGA0.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_base/hacx/sprites/CHGGA0.lmp -------------------------------------------------------------------------------- /edge_base/hacx/sprites/CHGGB0.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_base/hacx/sprites/CHGGB0.lmp -------------------------------------------------------------------------------- /edge_base/hacx/sprites/MISFA0.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_base/hacx/sprites/MISFA0.lmp -------------------------------------------------------------------------------- /edge_base/hacx/sprites/MISFB0.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_base/hacx/sprites/MISFB0.lmp -------------------------------------------------------------------------------- /edge_base/hacx/sprites/MISFC0.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_base/hacx/sprites/MISFC0.lmp -------------------------------------------------------------------------------- /edge_base/hacx/sprites/MISFD0.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_base/hacx/sprites/MISFD0.lmp -------------------------------------------------------------------------------- /edge_base/hacx/sprites/MISGA0.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_base/hacx/sprites/MISGA0.lmp -------------------------------------------------------------------------------- /edge_base/hacx/sprites/MISGB0.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_base/hacx/sprites/MISGB0.lmp -------------------------------------------------------------------------------- /edge_base/hacx/sprites/PISGD0.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_base/hacx/sprites/PISGD0.lmp -------------------------------------------------------------------------------- /edge_base/hacx/sprites/PISGE0.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_base/hacx/sprites/PISGE0.lmp -------------------------------------------------------------------------------- /edge_base/hacx/sprites/PLSGA0.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_base/hacx/sprites/PLSGA0.lmp -------------------------------------------------------------------------------- /edge_base/hacx/sprites/PLSGB0.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_base/hacx/sprites/PLSGB0.lmp -------------------------------------------------------------------------------- /edge_base/hacx/sprites/SAWGA0.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_base/hacx/sprites/SAWGA0.lmp -------------------------------------------------------------------------------- /edge_base/hacx/sprites/SAWGB0.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_base/hacx/sprites/SAWGB0.lmp -------------------------------------------------------------------------------- /edge_base/hacx/sprites/SAWGC0.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_base/hacx/sprites/SAWGC0.lmp -------------------------------------------------------------------------------- /edge_base/hacx/sprites/SAWGD0.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_base/hacx/sprites/SAWGD0.lmp -------------------------------------------------------------------------------- /edge_base/hacx/sprites/SHT2A0.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_base/hacx/sprites/SHT2A0.lmp -------------------------------------------------------------------------------- /edge_base/hacx/sprites/SHT2B0.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_base/hacx/sprites/SHT2B0.lmp -------------------------------------------------------------------------------- /edge_base/hacx/sprites/SHT2C0.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_base/hacx/sprites/SHT2C0.lmp -------------------------------------------------------------------------------- /edge_base/hacx/sprites/SHT2D0.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_base/hacx/sprites/SHT2D0.lmp -------------------------------------------------------------------------------- /edge_base/hacx/sprites/SHT2E0.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_base/hacx/sprites/SHT2E0.lmp -------------------------------------------------------------------------------- /edge_base/hacx/sprites/SHT2F0.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_base/hacx/sprites/SHT2F0.lmp -------------------------------------------------------------------------------- /edge_base/hacx/sprites/SHT2G0.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_base/hacx/sprites/SHT2G0.lmp -------------------------------------------------------------------------------- /edge_base/hacx/sprites/SHT2H0.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_base/hacx/sprites/SHT2H0.lmp -------------------------------------------------------------------------------- /edge_base/hacx/sprites/SHT2I0.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_base/hacx/sprites/SHT2I0.lmp -------------------------------------------------------------------------------- /edge_base/hacx/sprites/SHT2J0.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_base/hacx/sprites/SHT2J0.lmp -------------------------------------------------------------------------------- /edge_base/hacx/sprites/SHTFA0.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_base/hacx/sprites/SHTFA0.lmp -------------------------------------------------------------------------------- /edge_base/hacx/sprites/SHTFB0.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_base/hacx/sprites/SHTFB0.lmp -------------------------------------------------------------------------------- /edge_base/hacx/sprites/SHTGA0.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_base/hacx/sprites/SHTGA0.lmp -------------------------------------------------------------------------------- /edge_base/hacx/sprites/SHTGB0.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_base/hacx/sprites/SHTGB0.lmp -------------------------------------------------------------------------------- /edge_base/hacx/sprites/SHTGC0.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_base/hacx/sprites/SHTGC0.lmp -------------------------------------------------------------------------------- /edge_base/hacx/sprites/SHTGD0.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_base/hacx/sprites/SHTGD0.lmp -------------------------------------------------------------------------------- /edge_base/harmony/ENDOOM.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_base/harmony/ENDOOM.bin -------------------------------------------------------------------------------- /edge_base/rekkr/graphics/WIF.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_base/rekkr/graphics/WIF.lmp -------------------------------------------------------------------------------- /edge_base/rekkr/scripts/anims.ddf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_base/rekkr/scripts/anims.ddf -------------------------------------------------------------------------------- /edge_base/rekkr/scripts/fonts.ddf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_base/rekkr/scripts/fonts.ddf -------------------------------------------------------------------------------- /edge_base/rekkr/scripts/games.ddf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_base/rekkr/scripts/games.ddf -------------------------------------------------------------------------------- /edge_base/strife/games.ddf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_base/strife/games.ddf -------------------------------------------------------------------------------- /edge_base/strife/images.ddf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_base/strife/images.ddf -------------------------------------------------------------------------------- /edge_base/strife/playlist.ddf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_base/strife/playlist.ddf -------------------------------------------------------------------------------- /edge_base/tnt/scripts/games.ddf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_base/tnt/scripts/games.ddf -------------------------------------------------------------------------------- /edge_defs/SNDFONT.sf3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/SNDFONT.sf3 -------------------------------------------------------------------------------- /edge_defs/colormaps/LAVAMAP.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/colormaps/LAVAMAP.cmp -------------------------------------------------------------------------------- /edge_defs/colormaps/TXTGRNS.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/colormaps/TXTGRNS.dat -------------------------------------------------------------------------------- /edge_defs/colormaps/TXTREDS.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/colormaps/TXTREDS.dat -------------------------------------------------------------------------------- /edge_defs/graphics/CREDIT2.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/graphics/CREDIT2.lmp -------------------------------------------------------------------------------- /edge_defs/graphics/DLITEXPN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/graphics/DLITEXPN.png -------------------------------------------------------------------------------- /edge_defs/graphics/EDGECRED.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/graphics/EDGECRED.png -------------------------------------------------------------------------------- /edge_defs/graphics/EDGETTL.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/graphics/EDGETTL.lmp -------------------------------------------------------------------------------- /edge_defs/graphics/ENDFONT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/graphics/ENDFONT.png -------------------------------------------------------------------------------- /edge_defs/graphics/FONTVERD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/graphics/FONTVERD.png -------------------------------------------------------------------------------- /edge_defs/graphics/MOUSE.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/graphics/MOUSE.lmp -------------------------------------------------------------------------------- /edge_defs/graphics/M_EPI5.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/graphics/M_EPI5.lmp -------------------------------------------------------------------------------- /edge_defs/graphics/M_EPI6.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/graphics/M_EPI6.lmp -------------------------------------------------------------------------------- /edge_defs/graphics/STBARL.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/graphics/STBARL.lmp -------------------------------------------------------------------------------- /edge_defs/graphics/STBARR.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/graphics/STBARR.lmp -------------------------------------------------------------------------------- /edge_defs/graphics/STCFN000.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/graphics/STCFN000.lmp -------------------------------------------------------------------------------- /edge_defs/graphics/STCFN132.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/graphics/STCFN132.lmp -------------------------------------------------------------------------------- /edge_defs/graphics/STCFN134.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/graphics/STCFN134.lmp -------------------------------------------------------------------------------- /edge_defs/graphics/STCFN148.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/graphics/STCFN148.lmp -------------------------------------------------------------------------------- /edge_defs/graphics/STDESYNC.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/graphics/STDESYNC.lmp -------------------------------------------------------------------------------- /edge_defs/graphics/STFB0.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/graphics/STFB0.lmp -------------------------------------------------------------------------------- /edge_defs/graphics/STFB1.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/graphics/STFB1.lmp -------------------------------------------------------------------------------- /edge_defs/graphics/STFB2.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/graphics/STFB2.lmp -------------------------------------------------------------------------------- /edge_defs/graphics/STFB3.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/graphics/STFB3.lmp -------------------------------------------------------------------------------- /edge_defs/graphics/STFB4.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/graphics/STFB4.lmp -------------------------------------------------------------------------------- /edge_defs/graphics/STFB5.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/graphics/STFB5.lmp -------------------------------------------------------------------------------- /edge_defs/graphics/STFB6.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/graphics/STFB6.lmp -------------------------------------------------------------------------------- /edge_defs/graphics/STFB7.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/graphics/STFB7.lmp -------------------------------------------------------------------------------- /edge_defs/graphics/STKEYS6.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/graphics/STKEYS6.lmp -------------------------------------------------------------------------------- /edge_defs/graphics/STKEYS7.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/graphics/STKEYS7.lmp -------------------------------------------------------------------------------- /edge_defs/graphics/STKEYS8.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/graphics/STKEYS8.lmp -------------------------------------------------------------------------------- /edge_defs/graphics/STKEYS9.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/graphics/STKEYS9.PNG -------------------------------------------------------------------------------- /edge_defs/graphics/STKEYSA.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/graphics/STKEYSA.PNG -------------------------------------------------------------------------------- /edge_defs/graphics/STPB0.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/graphics/STPB0.lmp -------------------------------------------------------------------------------- /edge_defs/graphics/STPB1.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/graphics/STPB1.lmp -------------------------------------------------------------------------------- /edge_defs/graphics/STPB2.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/graphics/STPB2.lmp -------------------------------------------------------------------------------- /edge_defs/graphics/STPB3.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/graphics/STPB3.lmp -------------------------------------------------------------------------------- /edge_defs/graphics/STPB4.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/graphics/STPB4.lmp -------------------------------------------------------------------------------- /edge_defs/graphics/STPB5.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/graphics/STPB5.lmp -------------------------------------------------------------------------------- /edge_defs/graphics/STPB6.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/graphics/STPB6.lmp -------------------------------------------------------------------------------- /edge_defs/graphics/STPB7.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/graphics/STPB7.lmp -------------------------------------------------------------------------------- /edge_defs/movies/ECINTRO.mpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/movies/ECINTRO.mpg -------------------------------------------------------------------------------- /edge_defs/scripts/anims.ddf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/scripts/anims.ddf -------------------------------------------------------------------------------- /edge_defs/scripts/attacks.ddf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/scripts/attacks.ddf -------------------------------------------------------------------------------- /edge_defs/scripts/coal_api.ec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/scripts/coal_api.ec -------------------------------------------------------------------------------- /edge_defs/scripts/coal_hud.ec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/scripts/coal_hud.ec -------------------------------------------------------------------------------- /edge_defs/scripts/colmap.ddf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/scripts/colmap.ddf -------------------------------------------------------------------------------- /edge_defs/scripts/flats.ddf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/scripts/flats.ddf -------------------------------------------------------------------------------- /edge_defs/scripts/fonts.ddf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/scripts/fonts.ddf -------------------------------------------------------------------------------- /edge_defs/scripts/games.ddf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/scripts/games.ddf -------------------------------------------------------------------------------- /edge_defs/scripts/images.ddf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/scripts/images.ddf -------------------------------------------------------------------------------- /edge_defs/scripts/language.ldf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/scripts/language.ldf -------------------------------------------------------------------------------- /edge_defs/scripts/levels.ddf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/scripts/levels.ddf -------------------------------------------------------------------------------- /edge_defs/scripts/lines.ddf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/scripts/lines.ddf -------------------------------------------------------------------------------- /edge_defs/scripts/movies.ddf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/scripts/movies.ddf -------------------------------------------------------------------------------- /edge_defs/scripts/playlist.ddf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/scripts/playlist.ddf -------------------------------------------------------------------------------- /edge_defs/scripts/reverbs.ddf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/scripts/reverbs.ddf -------------------------------------------------------------------------------- /edge_defs/scripts/rscript.rts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/scripts/rscript.rts -------------------------------------------------------------------------------- /edge_defs/scripts/sectors.ddf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/scripts/sectors.ddf -------------------------------------------------------------------------------- /edge_defs/scripts/sounds.ddf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/scripts/sounds.ddf -------------------------------------------------------------------------------- /edge_defs/scripts/styles.ddf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/scripts/styles.ddf -------------------------------------------------------------------------------- /edge_defs/scripts/switch.ddf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/scripts/switch.ddf -------------------------------------------------------------------------------- /edge_defs/scripts/things.ddf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/scripts/things.ddf -------------------------------------------------------------------------------- /edge_defs/scripts/wadfixes.ddf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/scripts/wadfixes.ddf -------------------------------------------------------------------------------- /edge_defs/scripts/weapons.ddf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/scripts/weapons.ddf -------------------------------------------------------------------------------- /edge_defs/sounds/DPBAREXP.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sounds/DPBAREXP.lmp -------------------------------------------------------------------------------- /edge_defs/sounds/DPBDCLS.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sounds/DPBDCLS.lmp -------------------------------------------------------------------------------- /edge_defs/sounds/DPBDOPN.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sounds/DPBDOPN.lmp -------------------------------------------------------------------------------- /edge_defs/sounds/DPBFG.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sounds/DPBFG.lmp -------------------------------------------------------------------------------- /edge_defs/sounds/DPBGACT.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sounds/DPBGACT.lmp -------------------------------------------------------------------------------- /edge_defs/sounds/DPBGDTH1.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sounds/DPBGDTH1.lmp -------------------------------------------------------------------------------- /edge_defs/sounds/DPBGDTH2.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sounds/DPBGDTH2.lmp -------------------------------------------------------------------------------- /edge_defs/sounds/DPBGSIT1.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sounds/DPBGSIT1.lmp -------------------------------------------------------------------------------- /edge_defs/sounds/DPBGSIT2.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sounds/DPBGSIT2.lmp -------------------------------------------------------------------------------- /edge_defs/sounds/DPBOSCUB.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sounds/DPBOSCUB.lmp -------------------------------------------------------------------------------- /edge_defs/sounds/DPBOSDTH.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sounds/DPBOSDTH.lmp -------------------------------------------------------------------------------- /edge_defs/sounds/DPBOSPIT.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sounds/DPBOSPIT.lmp -------------------------------------------------------------------------------- /edge_defs/sounds/DPBOSPN.lmp: -------------------------------------------------------------------------------- 1 | "-&#" '.!8F?EGPOQRMWW\\\Y[]]_ -------------------------------------------------------------------------------- /edge_defs/sounds/DPBOSSIT.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sounds/DPBOSSIT.lmp -------------------------------------------------------------------------------- /edge_defs/sounds/DPBRSDTH.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sounds/DPBRSDTH.lmp -------------------------------------------------------------------------------- /edge_defs/sounds/DPBRSSIT.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sounds/DPBRSSIT.lmp -------------------------------------------------------------------------------- /edge_defs/sounds/DPBSPACT.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sounds/DPBSPACT.lmp -------------------------------------------------------------------------------- /edge_defs/sounds/DPBSPDTH.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sounds/DPBSPDTH.lmp -------------------------------------------------------------------------------- /edge_defs/sounds/DPBSPSIT.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sounds/DPBSPSIT.lmp -------------------------------------------------------------------------------- /edge_defs/sounds/DPBSPWLK.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sounds/DPBSPWLK.lmp -------------------------------------------------------------------------------- /edge_defs/sounds/DPCACDTH.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sounds/DPCACDTH.lmp -------------------------------------------------------------------------------- /edge_defs/sounds/DPCACSIT.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sounds/DPCACSIT.lmp -------------------------------------------------------------------------------- /edge_defs/sounds/DPCLAW.lmp: -------------------------------------------------------------------------------- 1 | *1;<<8$;84$/4%*6/%5@ 2 | ;,%0320-.*2/. -------------------------------------------------------------------------------- /edge_defs/sounds/DPCYBDTH.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sounds/DPCYBDTH.lmp -------------------------------------------------------------------------------- /edge_defs/sounds/DPCYBSIT.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sounds/DPCYBSIT.lmp -------------------------------------------------------------------------------- /edge_defs/sounds/DPDBCLS.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sounds/DPDBCLS.lmp -------------------------------------------------------------------------------- /edge_defs/sounds/DPDBLOAD.lmp: -------------------------------------------------------------------------------- 1 | c``g`ec -------------------------------------------------------------------------------- /edge_defs/sounds/DPDBOPN.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sounds/DPDBOPN.lmp -------------------------------------------------------------------------------- /edge_defs/sounds/DPDMACT.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sounds/DPDMACT.lmp -------------------------------------------------------------------------------- /edge_defs/sounds/DPDMPAIN.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sounds/DPDMPAIN.lmp -------------------------------------------------------------------------------- /edge_defs/sounds/DPDORCLS.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sounds/DPDORCLS.lmp -------------------------------------------------------------------------------- /edge_defs/sounds/DPDOROPN.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sounds/DPDOROPN.lmp -------------------------------------------------------------------------------- /edge_defs/sounds/DPDSHTGN.lmp: -------------------------------------------------------------------------------- 1 | '! #'&$*'#  2 |  -------------------------------------------------------------------------------- /edge_defs/sounds/DPFIRSHT.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sounds/DPFIRSHT.lmp -------------------------------------------------------------------------------- /edge_defs/sounds/DPFIRXPL.lmp: -------------------------------------------------------------------------------- 1 |  2 |  -------------------------------------------------------------------------------- /edge_defs/sounds/DPFLAME.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sounds/DPFLAME.lmp -------------------------------------------------------------------------------- /edge_defs/sounds/DPFLAMST.lmp: -------------------------------------------------------------------------------- 1 | 2 | 3 |  -------------------------------------------------------------------------------- /edge_defs/sounds/DPGETPOW.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sounds/DPGETPOW.lmp -------------------------------------------------------------------------------- /edge_defs/sounds/DPHOOF.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sounds/DPHOOF.lmp -------------------------------------------------------------------------------- /edge_defs/sounds/DPITEMUP.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sounds/DPITEMUP.lmp -------------------------------------------------------------------------------- /edge_defs/sounds/DPITMBK.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sounds/DPITMBK.lmp -------------------------------------------------------------------------------- /edge_defs/sounds/DPKEENDT.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sounds/DPKEENDT.lmp -------------------------------------------------------------------------------- /edge_defs/sounds/DPKEENPN.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sounds/DPKEENPN.lmp -------------------------------------------------------------------------------- /edge_defs/sounds/DPKNTDTH.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sounds/DPKNTDTH.lmp -------------------------------------------------------------------------------- /edge_defs/sounds/DPKNTSIT.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sounds/DPKNTSIT.lmp -------------------------------------------------------------------------------- /edge_defs/sounds/DPMANATK.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sounds/DPMANATK.lmp -------------------------------------------------------------------------------- /edge_defs/sounds/DPMANDTH.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sounds/DPMANDTH.lmp -------------------------------------------------------------------------------- /edge_defs/sounds/DPMANSIT.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sounds/DPMANSIT.lmp -------------------------------------------------------------------------------- /edge_defs/sounds/DPMETAL.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sounds/DPMETAL.lmp -------------------------------------------------------------------------------- /edge_defs/sounds/DPMNPAIN.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sounds/DPMNPAIN.lmp -------------------------------------------------------------------------------- /edge_defs/sounds/DPNOWAY.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sounds/DPNOWAY.lmp -------------------------------------------------------------------------------- /edge_defs/sounds/DPOOF.lmp: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /edge_defs/sounds/DPPDIEHI.lmp: -------------------------------------------------------------------------------- 1 | JTVVRTUTUTMPOONNPQNRQMNOPMJKKKLOJG>>?=;><=?BD=>48579:84060('   -------------------------------------------------------------------------------- /edge_defs/sounds/DPPEPAIN.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sounds/DPPEPAIN.lmp -------------------------------------------------------------------------------- /edge_defs/sounds/DPPESIT.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sounds/DPPESIT.lmp -------------------------------------------------------------------------------- /edge_defs/sounds/DPPISTOL.lmp: -------------------------------------------------------------------------------- 1 |   -------------------------------------------------------------------------------- /edge_defs/sounds/DPPLASMA.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sounds/DPPLASMA.lmp -------------------------------------------------------------------------------- /edge_defs/sounds/DPPLDETH.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sounds/DPPLDETH.lmp -------------------------------------------------------------------------------- /edge_defs/sounds/DPPLPAIN.lmp: -------------------------------------------------------------------------------- 1 | @AABCEGGGHHIIJJJ976531000 -------------------------------------------------------------------------------- /edge_defs/sounds/DPPODTH1.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sounds/DPPODTH1.lmp -------------------------------------------------------------------------------- /edge_defs/sounds/DPPODTH2.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sounds/DPPODTH2.lmp -------------------------------------------------------------------------------- /edge_defs/sounds/DPPODTH3.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sounds/DPPODTH3.lmp -------------------------------------------------------------------------------- /edge_defs/sounds/DPPOPAIN.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sounds/DPPOPAIN.lmp -------------------------------------------------------------------------------- /edge_defs/sounds/DPPOSACT.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sounds/DPPOSACT.lmp -------------------------------------------------------------------------------- /edge_defs/sounds/DPPOSIT1.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sounds/DPPOSIT1.lmp -------------------------------------------------------------------------------- /edge_defs/sounds/DPPOSIT2.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sounds/DPPOSIT2.lmp -------------------------------------------------------------------------------- /edge_defs/sounds/DPPOSIT3.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sounds/DPPOSIT3.lmp -------------------------------------------------------------------------------- /edge_defs/sounds/DPPSTART.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sounds/DPPSTART.lmp -------------------------------------------------------------------------------- /edge_defs/sounds/DPPSTOP.lmp: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /edge_defs/sounds/DPPUNCH.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sounds/DPPUNCH.lmp -------------------------------------------------------------------------------- /edge_defs/sounds/DPRADIO.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sounds/DPRADIO.lmp -------------------------------------------------------------------------------- /edge_defs/sounds/DPRLAUNC.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sounds/DPRLAUNC.lmp -------------------------------------------------------------------------------- /edge_defs/sounds/DPRXPLOD.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sounds/DPRXPLOD.lmp -------------------------------------------------------------------------------- /edge_defs/sounds/DPSAWFUL.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sounds/DPSAWFUL.lmp -------------------------------------------------------------------------------- /edge_defs/sounds/DPSAWHIT.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sounds/DPSAWHIT.lmp -------------------------------------------------------------------------------- /edge_defs/sounds/DPSAWIDL.lmp: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /edge_defs/sounds/DPSAWUP.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sounds/DPSAWUP.lmp -------------------------------------------------------------------------------- /edge_defs/sounds/DPSGCOCK.lmp: -------------------------------------------------------------------------------- 1 | ;+*(&#173/)%+047:<;7!,==>>A:5,1!(.02357:98754+2/*&! -------------------------------------------------------------------------------- /edge_defs/sounds/DPSGTATK.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sounds/DPSGTATK.lmp -------------------------------------------------------------------------------- /edge_defs/sounds/DPSGTDTH.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sounds/DPSGTDTH.lmp -------------------------------------------------------------------------------- /edge_defs/sounds/DPSGTSIT.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sounds/DPSGTSIT.lmp -------------------------------------------------------------------------------- /edge_defs/sounds/DPSHOTGN.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sounds/DPSHOTGN.lmp -------------------------------------------------------------------------------- /edge_defs/sounds/DPSKEACT.lmp: -------------------------------------------------------------------------------- 1 | $ !"#$%%%%$$$##"!! 2 |  -------------------------------------------------------------------------------- /edge_defs/sounds/DPSKEATK.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sounds/DPSKEATK.lmp -------------------------------------------------------------------------------- /edge_defs/sounds/DPSKEDTH.lmp: -------------------------------------------------------------------------------- 1 | L"+ '3+89;4><06.9'-+-1)1%11"1,2/35/"!/-!#0-234-' &(+ -------------------------------------------------------------------------------- /edge_defs/sounds/DPSKEPCH.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sounds/DPSKEPCH.lmp -------------------------------------------------------------------------------- /edge_defs/sounds/DPSKESIT.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sounds/DPSKESIT.lmp -------------------------------------------------------------------------------- /edge_defs/sounds/DPSKESWG.lmp: -------------------------------------------------------------------------------- 1 | $PPBPOO@OOONN:NM6LLKKJJ2IHH-FEDC'AAA -------------------------------------------------------------------------------- /edge_defs/sounds/DPSKLATK.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sounds/DPSKLATK.lmp -------------------------------------------------------------------------------- /edge_defs/sounds/DPSKLDTH.lmp: -------------------------------------------------------------------------------- 1 |  2 |  -------------------------------------------------------------------------------- /edge_defs/sounds/DPSLOP.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sounds/DPSLOP.lmp -------------------------------------------------------------------------------- /edge_defs/sounds/DPSPIDTH.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sounds/DPSPIDTH.lmp -------------------------------------------------------------------------------- /edge_defs/sounds/DPSPISIT.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sounds/DPSPISIT.lmp -------------------------------------------------------------------------------- /edge_defs/sounds/DPSSDTH.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sounds/DPSSDTH.lmp -------------------------------------------------------------------------------- /edge_defs/sounds/DPSSSIT.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sounds/DPSSSIT.lmp -------------------------------------------------------------------------------- /edge_defs/sounds/DPSTNMOV.lmp: -------------------------------------------------------------------------------- 1 | &&%% -------------------------------------------------------------------------------- /edge_defs/sounds/DPSWTCHN.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sounds/DPSWTCHN.lmp -------------------------------------------------------------------------------- /edge_defs/sounds/DPSWTCHX.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sounds/DPSWTCHX.lmp -------------------------------------------------------------------------------- /edge_defs/sounds/DPTELEPT.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sounds/DPTELEPT.lmp -------------------------------------------------------------------------------- /edge_defs/sounds/DPTINK.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sounds/DPTINK.lmp -------------------------------------------------------------------------------- /edge_defs/sounds/DPVILACT.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sounds/DPVILACT.lmp -------------------------------------------------------------------------------- /edge_defs/sounds/DPVILATK.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sounds/DPVILATK.lmp -------------------------------------------------------------------------------- /edge_defs/sounds/DPVILDTH.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sounds/DPVILDTH.lmp -------------------------------------------------------------------------------- /edge_defs/sounds/DPVILSIT.lmp: -------------------------------------------------------------------------------- 1 | HA>@ABCFGIJIIJKKKKJHGC>96411.79;<=>>??.+&)268983%',/1-  !&(&   -------------------------------------------------------------------------------- /edge_defs/sounds/DPVIPAIN.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sounds/DPVIPAIN.lmp -------------------------------------------------------------------------------- /edge_defs/sounds/DPWPNUP.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sounds/DPWPNUP.lmp -------------------------------------------------------------------------------- /edge_defs/sounds/DSACIDFT.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sounds/DSACIDFT.ogg -------------------------------------------------------------------------------- /edge_defs/sounds/DSCRUSH.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sounds/DSCRUSH.lmp -------------------------------------------------------------------------------- /edge_defs/sounds/DSDGACT.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sounds/DSDGACT.ogg -------------------------------------------------------------------------------- /edge_defs/sounds/DSDGATK.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sounds/DSDGATK.ogg -------------------------------------------------------------------------------- /edge_defs/sounds/DSDGDTH.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sounds/DSDGDTH.ogg -------------------------------------------------------------------------------- /edge_defs/sounds/DSDGPAIN.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sounds/DSDGPAIN.ogg -------------------------------------------------------------------------------- /edge_defs/sounds/DSDGSIT.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sounds/DSDGSIT.ogg -------------------------------------------------------------------------------- /edge_defs/sounds/DSFSWAT1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sounds/DSFSWAT1.wav -------------------------------------------------------------------------------- /edge_defs/sounds/DSFSWAT2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sounds/DSFSWAT2.wav -------------------------------------------------------------------------------- /edge_defs/sounds/DSFSWAT3.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sounds/DSFSWAT3.wav -------------------------------------------------------------------------------- /edge_defs/sounds/DSFSWAT4.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sounds/DSFSWAT4.wav -------------------------------------------------------------------------------- /edge_defs/sounds/DSGLSBRK.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sounds/DSGLSBRK.wav -------------------------------------------------------------------------------- /edge_defs/sounds/DSJPDOWN.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sounds/DSJPDOWN.lmp -------------------------------------------------------------------------------- /edge_defs/sounds/DSJPFLOW.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sounds/DSJPFLOW.lmp -------------------------------------------------------------------------------- /edge_defs/sounds/DSJPIDLE.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sounds/DSJPIDLE.lmp -------------------------------------------------------------------------------- /edge_defs/sounds/DSJPMOVE.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sounds/DSJPMOVE.lmp -------------------------------------------------------------------------------- /edge_defs/sounds/DSJPRISE.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sounds/DSJPRISE.lmp -------------------------------------------------------------------------------- /edge_defs/sounds/DSMUCKFT.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sounds/DSMUCKFT.ogg -------------------------------------------------------------------------------- /edge_defs/sounds/DSSECRET.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sounds/DSSECRET.ogg -------------------------------------------------------------------------------- /edge_defs/sounds/DSWATRFT.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sounds/DSWATRFT.ogg -------------------------------------------------------------------------------- /edge_defs/sounds/DSWTDIVE.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sounds/DSWTDIVE.wav -------------------------------------------------------------------------------- /edge_defs/sounds/HEARTBT1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sounds/HEARTBT1.ogg -------------------------------------------------------------------------------- /edge_defs/sprites/ARM3A0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sprites/ARM3A0.png -------------------------------------------------------------------------------- /edge_defs/sprites/ARM3B0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sprites/ARM3B0.png -------------------------------------------------------------------------------- /edge_defs/sprites/ARM4A0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sprites/ARM4A0.png -------------------------------------------------------------------------------- /edge_defs/sprites/ARM4B0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sprites/ARM4B0.png -------------------------------------------------------------------------------- /edge_defs/sprites/ARM5A0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sprites/ARM5A0.png -------------------------------------------------------------------------------- /edge_defs/sprites/ARM5B0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sprites/ARM5B0.png -------------------------------------------------------------------------------- /edge_defs/sprites/BSPHA0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sprites/BSPHA0.png -------------------------------------------------------------------------------- /edge_defs/sprites/BSPHB0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sprites/BSPHB0.png -------------------------------------------------------------------------------- /edge_defs/sprites/BSPHC0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sprites/BSPHC0.png -------------------------------------------------------------------------------- /edge_defs/sprites/BSPHD0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sprites/BSPHD0.png -------------------------------------------------------------------------------- /edge_defs/sprites/BSPHE0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sprites/BSPHE0.png -------------------------------------------------------------------------------- /edge_defs/sprites/BSPHF0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sprites/BSPHF0.png -------------------------------------------------------------------------------- /edge_defs/sprites/BSPHG0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sprites/BSPHG0.png -------------------------------------------------------------------------------- /edge_defs/sprites/BSPHH0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sprites/BSPHH0.png -------------------------------------------------------------------------------- /edge_defs/sprites/BSPHI0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sprites/BSPHI0.png -------------------------------------------------------------------------------- /edge_defs/sprites/BSPHJ0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sprites/BSPHJ0.png -------------------------------------------------------------------------------- /edge_defs/sprites/BSPHK0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sprites/BSPHK0.png -------------------------------------------------------------------------------- /edge_defs/sprites/GKEYA0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sprites/GKEYA0.png -------------------------------------------------------------------------------- /edge_defs/sprites/GKEYB0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sprites/GKEYB0.png -------------------------------------------------------------------------------- /edge_defs/sprites/GLS1A0.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sprites/GLS1A0.lmp -------------------------------------------------------------------------------- /edge_defs/sprites/GLS2A0.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sprites/GLS2A0.lmp -------------------------------------------------------------------------------- /edge_defs/sprites/GLS3A0.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sprites/GLS3A0.lmp -------------------------------------------------------------------------------- /edge_defs/sprites/GLS4A0.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sprites/GLS4A0.lmp -------------------------------------------------------------------------------- /edge_defs/sprites/GLS5A0.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sprites/GLS5A0.lmp -------------------------------------------------------------------------------- /edge_defs/sprites/GLS6A0.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sprites/GLS6A0.lmp -------------------------------------------------------------------------------- /edge_defs/sprites/GLS7A0.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sprites/GLS7A0.lmp -------------------------------------------------------------------------------- /edge_defs/sprites/GLS8A0.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sprites/GLS8A0.lmp -------------------------------------------------------------------------------- /edge_defs/sprites/GLS9A0.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sprites/GLS9A0.lmp -------------------------------------------------------------------------------- /edge_defs/sprites/GSKUA0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sprites/GSKUA0.png -------------------------------------------------------------------------------- /edge_defs/sprites/GSKUB0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sprites/GSKUB0.png -------------------------------------------------------------------------------- /edge_defs/sprites/JPCKA0.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sprites/JPCKA0.lmp -------------------------------------------------------------------------------- /edge_defs/sprites/JPCKB0.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sprites/JPCKB0.lmp -------------------------------------------------------------------------------- /edge_defs/sprites/JPCKC0.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sprites/JPCKC0.lmp -------------------------------------------------------------------------------- /edge_defs/sprites/LVASA0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sprites/LVASA0.png -------------------------------------------------------------------------------- /edge_defs/sprites/LVASB0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sprites/LVASB0.png -------------------------------------------------------------------------------- /edge_defs/sprites/LVASC0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sprites/LVASC0.png -------------------------------------------------------------------------------- /edge_defs/sprites/LVASD0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sprites/LVASD0.png -------------------------------------------------------------------------------- /edge_defs/sprites/LVASE0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sprites/LVASE0.png -------------------------------------------------------------------------------- /edge_defs/sprites/LVASF0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sprites/LVASF0.png -------------------------------------------------------------------------------- /edge_defs/sprites/MUDSA0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sprites/MUDSA0.png -------------------------------------------------------------------------------- /edge_defs/sprites/MUDSB0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sprites/MUDSB0.png -------------------------------------------------------------------------------- /edge_defs/sprites/MUDSC0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sprites/MUDSC0.png -------------------------------------------------------------------------------- /edge_defs/sprites/MUDSD0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sprites/MUDSD0.png -------------------------------------------------------------------------------- /edge_defs/sprites/MUDSE0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sprites/MUDSE0.png -------------------------------------------------------------------------------- /edge_defs/sprites/MUDSF0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sprites/MUDSF0.png -------------------------------------------------------------------------------- /edge_defs/sprites/MUDSG0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sprites/MUDSG0.png -------------------------------------------------------------------------------- /edge_defs/sprites/MUDSH0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sprites/MUDSH0.png -------------------------------------------------------------------------------- /edge_defs/sprites/NVSCA0.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sprites/NVSCA0.lmp -------------------------------------------------------------------------------- /edge_defs/sprites/NVSCB0.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sprites/NVSCB0.lmp -------------------------------------------------------------------------------- /edge_defs/sprites/PLAYX1.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sprites/PLAYX1.lmp -------------------------------------------------------------------------------- /edge_defs/sprites/PLAYX2X8.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sprites/PLAYX2X8.lmp -------------------------------------------------------------------------------- /edge_defs/sprites/PLAYX3X7.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sprites/PLAYX3X7.lmp -------------------------------------------------------------------------------- /edge_defs/sprites/PLAYX4X6.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sprites/PLAYX4X6.lmp -------------------------------------------------------------------------------- /edge_defs/sprites/PLAYX5.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sprites/PLAYX5.lmp -------------------------------------------------------------------------------- /edge_defs/sprites/PLAYY1.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sprites/PLAYY1.lmp -------------------------------------------------------------------------------- /edge_defs/sprites/PLAYY2Y8.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sprites/PLAYY2Y8.lmp -------------------------------------------------------------------------------- /edge_defs/sprites/PLAYY3Y7.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sprites/PLAYY3Y7.lmp -------------------------------------------------------------------------------- /edge_defs/sprites/PLAYY4Y6.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sprites/PLAYY4Y6.lmp -------------------------------------------------------------------------------- /edge_defs/sprites/PLAYY5.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sprites/PLAYY5.lmp -------------------------------------------------------------------------------- /edge_defs/sprites/PLS1A0.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sprites/PLS1A0.lmp -------------------------------------------------------------------------------- /edge_defs/sprites/PLS1B0.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sprites/PLS1B0.lmp -------------------------------------------------------------------------------- /edge_defs/sprites/PLS1C0.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sprites/PLS1C0.lmp -------------------------------------------------------------------------------- /edge_defs/sprites/PLS1D0.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sprites/PLS1D0.lmp -------------------------------------------------------------------------------- /edge_defs/sprites/PLS1E0.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sprites/PLS1E0.lmp -------------------------------------------------------------------------------- /edge_defs/sprites/PLS1F0.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sprites/PLS1F0.lmp -------------------------------------------------------------------------------- /edge_defs/sprites/PLS1G0.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sprites/PLS1G0.lmp -------------------------------------------------------------------------------- /edge_defs/sprites/PLS2A0.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sprites/PLS2A0.lmp -------------------------------------------------------------------------------- /edge_defs/sprites/PLS2B0.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sprites/PLS2B0.lmp -------------------------------------------------------------------------------- /edge_defs/sprites/PLS2C0.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sprites/PLS2C0.lmp -------------------------------------------------------------------------------- /edge_defs/sprites/PLS2D0.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sprites/PLS2D0.lmp -------------------------------------------------------------------------------- /edge_defs/sprites/PLS2E0.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sprites/PLS2E0.lmp -------------------------------------------------------------------------------- /edge_defs/sprites/PRT1A0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sprites/PRT1A0.png -------------------------------------------------------------------------------- /edge_defs/sprites/PRT2A0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sprites/PRT2A0.png -------------------------------------------------------------------------------- /edge_defs/sprites/PRT3A0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sprites/PRT3A0.png -------------------------------------------------------------------------------- /edge_defs/sprites/SLDGA0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sprites/SLDGA0.png -------------------------------------------------------------------------------- /edge_defs/sprites/SLDGB0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sprites/SLDGB0.png -------------------------------------------------------------------------------- /edge_defs/sprites/SLDGC0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sprites/SLDGC0.png -------------------------------------------------------------------------------- /edge_defs/sprites/SLDGD0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sprites/SLDGD0.png -------------------------------------------------------------------------------- /edge_defs/sprites/SLDGE0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sprites/SLDGE0.png -------------------------------------------------------------------------------- /edge_defs/sprites/SLDGF0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sprites/SLDGF0.png -------------------------------------------------------------------------------- /edge_defs/sprites/SLDGG0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sprites/SLDGG0.png -------------------------------------------------------------------------------- /edge_defs/sprites/SLDGH0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sprites/SLDGH0.png -------------------------------------------------------------------------------- /edge_defs/sprites/SLIMA0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sprites/SLIMA0.png -------------------------------------------------------------------------------- /edge_defs/sprites/SLIMB0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sprites/SLIMB0.png -------------------------------------------------------------------------------- /edge_defs/sprites/SLIMC0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sprites/SLIMC0.png -------------------------------------------------------------------------------- /edge_defs/sprites/SLIMD0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sprites/SLIMD0.png -------------------------------------------------------------------------------- /edge_defs/sprites/SLIME0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sprites/SLIME0.png -------------------------------------------------------------------------------- /edge_defs/sprites/SLIMF0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sprites/SLIMF0.png -------------------------------------------------------------------------------- /edge_defs/sprites/SLIMG0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sprites/SLIMG0.png -------------------------------------------------------------------------------- /edge_defs/sprites/SLIMH0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sprites/SLIMH0.png -------------------------------------------------------------------------------- /edge_defs/sprites/SPSHA0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sprites/SPSHA0.png -------------------------------------------------------------------------------- /edge_defs/sprites/SPSHB0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sprites/SPSHB0.png -------------------------------------------------------------------------------- /edge_defs/sprites/SPSHC0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sprites/SPSHC0.png -------------------------------------------------------------------------------- /edge_defs/sprites/SPSHD0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sprites/SPSHD0.png -------------------------------------------------------------------------------- /edge_defs/sprites/SPSHE0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sprites/SPSHE0.png -------------------------------------------------------------------------------- /edge_defs/sprites/SPSHF0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sprites/SPSHF0.png -------------------------------------------------------------------------------- /edge_defs/sprites/SPSHG0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sprites/SPSHG0.png -------------------------------------------------------------------------------- /edge_defs/sprites/SPSHH0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sprites/SPSHH0.png -------------------------------------------------------------------------------- /edge_defs/sprites/SPSHI0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sprites/SPSHI0.png -------------------------------------------------------------------------------- /edge_defs/sprites/SPSHJ0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sprites/SPSHJ0.png -------------------------------------------------------------------------------- /edge_defs/sprites/SPSHK0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sprites/SPSHK0.png -------------------------------------------------------------------------------- /edge_defs/sprites/TSTPA0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sprites/TSTPA0.png -------------------------------------------------------------------------------- /edge_defs/sprites/TSTPB0.lmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/sprites/TSTPB0.lmp -------------------------------------------------------------------------------- /edge_defs/textures/FUZZMAP8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/textures/FUZZMAP8.png -------------------------------------------------------------------------------- /edge_defs/textures/PORTAL7A.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/textures/PORTAL7A.jpg -------------------------------------------------------------------------------- /edge_defs/textures/PORTAL7B.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/textures/PORTAL7B.jpg -------------------------------------------------------------------------------- /edge_defs/textures/PORTAL7C.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/textures/PORTAL7C.jpg -------------------------------------------------------------------------------- /edge_defs/textures/PORTAL7D.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/textures/PORTAL7D.jpg -------------------------------------------------------------------------------- /edge_defs/textures/PORTAL7E.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/textures/PORTAL7E.jpg -------------------------------------------------------------------------------- /edge_defs/textures/PORTAL7F.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/textures/PORTAL7F.jpg -------------------------------------------------------------------------------- /edge_defs/textures/PORTAL7G.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/textures/PORTAL7G.jpg -------------------------------------------------------------------------------- /edge_defs/ttf/ECFONT01.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/ttf/ECFONT01.ttf -------------------------------------------------------------------------------- /edge_defs/ttf/ECFONT02.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/ttf/ECFONT02.ttf -------------------------------------------------------------------------------- /edge_defs/ttf/ECFONT03.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_defs/ttf/ECFONT03.ttf -------------------------------------------------------------------------------- /edge_defs/version.txt: -------------------------------------------------------------------------------- 1 | 1.51 -------------------------------------------------------------------------------- /edge_fixes/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /edge_fixes/doom2_bfg.epk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/edge_fixes/doom2_bfg.epk -------------------------------------------------------------------------------- /libraries/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/libraries/CMakeLists.txt -------------------------------------------------------------------------------- /libraries/almostequals/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/libraries/almostequals/LICENSE -------------------------------------------------------------------------------- /libraries/fluidlite/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/libraries/fluidlite/LICENSE -------------------------------------------------------------------------------- /libraries/glad/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/libraries/glad/CMakeLists.txt -------------------------------------------------------------------------------- /libraries/glad/src/gl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/libraries/glad/src/gl.c -------------------------------------------------------------------------------- /libraries/hmm/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/libraries/hmm/CMakeLists.txt -------------------------------------------------------------------------------- /libraries/hmm/HandmadeMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/libraries/hmm/HandmadeMath.h -------------------------------------------------------------------------------- /libraries/hmm/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/libraries/hmm/LICENSE -------------------------------------------------------------------------------- /libraries/libcRSID/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/libraries/libcRSID/LICENSE -------------------------------------------------------------------------------- /libraries/libcRSID/libcRSID.c: -------------------------------------------------------------------------------- 1 | #define CRSID_IMPLEMENTATION 2 | #include "libcRSID.h" -------------------------------------------------------------------------------- /libraries/libcRSID/libcRSID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/libraries/libcRSID/libcRSID.h -------------------------------------------------------------------------------- /libraries/lua/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/libraries/lua/CMakeLists.txt -------------------------------------------------------------------------------- /libraries/lua/lapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/libraries/lua/lapi.c -------------------------------------------------------------------------------- /libraries/lua/lapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/libraries/lua/lapi.h -------------------------------------------------------------------------------- /libraries/lua/lauxlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/libraries/lua/lauxlib.c -------------------------------------------------------------------------------- /libraries/lua/lauxlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/libraries/lua/lauxlib.h -------------------------------------------------------------------------------- /libraries/lua/lbaselib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/libraries/lua/lbaselib.c -------------------------------------------------------------------------------- /libraries/lua/lcode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/libraries/lua/lcode.c -------------------------------------------------------------------------------- /libraries/lua/lcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/libraries/lua/lcode.h -------------------------------------------------------------------------------- /libraries/lua/lcorolib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/libraries/lua/lcorolib.c -------------------------------------------------------------------------------- /libraries/lua/lctype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/libraries/lua/lctype.c -------------------------------------------------------------------------------- /libraries/lua/lctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/libraries/lua/lctype.h -------------------------------------------------------------------------------- /libraries/lua/ldblib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/libraries/lua/ldblib.c -------------------------------------------------------------------------------- /libraries/lua/ldebug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/libraries/lua/ldebug.c -------------------------------------------------------------------------------- /libraries/lua/ldebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/libraries/lua/ldebug.h -------------------------------------------------------------------------------- /libraries/lua/ldo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/libraries/lua/ldo.c -------------------------------------------------------------------------------- /libraries/lua/ldo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/libraries/lua/ldo.h -------------------------------------------------------------------------------- /libraries/lua/ldump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/libraries/lua/ldump.c -------------------------------------------------------------------------------- /libraries/lua/lfunc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/libraries/lua/lfunc.c -------------------------------------------------------------------------------- /libraries/lua/lfunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/libraries/lua/lfunc.h -------------------------------------------------------------------------------- /libraries/lua/lgc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/libraries/lua/lgc.c -------------------------------------------------------------------------------- /libraries/lua/lgc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/libraries/lua/lgc.h -------------------------------------------------------------------------------- /libraries/lua/linit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/libraries/lua/linit.c -------------------------------------------------------------------------------- /libraries/lua/liolib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/libraries/lua/liolib.c -------------------------------------------------------------------------------- /libraries/lua/ljumptab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/libraries/lua/ljumptab.h -------------------------------------------------------------------------------- /libraries/lua/llex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/libraries/lua/llex.c -------------------------------------------------------------------------------- /libraries/lua/llex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/libraries/lua/llex.h -------------------------------------------------------------------------------- /libraries/lua/llimits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/libraries/lua/llimits.h -------------------------------------------------------------------------------- /libraries/lua/lmathlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/libraries/lua/lmathlib.c -------------------------------------------------------------------------------- /libraries/lua/lmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/libraries/lua/lmem.c -------------------------------------------------------------------------------- /libraries/lua/lmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/libraries/lua/lmem.h -------------------------------------------------------------------------------- /libraries/lua/loadlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/libraries/lua/loadlib.c -------------------------------------------------------------------------------- /libraries/lua/lobject.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/libraries/lua/lobject.c -------------------------------------------------------------------------------- /libraries/lua/lobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/libraries/lua/lobject.h -------------------------------------------------------------------------------- /libraries/lua/lopcodes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/libraries/lua/lopcodes.c -------------------------------------------------------------------------------- /libraries/lua/lopcodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/libraries/lua/lopcodes.h -------------------------------------------------------------------------------- /libraries/lua/lopnames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/libraries/lua/lopnames.h -------------------------------------------------------------------------------- /libraries/lua/loslib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/libraries/lua/loslib.c -------------------------------------------------------------------------------- /libraries/lua/lparser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/libraries/lua/lparser.c -------------------------------------------------------------------------------- /libraries/lua/lparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/libraries/lua/lparser.h -------------------------------------------------------------------------------- /libraries/lua/lprefix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/libraries/lua/lprefix.h -------------------------------------------------------------------------------- /libraries/lua/lstate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/libraries/lua/lstate.c -------------------------------------------------------------------------------- /libraries/lua/lstate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/libraries/lua/lstate.h -------------------------------------------------------------------------------- /libraries/lua/lstring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/libraries/lua/lstring.c -------------------------------------------------------------------------------- /libraries/lua/lstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/libraries/lua/lstring.h -------------------------------------------------------------------------------- /libraries/lua/lstrlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/libraries/lua/lstrlib.c -------------------------------------------------------------------------------- /libraries/lua/ltable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/libraries/lua/ltable.c -------------------------------------------------------------------------------- /libraries/lua/ltable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/libraries/lua/ltable.h -------------------------------------------------------------------------------- /libraries/lua/ltablib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/libraries/lua/ltablib.c -------------------------------------------------------------------------------- /libraries/lua/ltm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/libraries/lua/ltm.c -------------------------------------------------------------------------------- /libraries/lua/ltm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/libraries/lua/ltm.h -------------------------------------------------------------------------------- /libraries/lua/lua.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/libraries/lua/lua.c -------------------------------------------------------------------------------- /libraries/lua/lua.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/libraries/lua/lua.h -------------------------------------------------------------------------------- /libraries/lua/lua.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/libraries/lua/lua.hpp -------------------------------------------------------------------------------- /libraries/lua/luaconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/libraries/lua/luaconf.h -------------------------------------------------------------------------------- /libraries/lua/lualib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/libraries/lua/lualib.h -------------------------------------------------------------------------------- /libraries/lua/lundump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/libraries/lua/lundump.c -------------------------------------------------------------------------------- /libraries/lua/lundump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/libraries/lua/lundump.h -------------------------------------------------------------------------------- /libraries/lua/lutf8lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/libraries/lua/lutf8lib.c -------------------------------------------------------------------------------- /libraries/lua/lvm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/libraries/lua/lvm.c -------------------------------------------------------------------------------- /libraries/lua/lvm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/libraries/lua/lvm.h -------------------------------------------------------------------------------- /libraries/lua/lzio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/libraries/lua/lzio.c -------------------------------------------------------------------------------- /libraries/lua/lzio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/libraries/lua/lzio.h -------------------------------------------------------------------------------- /libraries/m4p/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/libraries/m4p/CMakeLists.txt -------------------------------------------------------------------------------- /libraries/m4p/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/libraries/m4p/LICENSE -------------------------------------------------------------------------------- /libraries/m4p/m4p.c: -------------------------------------------------------------------------------- 1 | #define M4P_IMPLEMENTATION 2 | #include "m4p.h" -------------------------------------------------------------------------------- /libraries/m4p/m4p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/libraries/m4p/m4p.h -------------------------------------------------------------------------------- /libraries/miniaudio/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/libraries/miniaudio/LICENSE -------------------------------------------------------------------------------- /libraries/miniaudio/miniaudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/libraries/miniaudio/miniaudio.h -------------------------------------------------------------------------------- /libraries/miniaudio/verblib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/libraries/miniaudio/verblib.h -------------------------------------------------------------------------------- /libraries/miniz/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/libraries/miniz/CMakeLists.txt -------------------------------------------------------------------------------- /libraries/miniz/ChangeLog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/libraries/miniz/ChangeLog.md -------------------------------------------------------------------------------- /libraries/miniz/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/libraries/miniz/LICENSE -------------------------------------------------------------------------------- /libraries/miniz/miniz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/libraries/miniz/miniz.c -------------------------------------------------------------------------------- /libraries/miniz/miniz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/libraries/miniz/miniz.h -------------------------------------------------------------------------------- /libraries/miniz/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/libraries/miniz/readme.md -------------------------------------------------------------------------------- /libraries/opalmidi/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/libraries/opalmidi/LICENSE.txt -------------------------------------------------------------------------------- /libraries/opalmidi/opal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/libraries/opalmidi/opal.cpp -------------------------------------------------------------------------------- /libraries/opalmidi/opal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/libraries/opalmidi/opal.h -------------------------------------------------------------------------------- /libraries/opalmidi/opalmidi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/libraries/opalmidi/opalmidi.cpp -------------------------------------------------------------------------------- /libraries/opalmidi/opalmidi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/libraries/opalmidi/opalmidi.h -------------------------------------------------------------------------------- /libraries/opalmidi/patches.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/libraries/opalmidi/patches.cpp -------------------------------------------------------------------------------- /libraries/opalmidi/patches.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/libraries/opalmidi/patches.h -------------------------------------------------------------------------------- /libraries/pl_mpeg/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/libraries/pl_mpeg/LICENSE -------------------------------------------------------------------------------- /libraries/pl_mpeg/pl_mpeg.cc: -------------------------------------------------------------------------------- 1 | #define PL_MPEG_IMPLEMENTATION 2 | 3 | #include "pl_mpeg.h" -------------------------------------------------------------------------------- /libraries/pl_mpeg/pl_mpeg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/libraries/pl_mpeg/pl_mpeg.h -------------------------------------------------------------------------------- /libraries/prns/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/libraries/prns/CMakeLists.txt -------------------------------------------------------------------------------- /libraries/prns/prns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/libraries/prns/prns.h -------------------------------------------------------------------------------- /libraries/sdl2/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/libraries/sdl2/LICENSE.txt -------------------------------------------------------------------------------- /libraries/sokol/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/libraries/sokol/CMakeLists.txt -------------------------------------------------------------------------------- /libraries/sokol/sokol.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/libraries/sokol/sokol.cc -------------------------------------------------------------------------------- /libraries/sokol/sokol_gfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/libraries/sokol/sokol_gfx.h -------------------------------------------------------------------------------- /libraries/sokol/sokol_gfx_ec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/libraries/sokol/sokol_gfx_ec.h -------------------------------------------------------------------------------- /libraries/sokol/sokol_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/libraries/sokol/sokol_log.h -------------------------------------------------------------------------------- /libraries/stb/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/libraries/stb/CMakeLists.txt -------------------------------------------------------------------------------- /libraries/stb/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/libraries/stb/LICENSE -------------------------------------------------------------------------------- /libraries/stb/stb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/libraries/stb/stb.cc -------------------------------------------------------------------------------- /libraries/stb/stb_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/libraries/stb/stb_image.h -------------------------------------------------------------------------------- /libraries/stb/stb_rect_pack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/libraries/stb/stb_rect_pack.h -------------------------------------------------------------------------------- /libraries/stb/stb_sprintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/libraries/stb/stb_sprintf.h -------------------------------------------------------------------------------- /libraries/stb/stb_truetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/libraries/stb/stb_truetype.h -------------------------------------------------------------------------------- /libraries/thread/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/libraries/thread/CMakeLists.txt -------------------------------------------------------------------------------- /libraries/thread/thread.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/libraries/thread/thread.cc -------------------------------------------------------------------------------- /libraries/thread/thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/libraries/thread/thread.h -------------------------------------------------------------------------------- /libraries/tracy/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/libraries/tracy/CMakeLists.txt -------------------------------------------------------------------------------- /overlays/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /overlays/Grill-1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/overlays/Grill-1x.png -------------------------------------------------------------------------------- /overlays/Grill-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/overlays/Grill-2x.png -------------------------------------------------------------------------------- /overlays/Lines-1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/overlays/Lines-1x.png -------------------------------------------------------------------------------- /overlays/Lines-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/overlays/Lines-2x.png -------------------------------------------------------------------------------- /overlays/Vertical-1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/overlays/Vertical-1x.png -------------------------------------------------------------------------------- /overlays/Vertical-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/overlays/Vertical-2x.png -------------------------------------------------------------------------------- /soundfont/ChipFreak.sf3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/soundfont/ChipFreak.sf3 -------------------------------------------------------------------------------- /soundfont/ProtoSquare!.sf3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/soundfont/ProtoSquare!.sf3 -------------------------------------------------------------------------------- /source_files/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/.clang-format -------------------------------------------------------------------------------- /source_files/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/CMakeLists.txt -------------------------------------------------------------------------------- /source_files/ajbsp/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/ajbsp/LICENSE.txt -------------------------------------------------------------------------------- /source_files/ajbsp/bsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/ajbsp/bsp.h -------------------------------------------------------------------------------- /source_files/ajbsp/bsp_level.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/ajbsp/bsp_level.cc -------------------------------------------------------------------------------- /source_files/ajbsp/bsp_local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/ajbsp/bsp_local.h -------------------------------------------------------------------------------- /source_files/ajbsp/bsp_misc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/ajbsp/bsp_misc.cc -------------------------------------------------------------------------------- /source_files/ajbsp/bsp_node.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/ajbsp/bsp_node.cc -------------------------------------------------------------------------------- /source_files/ajbsp/bsp_wad.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/ajbsp/bsp_wad.cc -------------------------------------------------------------------------------- /source_files/ajbsp/bsp_wad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/ajbsp/bsp_wad.h -------------------------------------------------------------------------------- /source_files/coal/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/coal/LICENSE.txt -------------------------------------------------------------------------------- /source_files/coal/c_compile.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/coal/c_compile.cc -------------------------------------------------------------------------------- /source_files/coal/c_execute.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/coal/c_execute.cc -------------------------------------------------------------------------------- /source_files/coal/c_local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/coal/c_local.h -------------------------------------------------------------------------------- /source_files/coal/c_memory.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/coal/c_memory.cc -------------------------------------------------------------------------------- /source_files/coal/coal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/coal/coal.h -------------------------------------------------------------------------------- /source_files/ddf/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/ddf/CMakeLists.txt -------------------------------------------------------------------------------- /source_files/ddf/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/ddf/LICENSE.txt -------------------------------------------------------------------------------- /source_files/ddf/ddf_anim.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/ddf/ddf_anim.cc -------------------------------------------------------------------------------- /source_files/ddf/ddf_anim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/ddf/ddf_anim.h -------------------------------------------------------------------------------- /source_files/ddf/ddf_attack.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/ddf/ddf_attack.cc -------------------------------------------------------------------------------- /source_files/ddf/ddf_attack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/ddf/ddf_attack.h -------------------------------------------------------------------------------- /source_files/ddf/ddf_boom.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/ddf/ddf_boom.cc -------------------------------------------------------------------------------- /source_files/ddf/ddf_colormap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/ddf/ddf_colormap.h -------------------------------------------------------------------------------- /source_files/ddf/ddf_flat.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/ddf/ddf_flat.cc -------------------------------------------------------------------------------- /source_files/ddf/ddf_flat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/ddf/ddf_flat.h -------------------------------------------------------------------------------- /source_files/ddf/ddf_font.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/ddf/ddf_font.cc -------------------------------------------------------------------------------- /source_files/ddf/ddf_font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/ddf/ddf_font.h -------------------------------------------------------------------------------- /source_files/ddf/ddf_game.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/ddf/ddf_game.cc -------------------------------------------------------------------------------- /source_files/ddf/ddf_game.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/ddf/ddf_game.h -------------------------------------------------------------------------------- /source_files/ddf/ddf_image.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/ddf/ddf_image.cc -------------------------------------------------------------------------------- /source_files/ddf/ddf_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/ddf/ddf_image.h -------------------------------------------------------------------------------- /source_files/ddf/ddf_language.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/ddf/ddf_language.h -------------------------------------------------------------------------------- /source_files/ddf/ddf_level.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/ddf/ddf_level.cc -------------------------------------------------------------------------------- /source_files/ddf/ddf_level.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/ddf/ddf_level.h -------------------------------------------------------------------------------- /source_files/ddf/ddf_line.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/ddf/ddf_line.cc -------------------------------------------------------------------------------- /source_files/ddf/ddf_line.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/ddf/ddf_line.h -------------------------------------------------------------------------------- /source_files/ddf/ddf_local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/ddf/ddf_local.h -------------------------------------------------------------------------------- /source_files/ddf/ddf_main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/ddf/ddf_main.cc -------------------------------------------------------------------------------- /source_files/ddf/ddf_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/ddf/ddf_main.h -------------------------------------------------------------------------------- /source_files/ddf/ddf_movie.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/ddf/ddf_movie.cc -------------------------------------------------------------------------------- /source_files/ddf/ddf_movie.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/ddf/ddf_movie.h -------------------------------------------------------------------------------- /source_files/ddf/ddf_playlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/ddf/ddf_playlist.h -------------------------------------------------------------------------------- /source_files/ddf/ddf_reverb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/ddf/ddf_reverb.cc -------------------------------------------------------------------------------- /source_files/ddf/ddf_reverb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/ddf/ddf_reverb.h -------------------------------------------------------------------------------- /source_files/ddf/ddf_sector.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/ddf/ddf_sector.cc -------------------------------------------------------------------------------- /source_files/ddf/ddf_sfx.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/ddf/ddf_sfx.cc -------------------------------------------------------------------------------- /source_files/ddf/ddf_sfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/ddf/ddf_sfx.h -------------------------------------------------------------------------------- /source_files/ddf/ddf_states.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/ddf/ddf_states.cc -------------------------------------------------------------------------------- /source_files/ddf/ddf_states.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/ddf/ddf_states.h -------------------------------------------------------------------------------- /source_files/ddf/ddf_style.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/ddf/ddf_style.cc -------------------------------------------------------------------------------- /source_files/ddf/ddf_style.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/ddf/ddf_style.h -------------------------------------------------------------------------------- /source_files/ddf/ddf_switch.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/ddf/ddf_switch.cc -------------------------------------------------------------------------------- /source_files/ddf/ddf_switch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/ddf/ddf_switch.h -------------------------------------------------------------------------------- /source_files/ddf/ddf_thing.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/ddf/ddf_thing.cc -------------------------------------------------------------------------------- /source_files/ddf/ddf_thing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/ddf/ddf_thing.h -------------------------------------------------------------------------------- /source_files/ddf/ddf_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/ddf/ddf_types.h -------------------------------------------------------------------------------- /source_files/ddf/ddf_wadfixes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/ddf/ddf_wadfixes.h -------------------------------------------------------------------------------- /source_files/ddf/ddf_weapon.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/ddf/ddf_weapon.cc -------------------------------------------------------------------------------- /source_files/ddf/ddf_weapon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/ddf/ddf_weapon.h -------------------------------------------------------------------------------- /source_files/dehacked/deh_wad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/dehacked/deh_wad.h -------------------------------------------------------------------------------- /source_files/edge/am_map.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/am_map.cc -------------------------------------------------------------------------------- /source_files/edge/am_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/am_map.h -------------------------------------------------------------------------------- /source_files/edge/bot_nav.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/bot_nav.cc -------------------------------------------------------------------------------- /source_files/edge/bot_nav.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/bot_nav.h -------------------------------------------------------------------------------- /source_files/edge/bot_think.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/bot_think.cc -------------------------------------------------------------------------------- /source_files/edge/bot_think.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/bot_think.h -------------------------------------------------------------------------------- /source_files/edge/con_con.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/con_con.cc -------------------------------------------------------------------------------- /source_files/edge/con_gui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/con_gui.h -------------------------------------------------------------------------------- /source_files/edge/con_main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/con_main.cc -------------------------------------------------------------------------------- /source_files/edge/con_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/con_main.h -------------------------------------------------------------------------------- /source_files/edge/con_var.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/con_var.cc -------------------------------------------------------------------------------- /source_files/edge/con_var.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/con_var.h -------------------------------------------------------------------------------- /source_files/edge/defaults.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/defaults.h -------------------------------------------------------------------------------- /source_files/edge/dm_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/dm_defs.h -------------------------------------------------------------------------------- /source_files/edge/dm_state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/dm_state.h -------------------------------------------------------------------------------- /source_files/edge/dstrings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/dstrings.h -------------------------------------------------------------------------------- /source_files/edge/e_event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/e_event.h -------------------------------------------------------------------------------- /source_files/edge/e_input.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/e_input.cc -------------------------------------------------------------------------------- /source_files/edge/e_input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/e_input.h -------------------------------------------------------------------------------- /source_files/edge/e_main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/e_main.cc -------------------------------------------------------------------------------- /source_files/edge/e_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/e_main.h -------------------------------------------------------------------------------- /source_files/edge/e_player.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/e_player.cc -------------------------------------------------------------------------------- /source_files/edge/e_player.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/e_player.h -------------------------------------------------------------------------------- /source_files/edge/e_search.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/e_search.h -------------------------------------------------------------------------------- /source_files/edge/e_ticcmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/e_ticcmd.h -------------------------------------------------------------------------------- /source_files/edge/f_finale.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/f_finale.cc -------------------------------------------------------------------------------- /source_files/edge/f_finale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/f_finale.h -------------------------------------------------------------------------------- /source_files/edge/f_interm.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/f_interm.cc -------------------------------------------------------------------------------- /source_files/edge/f_interm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/f_interm.h -------------------------------------------------------------------------------- /source_files/edge/g_game.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/g_game.cc -------------------------------------------------------------------------------- /source_files/edge/g_game.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/g_game.h -------------------------------------------------------------------------------- /source_files/edge/hu_draw.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/hu_draw.cc -------------------------------------------------------------------------------- /source_files/edge/hu_draw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/hu_draw.h -------------------------------------------------------------------------------- /source_files/edge/hu_font.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/hu_font.cc -------------------------------------------------------------------------------- /source_files/edge/hu_font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/hu_font.h -------------------------------------------------------------------------------- /source_files/edge/hu_stuff.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/hu_stuff.cc -------------------------------------------------------------------------------- /source_files/edge/hu_stuff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/hu_stuff.h -------------------------------------------------------------------------------- /source_files/edge/hu_style.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/hu_style.cc -------------------------------------------------------------------------------- /source_files/edge/hu_style.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/hu_style.h -------------------------------------------------------------------------------- /source_files/edge/i_ctrl.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/i_ctrl.cc -------------------------------------------------------------------------------- /source_files/edge/i_defs_gl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/i_defs_gl.h -------------------------------------------------------------------------------- /source_files/edge/i_main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/i_main.cc -------------------------------------------------------------------------------- /source_files/edge/i_movie.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/i_movie.cc -------------------------------------------------------------------------------- /source_files/edge/i_movie.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/i_movie.h -------------------------------------------------------------------------------- /source_files/edge/i_sound.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/i_sound.cc -------------------------------------------------------------------------------- /source_files/edge/i_sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/i_sound.h -------------------------------------------------------------------------------- /source_files/edge/i_system.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/i_system.cc -------------------------------------------------------------------------------- /source_files/edge/i_system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/i_system.h -------------------------------------------------------------------------------- /source_files/edge/i_video.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/i_video.cc -------------------------------------------------------------------------------- /source_files/edge/i_video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/i_video.h -------------------------------------------------------------------------------- /source_files/edge/i_web.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/i_web.cc -------------------------------------------------------------------------------- /source_files/edge/im_data.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/im_data.cc -------------------------------------------------------------------------------- /source_files/edge/im_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/im_data.h -------------------------------------------------------------------------------- /source_files/edge/im_filter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/im_filter.cc -------------------------------------------------------------------------------- /source_files/edge/im_filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/im_filter.h -------------------------------------------------------------------------------- /source_files/edge/im_funcs.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/im_funcs.cc -------------------------------------------------------------------------------- /source_files/edge/im_funcs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/im_funcs.h -------------------------------------------------------------------------------- /source_files/edge/l_deh.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/l_deh.cc -------------------------------------------------------------------------------- /source_files/edge/l_deh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/l_deh.h -------------------------------------------------------------------------------- /source_files/edge/m_argv.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/m_argv.cc -------------------------------------------------------------------------------- /source_files/edge/m_argv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/m_argv.h -------------------------------------------------------------------------------- /source_files/edge/m_bbox.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/m_bbox.cc -------------------------------------------------------------------------------- /source_files/edge/m_bbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/m_bbox.h -------------------------------------------------------------------------------- /source_files/edge/m_cheat.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/m_cheat.cc -------------------------------------------------------------------------------- /source_files/edge/m_cheat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/m_cheat.h -------------------------------------------------------------------------------- /source_files/edge/m_math.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/m_math.cc -------------------------------------------------------------------------------- /source_files/edge/m_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/m_math.h -------------------------------------------------------------------------------- /source_files/edge/m_menu.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/m_menu.cc -------------------------------------------------------------------------------- /source_files/edge/m_menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/m_menu.h -------------------------------------------------------------------------------- /source_files/edge/m_misc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/m_misc.cc -------------------------------------------------------------------------------- /source_files/edge/m_misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/m_misc.h -------------------------------------------------------------------------------- /source_files/edge/m_netgame.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/m_netgame.cc -------------------------------------------------------------------------------- /source_files/edge/m_netgame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/m_netgame.h -------------------------------------------------------------------------------- /source_files/edge/m_option.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/m_option.cc -------------------------------------------------------------------------------- /source_files/edge/m_option.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/m_option.h -------------------------------------------------------------------------------- /source_files/edge/m_random.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/m_random.cc -------------------------------------------------------------------------------- /source_files/edge/m_random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/m_random.h -------------------------------------------------------------------------------- /source_files/edge/n_network.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/n_network.cc -------------------------------------------------------------------------------- /source_files/edge/n_network.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/n_network.h -------------------------------------------------------------------------------- /source_files/edge/p_action.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/p_action.cc -------------------------------------------------------------------------------- /source_files/edge/p_action.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/p_action.h -------------------------------------------------------------------------------- /source_files/edge/p_blockmap.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/p_blockmap.cc -------------------------------------------------------------------------------- /source_files/edge/p_blockmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/p_blockmap.h -------------------------------------------------------------------------------- /source_files/edge/p_enemy.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/p_enemy.cc -------------------------------------------------------------------------------- /source_files/edge/p_forces.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/p_forces.cc -------------------------------------------------------------------------------- /source_files/edge/p_inter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/p_inter.cc -------------------------------------------------------------------------------- /source_files/edge/p_lights.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/p_lights.cc -------------------------------------------------------------------------------- /source_files/edge/p_local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/p_local.h -------------------------------------------------------------------------------- /source_files/edge/p_map.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/p_map.cc -------------------------------------------------------------------------------- /source_files/edge/p_maputl.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/p_maputl.cc -------------------------------------------------------------------------------- /source_files/edge/p_mobj.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/p_mobj.cc -------------------------------------------------------------------------------- /source_files/edge/p_mobj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/p_mobj.h -------------------------------------------------------------------------------- /source_files/edge/p_plane.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/p_plane.cc -------------------------------------------------------------------------------- /source_files/edge/p_setup.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/p_setup.cc -------------------------------------------------------------------------------- /source_files/edge/p_setup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/p_setup.h -------------------------------------------------------------------------------- /source_files/edge/p_sight.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/p_sight.cc -------------------------------------------------------------------------------- /source_files/edge/p_spec.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/p_spec.cc -------------------------------------------------------------------------------- /source_files/edge/p_spec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/p_spec.h -------------------------------------------------------------------------------- /source_files/edge/p_switch.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/p_switch.cc -------------------------------------------------------------------------------- /source_files/edge/p_telept.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/p_telept.cc -------------------------------------------------------------------------------- /source_files/edge/p_tick.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/p_tick.cc -------------------------------------------------------------------------------- /source_files/edge/p_tick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/p_tick.h -------------------------------------------------------------------------------- /source_files/edge/p_umapinfo.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/p_umapinfo.cc -------------------------------------------------------------------------------- /source_files/edge/p_umapinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/p_umapinfo.h -------------------------------------------------------------------------------- /source_files/edge/p_user.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/p_user.cc -------------------------------------------------------------------------------- /source_files/edge/p_weapon.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/p_weapon.cc -------------------------------------------------------------------------------- /source_files/edge/p_weapon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/p_weapon.h -------------------------------------------------------------------------------- /source_files/edge/r_backend.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/r_backend.cc -------------------------------------------------------------------------------- /source_files/edge/r_backend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/r_backend.h -------------------------------------------------------------------------------- /source_files/edge/r_bsp.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/r_bsp.cc -------------------------------------------------------------------------------- /source_files/edge/r_colormap.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/r_colormap.cc -------------------------------------------------------------------------------- /source_files/edge/r_colormap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/r_colormap.h -------------------------------------------------------------------------------- /source_files/edge/r_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/r_defs.h -------------------------------------------------------------------------------- /source_files/edge/r_doomtex.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/r_doomtex.cc -------------------------------------------------------------------------------- /source_files/edge/r_draw.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/r_draw.cc -------------------------------------------------------------------------------- /source_files/edge/r_draw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/r_draw.h -------------------------------------------------------------------------------- /source_files/edge/r_effects.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/r_effects.cc -------------------------------------------------------------------------------- /source_files/edge/r_effects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/r_effects.h -------------------------------------------------------------------------------- /source_files/edge/r_gldefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/r_gldefs.h -------------------------------------------------------------------------------- /source_files/edge/r_image.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/r_image.cc -------------------------------------------------------------------------------- /source_files/edge/r_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/r_image.h -------------------------------------------------------------------------------- /source_files/edge/r_main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/r_main.cc -------------------------------------------------------------------------------- /source_files/edge/r_md2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/r_md2.h -------------------------------------------------------------------------------- /source_files/edge/r_mdcommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/r_mdcommon.h -------------------------------------------------------------------------------- /source_files/edge/r_mdl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/r_mdl.h -------------------------------------------------------------------------------- /source_files/edge/r_mirror.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/r_mirror.cc -------------------------------------------------------------------------------- /source_files/edge/r_mirror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/r_mirror.h -------------------------------------------------------------------------------- /source_files/edge/r_misc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/r_misc.cc -------------------------------------------------------------------------------- /source_files/edge/r_misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/r_misc.h -------------------------------------------------------------------------------- /source_files/edge/r_modes.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/r_modes.cc -------------------------------------------------------------------------------- /source_files/edge/r_modes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/r_modes.h -------------------------------------------------------------------------------- /source_files/edge/r_occlude.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/r_occlude.cc -------------------------------------------------------------------------------- /source_files/edge/r_occlude.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/r_occlude.h -------------------------------------------------------------------------------- /source_files/edge/r_render.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/r_render.cc -------------------------------------------------------------------------------- /source_files/edge/r_render.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/r_render.h -------------------------------------------------------------------------------- /source_files/edge/r_shader.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/r_shader.cc -------------------------------------------------------------------------------- /source_files/edge/r_shader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/r_shader.h -------------------------------------------------------------------------------- /source_files/edge/r_sky.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/r_sky.cc -------------------------------------------------------------------------------- /source_files/edge/r_sky.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/r_sky.h -------------------------------------------------------------------------------- /source_files/edge/r_state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/r_state.h -------------------------------------------------------------------------------- /source_files/edge/r_texgl.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/r_texgl.cc -------------------------------------------------------------------------------- /source_files/edge/r_texgl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/r_texgl.h -------------------------------------------------------------------------------- /source_files/edge/r_things.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/r_things.cc -------------------------------------------------------------------------------- /source_files/edge/r_things.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/r_things.h -------------------------------------------------------------------------------- /source_files/edge/r_units.cc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source_files/edge/r_units.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/r_units.h -------------------------------------------------------------------------------- /source_files/edge/r_wipe.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/r_wipe.cc -------------------------------------------------------------------------------- /source_files/edge/r_wipe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/r_wipe.h -------------------------------------------------------------------------------- /source_files/edge/rad_act.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/rad_act.cc -------------------------------------------------------------------------------- /source_files/edge/rad_act.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/rad_act.h -------------------------------------------------------------------------------- /source_files/edge/rad_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/rad_defs.h -------------------------------------------------------------------------------- /source_files/edge/rad_pars.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/rad_pars.cc -------------------------------------------------------------------------------- /source_files/edge/rad_trig.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/rad_trig.cc -------------------------------------------------------------------------------- /source_files/edge/rad_trig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/rad_trig.h -------------------------------------------------------------------------------- /source_files/edge/s_blit.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/s_blit.cc -------------------------------------------------------------------------------- /source_files/edge/s_blit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/s_blit.h -------------------------------------------------------------------------------- /source_files/edge/s_cache.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/s_cache.cc -------------------------------------------------------------------------------- /source_files/edge/s_cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/s_cache.h -------------------------------------------------------------------------------- /source_files/edge/s_doom.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/s_doom.cc -------------------------------------------------------------------------------- /source_files/edge/s_doom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/s_doom.h -------------------------------------------------------------------------------- /source_files/edge/s_flac.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/s_flac.cc -------------------------------------------------------------------------------- /source_files/edge/s_flac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/s_flac.h -------------------------------------------------------------------------------- /source_files/edge/s_m4p.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/s_m4p.cc -------------------------------------------------------------------------------- /source_files/edge/s_m4p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/s_m4p.h -------------------------------------------------------------------------------- /source_files/edge/s_midi.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/s_midi.cc -------------------------------------------------------------------------------- /source_files/edge/s_midi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/s_midi.h -------------------------------------------------------------------------------- /source_files/edge/s_midi_ec.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/s_midi_ec.cc -------------------------------------------------------------------------------- /source_files/edge/s_midi_seq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/s_midi_seq.h -------------------------------------------------------------------------------- /source_files/edge/s_mp3.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/s_mp3.cc -------------------------------------------------------------------------------- /source_files/edge/s_mp3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/s_mp3.h -------------------------------------------------------------------------------- /source_files/edge/s_music.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/s_music.cc -------------------------------------------------------------------------------- /source_files/edge/s_music.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/s_music.h -------------------------------------------------------------------------------- /source_files/edge/s_ogg.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/s_ogg.cc -------------------------------------------------------------------------------- /source_files/edge/s_ogg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/s_ogg.h -------------------------------------------------------------------------------- /source_files/edge/s_sid.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/s_sid.cc -------------------------------------------------------------------------------- /source_files/edge/s_sid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/s_sid.h -------------------------------------------------------------------------------- /source_files/edge/s_sound.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/s_sound.cc -------------------------------------------------------------------------------- /source_files/edge/s_sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/s_sound.h -------------------------------------------------------------------------------- /source_files/edge/s_wav.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/s_wav.cc -------------------------------------------------------------------------------- /source_files/edge/s_wav.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/s_wav.h -------------------------------------------------------------------------------- /source_files/edge/snd_data.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/snd_data.cc -------------------------------------------------------------------------------- /source_files/edge/snd_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/snd_data.h -------------------------------------------------------------------------------- /source_files/edge/snd_gather.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/snd_gather.cc -------------------------------------------------------------------------------- /source_files/edge/snd_gather.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/snd_gather.h -------------------------------------------------------------------------------- /source_files/edge/snd_types.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/snd_types.cc -------------------------------------------------------------------------------- /source_files/edge/snd_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/snd_types.h -------------------------------------------------------------------------------- /source_files/edge/sv_chunk.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/sv_chunk.cc -------------------------------------------------------------------------------- /source_files/edge/sv_chunk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/sv_chunk.h -------------------------------------------------------------------------------- /source_files/edge/sv_glob.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/sv_glob.cc -------------------------------------------------------------------------------- /source_files/edge/sv_level.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/sv_level.cc -------------------------------------------------------------------------------- /source_files/edge/sv_load.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/sv_load.cc -------------------------------------------------------------------------------- /source_files/edge/sv_main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/sv_main.cc -------------------------------------------------------------------------------- /source_files/edge/sv_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/sv_main.h -------------------------------------------------------------------------------- /source_files/edge/sv_misc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/sv_misc.cc -------------------------------------------------------------------------------- /source_files/edge/sv_mobj.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/sv_mobj.cc -------------------------------------------------------------------------------- /source_files/edge/sv_play.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/sv_play.cc -------------------------------------------------------------------------------- /source_files/edge/sv_save.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/sv_save.cc -------------------------------------------------------------------------------- /source_files/edge/swirl_table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/swirl_table.h -------------------------------------------------------------------------------- /source_files/edge/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/version.h -------------------------------------------------------------------------------- /source_files/edge/vm_coal.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/vm_coal.cc -------------------------------------------------------------------------------- /source_files/edge/vm_coal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/vm_coal.h -------------------------------------------------------------------------------- /source_files/edge/vm_hud.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/vm_hud.cc -------------------------------------------------------------------------------- /source_files/edge/vm_player.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/vm_player.cc -------------------------------------------------------------------------------- /source_files/edge/w32_res.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/w32_res.rc -------------------------------------------------------------------------------- /source_files/edge/w_epk.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/w_epk.cc -------------------------------------------------------------------------------- /source_files/edge/w_epk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/w_epk.h -------------------------------------------------------------------------------- /source_files/edge/w_files.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/w_files.cc -------------------------------------------------------------------------------- /source_files/edge/w_files.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/w_files.h -------------------------------------------------------------------------------- /source_files/edge/w_flat.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/w_flat.cc -------------------------------------------------------------------------------- /source_files/edge/w_flat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/w_flat.h -------------------------------------------------------------------------------- /source_files/edge/w_model.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/w_model.cc -------------------------------------------------------------------------------- /source_files/edge/w_model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/w_model.h -------------------------------------------------------------------------------- /source_files/edge/w_sprite.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/w_sprite.cc -------------------------------------------------------------------------------- /source_files/edge/w_sprite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/w_sprite.h -------------------------------------------------------------------------------- /source_files/edge/w_texture.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/w_texture.cc -------------------------------------------------------------------------------- /source_files/edge/w_texture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/w_texture.h -------------------------------------------------------------------------------- /source_files/edge/w_wad.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/w_wad.cc -------------------------------------------------------------------------------- /source_files/edge/w_wad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/edge/w_wad.h -------------------------------------------------------------------------------- /source_files/epi/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/epi/CMakeLists.txt -------------------------------------------------------------------------------- /source_files/epi/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/epi/LICENSE.txt -------------------------------------------------------------------------------- /source_files/epi/epi.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/epi/epi.cc -------------------------------------------------------------------------------- /source_files/epi/epi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/epi/epi.h -------------------------------------------------------------------------------- /source_files/epi/epi_bam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/epi/epi_bam.h -------------------------------------------------------------------------------- /source_files/epi/epi_bitset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/epi/epi_bitset.h -------------------------------------------------------------------------------- /source_files/epi/epi_color.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/epi/epi_color.cc -------------------------------------------------------------------------------- /source_files/epi/epi_color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/epi/epi_color.h -------------------------------------------------------------------------------- /source_files/epi/epi_crc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/epi/epi_crc.cc -------------------------------------------------------------------------------- /source_files/epi/epi_crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/epi/epi_crc.h -------------------------------------------------------------------------------- /source_files/epi/epi_doomdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/epi/epi_doomdefs.h -------------------------------------------------------------------------------- /source_files/epi/epi_endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/epi/epi_endian.h -------------------------------------------------------------------------------- /source_files/epi/epi_file.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/epi/epi_file.cc -------------------------------------------------------------------------------- /source_files/epi/epi_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/epi/epi_file.h -------------------------------------------------------------------------------- /source_files/epi/epi_md5.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/epi/epi_md5.cc -------------------------------------------------------------------------------- /source_files/epi/epi_md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/epi/epi_md5.h -------------------------------------------------------------------------------- /source_files/epi/epi_scanner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/epi/epi_scanner.h -------------------------------------------------------------------------------- /source_files/epi/epi_sdl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/epi/epi_sdl.h -------------------------------------------------------------------------------- /source_files/epi/epi_str_hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/epi/epi_str_hash.h -------------------------------------------------------------------------------- /source_files/epi/epi_str_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/epi/epi_str_util.h -------------------------------------------------------------------------------- /source_files/epi/epi_windows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/source_files/epi/epi_windows.h -------------------------------------------------------------------------------- /web/preload/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/site/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/web/site/index.html -------------------------------------------------------------------------------- /web/site/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/web/site/logo.png -------------------------------------------------------------------------------- /web/site/webplayer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edge-classic/EDGE-classic/HEAD/web/site/webplayer.py --------------------------------------------------------------------------------