├── .clang-format ├── .editorconfig ├── .gitignore ├── .travis.yml ├── .travis └── are-we-d1-yet.sh ├── 3rdParty ├── PKWare │ ├── explode.cpp │ ├── implode.cpp │ └── pkware.h └── Storm │ ├── Makefile │ └── Source │ ├── Storm.dsp │ ├── Storm.vcxproj │ ├── storm.cpp │ ├── storm.def │ ├── storm.h │ └── storm_gcc.def ├── Diablo.dsp ├── Diablo.dsw ├── Diablo.ico ├── Diablo.rc ├── Diablo.sln ├── Diablo.vcxproj ├── Diablo.vcxproj.filters ├── DiabloUI ├── DiabloUI.dsp ├── DiabloUI.vcxproj ├── Makefile ├── _temp_data.cpp ├── _temp_funcs.h ├── artfont.cpp ├── bn_prof.cpp ├── bnetgw.cpp ├── connect.cpp ├── copyprot.cpp ├── cr8game.cpp ├── creadung.cpp ├── creastat.cpp ├── credits.cpp ├── diabedit.cpp ├── diabloui.cpp ├── diabloui.def ├── diabloui.h ├── diabloui.res ├── diabloui_gcc.def ├── dirlink.cpp ├── disclaim.cpp ├── doom.cpp ├── entdial.cpp ├── entname.cpp ├── fade.cpp ├── focus.cpp ├── local.cpp ├── mainmenu.cpp ├── modem.cpp ├── modmstat.cpp ├── okcancel.cpp ├── progress.cpp ├── sbar.cpp ├── selclass.cpp ├── selconn.cpp ├── seldial.cpp ├── selgame.cpp ├── selhero.cpp ├── selipx.cpp ├── sellist.cpp ├── selload.cpp ├── selmodem.cpp ├── selregn.cpp ├── selyesno.cpp ├── title.cpp └── titlesnd.cpp ├── LICENSE ├── Makefile ├── MakefileVC ├── README.md ├── Source ├── .clang-format ├── _asm.cpp ├── _render.cpp ├── appfat.cpp ├── appfat.h ├── asm_trans_rect.inc ├── automap.cpp ├── automap.h ├── capture.cpp ├── capture.h ├── codec.cpp ├── codec.h ├── control.cpp ├── control.h ├── cursor.cpp ├── cursor.h ├── dead.cpp ├── dead.h ├── debug.cpp ├── debug.h ├── diablo.cpp ├── diablo.h ├── doom.cpp ├── doom.h ├── drlg_l1.cpp ├── drlg_l1.h ├── drlg_l2.cpp ├── drlg_l2.h ├── drlg_l3.cpp ├── drlg_l3.h ├── drlg_l4.cpp ├── drlg_l4.h ├── dthread.cpp ├── dthread.h ├── dx.cpp ├── dx.h ├── effects.cpp ├── effects.h ├── encrypt.cpp ├── encrypt.h ├── engine.cpp ├── engine.h ├── error.cpp ├── error.h ├── fault.cpp ├── fault.h ├── gamemenu.cpp ├── gamemenu.h ├── gendung.cpp ├── gendung.h ├── gmenu.cpp ├── gmenu.h ├── help.cpp ├── help.h ├── init.cpp ├── init.h ├── interfac.cpp ├── interfac.h ├── inv.cpp ├── inv.h ├── items.cpp ├── items.h ├── joystick.cpp ├── joystick.h ├── lighting.cpp ├── lighting.h ├── loadsave.cpp ├── loadsave.h ├── logging.cpp ├── logging.h ├── mainmenu.cpp ├── mainmenu.h ├── minitext.cpp ├── minitext.h ├── missiles.cpp ├── missiles.h ├── monster.cpp ├── monster.h ├── movie.cpp ├── movie.h ├── mpqapi.cpp ├── mpqapi.h ├── msg.cpp ├── msg.h ├── msgcmd.cpp ├── msgcmd.h ├── multi.cpp ├── multi.h ├── nthread.cpp ├── nthread.h ├── objects.cpp ├── objects.h ├── pack.cpp ├── pack.h ├── palette.cpp ├── palette.h ├── path.cpp ├── path.h ├── pfile.cpp ├── pfile.h ├── player.cpp ├── player.h ├── plrctrls.cpp ├── plrctrls.h ├── plrmsg.cpp ├── plrmsg.h ├── portal.cpp ├── portal.h ├── quests.cpp ├── quests.h ├── render.cpp ├── render.h ├── restrict.cpp ├── restrict.h ├── scrollrt.cpp ├── scrollrt.h ├── setmaps.cpp ├── setmaps.h ├── sha.cpp ├── sha.h ├── sound.cpp ├── sound.h ├── spells.cpp ├── spells.h ├── stores.cpp ├── stores.h ├── sync.cpp ├── sync.h ├── textdat.cpp ├── textdat.h ├── themes.cpp ├── themes.h ├── tmsg.cpp ├── tmsg.h ├── town.cpp ├── town.h ├── towners.cpp ├── towners.h ├── track.cpp ├── track.h ├── trigs.cpp ├── trigs.h ├── wave.cpp └── wave.h ├── appveyor.yml ├── defs.h ├── docs ├── CHANGELOG.md ├── CONTRIBUTING.md ├── INSTALL_linux.md ├── INSTALL_mac.md ├── INSTALL_windows.md ├── TODO.md ├── compatibility_matrix.md ├── debug.md └── troubleshooting.md ├── enums.h ├── format.sh ├── resource.h ├── structs.h └── types.h /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/.clang-format -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/.travis.yml -------------------------------------------------------------------------------- /.travis/are-we-d1-yet.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/.travis/are-we-d1-yet.sh -------------------------------------------------------------------------------- /3rdParty/PKWare/explode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/3rdParty/PKWare/explode.cpp -------------------------------------------------------------------------------- /3rdParty/PKWare/implode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/3rdParty/PKWare/implode.cpp -------------------------------------------------------------------------------- /3rdParty/PKWare/pkware.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/3rdParty/PKWare/pkware.h -------------------------------------------------------------------------------- /3rdParty/Storm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/3rdParty/Storm/Makefile -------------------------------------------------------------------------------- /3rdParty/Storm/Source/Storm.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/3rdParty/Storm/Source/Storm.dsp -------------------------------------------------------------------------------- /3rdParty/Storm/Source/Storm.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/3rdParty/Storm/Source/Storm.vcxproj -------------------------------------------------------------------------------- /3rdParty/Storm/Source/storm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/3rdParty/Storm/Source/storm.cpp -------------------------------------------------------------------------------- /3rdParty/Storm/Source/storm.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/3rdParty/Storm/Source/storm.def -------------------------------------------------------------------------------- /3rdParty/Storm/Source/storm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/3rdParty/Storm/Source/storm.h -------------------------------------------------------------------------------- /3rdParty/Storm/Source/storm_gcc.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/3rdParty/Storm/Source/storm_gcc.def -------------------------------------------------------------------------------- /Diablo.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/Diablo.dsp -------------------------------------------------------------------------------- /Diablo.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/Diablo.dsw -------------------------------------------------------------------------------- /Diablo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/Diablo.ico -------------------------------------------------------------------------------- /Diablo.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/Diablo.rc -------------------------------------------------------------------------------- /Diablo.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/Diablo.sln -------------------------------------------------------------------------------- /Diablo.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/Diablo.vcxproj -------------------------------------------------------------------------------- /Diablo.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/Diablo.vcxproj.filters -------------------------------------------------------------------------------- /DiabloUI/DiabloUI.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/DiabloUI/DiabloUI.dsp -------------------------------------------------------------------------------- /DiabloUI/DiabloUI.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/DiabloUI/DiabloUI.vcxproj -------------------------------------------------------------------------------- /DiabloUI/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/DiabloUI/Makefile -------------------------------------------------------------------------------- /DiabloUI/_temp_data.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/DiabloUI/_temp_data.cpp -------------------------------------------------------------------------------- /DiabloUI/_temp_funcs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/DiabloUI/_temp_funcs.h -------------------------------------------------------------------------------- /DiabloUI/artfont.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/DiabloUI/artfont.cpp -------------------------------------------------------------------------------- /DiabloUI/bn_prof.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/DiabloUI/bn_prof.cpp -------------------------------------------------------------------------------- /DiabloUI/bnetgw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/DiabloUI/bnetgw.cpp -------------------------------------------------------------------------------- /DiabloUI/connect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/DiabloUI/connect.cpp -------------------------------------------------------------------------------- /DiabloUI/copyprot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/DiabloUI/copyprot.cpp -------------------------------------------------------------------------------- /DiabloUI/cr8game.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/DiabloUI/cr8game.cpp -------------------------------------------------------------------------------- /DiabloUI/creadung.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/DiabloUI/creadung.cpp -------------------------------------------------------------------------------- /DiabloUI/creastat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/DiabloUI/creastat.cpp -------------------------------------------------------------------------------- /DiabloUI/credits.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/DiabloUI/credits.cpp -------------------------------------------------------------------------------- /DiabloUI/diabedit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/DiabloUI/diabedit.cpp -------------------------------------------------------------------------------- /DiabloUI/diabloui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/DiabloUI/diabloui.cpp -------------------------------------------------------------------------------- /DiabloUI/diabloui.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/DiabloUI/diabloui.def -------------------------------------------------------------------------------- /DiabloUI/diabloui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/DiabloUI/diabloui.h -------------------------------------------------------------------------------- /DiabloUI/diabloui.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/DiabloUI/diabloui.res -------------------------------------------------------------------------------- /DiabloUI/diabloui_gcc.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/DiabloUI/diabloui_gcc.def -------------------------------------------------------------------------------- /DiabloUI/dirlink.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/DiabloUI/dirlink.cpp -------------------------------------------------------------------------------- /DiabloUI/disclaim.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/DiabloUI/disclaim.cpp -------------------------------------------------------------------------------- /DiabloUI/doom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/DiabloUI/doom.cpp -------------------------------------------------------------------------------- /DiabloUI/entdial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/DiabloUI/entdial.cpp -------------------------------------------------------------------------------- /DiabloUI/entname.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/DiabloUI/entname.cpp -------------------------------------------------------------------------------- /DiabloUI/fade.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/DiabloUI/fade.cpp -------------------------------------------------------------------------------- /DiabloUI/focus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/DiabloUI/focus.cpp -------------------------------------------------------------------------------- /DiabloUI/local.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/DiabloUI/local.cpp -------------------------------------------------------------------------------- /DiabloUI/mainmenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/DiabloUI/mainmenu.cpp -------------------------------------------------------------------------------- /DiabloUI/modem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/DiabloUI/modem.cpp -------------------------------------------------------------------------------- /DiabloUI/modmstat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/DiabloUI/modmstat.cpp -------------------------------------------------------------------------------- /DiabloUI/okcancel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/DiabloUI/okcancel.cpp -------------------------------------------------------------------------------- /DiabloUI/progress.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/DiabloUI/progress.cpp -------------------------------------------------------------------------------- /DiabloUI/sbar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/DiabloUI/sbar.cpp -------------------------------------------------------------------------------- /DiabloUI/selclass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/DiabloUI/selclass.cpp -------------------------------------------------------------------------------- /DiabloUI/selconn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/DiabloUI/selconn.cpp -------------------------------------------------------------------------------- /DiabloUI/seldial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/DiabloUI/seldial.cpp -------------------------------------------------------------------------------- /DiabloUI/selgame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/DiabloUI/selgame.cpp -------------------------------------------------------------------------------- /DiabloUI/selhero.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/DiabloUI/selhero.cpp -------------------------------------------------------------------------------- /DiabloUI/selipx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/DiabloUI/selipx.cpp -------------------------------------------------------------------------------- /DiabloUI/sellist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/DiabloUI/sellist.cpp -------------------------------------------------------------------------------- /DiabloUI/selload.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/DiabloUI/selload.cpp -------------------------------------------------------------------------------- /DiabloUI/selmodem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/DiabloUI/selmodem.cpp -------------------------------------------------------------------------------- /DiabloUI/selregn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/DiabloUI/selregn.cpp -------------------------------------------------------------------------------- /DiabloUI/selyesno.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/DiabloUI/selyesno.cpp -------------------------------------------------------------------------------- /DiabloUI/title.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/DiabloUI/title.cpp -------------------------------------------------------------------------------- /DiabloUI/titlesnd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/DiabloUI/titlesnd.cpp -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/Makefile -------------------------------------------------------------------------------- /MakefileVC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/MakefileVC -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/README.md -------------------------------------------------------------------------------- /Source/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/Source/.clang-format -------------------------------------------------------------------------------- /Source/_asm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/Source/_asm.cpp -------------------------------------------------------------------------------- /Source/_render.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/Source/_render.cpp -------------------------------------------------------------------------------- /Source/appfat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/Source/appfat.cpp -------------------------------------------------------------------------------- /Source/appfat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/Source/appfat.h -------------------------------------------------------------------------------- /Source/asm_trans_rect.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/Source/asm_trans_rect.inc -------------------------------------------------------------------------------- /Source/automap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/Source/automap.cpp -------------------------------------------------------------------------------- /Source/automap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/Source/automap.h -------------------------------------------------------------------------------- /Source/capture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/Source/capture.cpp -------------------------------------------------------------------------------- /Source/capture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/Source/capture.h -------------------------------------------------------------------------------- /Source/codec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/Source/codec.cpp -------------------------------------------------------------------------------- /Source/codec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/Source/codec.h -------------------------------------------------------------------------------- /Source/control.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/Source/control.cpp -------------------------------------------------------------------------------- /Source/control.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/Source/control.h -------------------------------------------------------------------------------- /Source/cursor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/Source/cursor.cpp -------------------------------------------------------------------------------- /Source/cursor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/Source/cursor.h -------------------------------------------------------------------------------- /Source/dead.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/Source/dead.cpp -------------------------------------------------------------------------------- /Source/dead.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/Source/dead.h -------------------------------------------------------------------------------- /Source/debug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/Source/debug.cpp -------------------------------------------------------------------------------- /Source/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/Source/debug.h -------------------------------------------------------------------------------- /Source/diablo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/Source/diablo.cpp -------------------------------------------------------------------------------- /Source/diablo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/Source/diablo.h -------------------------------------------------------------------------------- /Source/doom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/Source/doom.cpp -------------------------------------------------------------------------------- /Source/doom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/Source/doom.h -------------------------------------------------------------------------------- /Source/drlg_l1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/Source/drlg_l1.cpp -------------------------------------------------------------------------------- /Source/drlg_l1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/Source/drlg_l1.h -------------------------------------------------------------------------------- /Source/drlg_l2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/Source/drlg_l2.cpp -------------------------------------------------------------------------------- /Source/drlg_l2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/Source/drlg_l2.h -------------------------------------------------------------------------------- /Source/drlg_l3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/Source/drlg_l3.cpp -------------------------------------------------------------------------------- /Source/drlg_l3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/Source/drlg_l3.h -------------------------------------------------------------------------------- /Source/drlg_l4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/Source/drlg_l4.cpp -------------------------------------------------------------------------------- /Source/drlg_l4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/Source/drlg_l4.h -------------------------------------------------------------------------------- /Source/dthread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/Source/dthread.cpp -------------------------------------------------------------------------------- /Source/dthread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/Source/dthread.h -------------------------------------------------------------------------------- /Source/dx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/Source/dx.cpp -------------------------------------------------------------------------------- /Source/dx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/Source/dx.h -------------------------------------------------------------------------------- /Source/effects.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/Source/effects.cpp -------------------------------------------------------------------------------- /Source/effects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/Source/effects.h -------------------------------------------------------------------------------- /Source/encrypt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/Source/encrypt.cpp -------------------------------------------------------------------------------- /Source/encrypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/Source/encrypt.h -------------------------------------------------------------------------------- /Source/engine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/Source/engine.cpp -------------------------------------------------------------------------------- /Source/engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/Source/engine.h -------------------------------------------------------------------------------- /Source/error.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/Source/error.cpp -------------------------------------------------------------------------------- /Source/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/Source/error.h -------------------------------------------------------------------------------- /Source/fault.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/Source/fault.cpp -------------------------------------------------------------------------------- /Source/fault.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/Source/fault.h -------------------------------------------------------------------------------- /Source/gamemenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/Source/gamemenu.cpp -------------------------------------------------------------------------------- /Source/gamemenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/Source/gamemenu.h -------------------------------------------------------------------------------- /Source/gendung.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/Source/gendung.cpp -------------------------------------------------------------------------------- /Source/gendung.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/Source/gendung.h -------------------------------------------------------------------------------- /Source/gmenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/Source/gmenu.cpp -------------------------------------------------------------------------------- /Source/gmenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/Source/gmenu.h -------------------------------------------------------------------------------- /Source/help.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/Source/help.cpp -------------------------------------------------------------------------------- /Source/help.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/Source/help.h -------------------------------------------------------------------------------- /Source/init.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/Source/init.cpp -------------------------------------------------------------------------------- /Source/init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/Source/init.h -------------------------------------------------------------------------------- /Source/interfac.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/Source/interfac.cpp -------------------------------------------------------------------------------- /Source/interfac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/Source/interfac.h -------------------------------------------------------------------------------- /Source/inv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/Source/inv.cpp -------------------------------------------------------------------------------- /Source/inv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/Source/inv.h -------------------------------------------------------------------------------- /Source/items.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/Source/items.cpp -------------------------------------------------------------------------------- /Source/items.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/Source/items.h -------------------------------------------------------------------------------- /Source/joystick.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/Source/joystick.cpp -------------------------------------------------------------------------------- /Source/joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/Source/joystick.h -------------------------------------------------------------------------------- /Source/lighting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/Source/lighting.cpp -------------------------------------------------------------------------------- /Source/lighting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/Source/lighting.h -------------------------------------------------------------------------------- /Source/loadsave.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/Source/loadsave.cpp -------------------------------------------------------------------------------- /Source/loadsave.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/Source/loadsave.h -------------------------------------------------------------------------------- /Source/logging.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/Source/logging.cpp -------------------------------------------------------------------------------- /Source/logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/Source/logging.h -------------------------------------------------------------------------------- /Source/mainmenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/Source/mainmenu.cpp -------------------------------------------------------------------------------- /Source/mainmenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/Source/mainmenu.h -------------------------------------------------------------------------------- /Source/minitext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/Source/minitext.cpp -------------------------------------------------------------------------------- /Source/minitext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/Source/minitext.h -------------------------------------------------------------------------------- /Source/missiles.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/Source/missiles.cpp -------------------------------------------------------------------------------- /Source/missiles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/Source/missiles.h -------------------------------------------------------------------------------- /Source/monster.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/Source/monster.cpp -------------------------------------------------------------------------------- /Source/monster.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/Source/monster.h -------------------------------------------------------------------------------- /Source/movie.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/Source/movie.cpp -------------------------------------------------------------------------------- /Source/movie.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/Source/movie.h -------------------------------------------------------------------------------- /Source/mpqapi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/Source/mpqapi.cpp -------------------------------------------------------------------------------- /Source/mpqapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/Source/mpqapi.h -------------------------------------------------------------------------------- /Source/msg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/Source/msg.cpp -------------------------------------------------------------------------------- /Source/msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/Source/msg.h -------------------------------------------------------------------------------- /Source/msgcmd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/Source/msgcmd.cpp -------------------------------------------------------------------------------- /Source/msgcmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/Source/msgcmd.h -------------------------------------------------------------------------------- /Source/multi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/Source/multi.cpp -------------------------------------------------------------------------------- /Source/multi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/Source/multi.h -------------------------------------------------------------------------------- /Source/nthread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/Source/nthread.cpp -------------------------------------------------------------------------------- /Source/nthread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/Source/nthread.h -------------------------------------------------------------------------------- /Source/objects.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/Source/objects.cpp -------------------------------------------------------------------------------- /Source/objects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/Source/objects.h -------------------------------------------------------------------------------- /Source/pack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/Source/pack.cpp -------------------------------------------------------------------------------- /Source/pack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/Source/pack.h -------------------------------------------------------------------------------- /Source/palette.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/Source/palette.cpp -------------------------------------------------------------------------------- /Source/palette.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/Source/palette.h -------------------------------------------------------------------------------- /Source/path.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/Source/path.cpp -------------------------------------------------------------------------------- /Source/path.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/Source/path.h -------------------------------------------------------------------------------- /Source/pfile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/Source/pfile.cpp -------------------------------------------------------------------------------- /Source/pfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/Source/pfile.h -------------------------------------------------------------------------------- /Source/player.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/Source/player.cpp -------------------------------------------------------------------------------- /Source/player.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/Source/player.h -------------------------------------------------------------------------------- /Source/plrctrls.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/Source/plrctrls.cpp -------------------------------------------------------------------------------- /Source/plrctrls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/Source/plrctrls.h -------------------------------------------------------------------------------- /Source/plrmsg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/Source/plrmsg.cpp -------------------------------------------------------------------------------- /Source/plrmsg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/Source/plrmsg.h -------------------------------------------------------------------------------- /Source/portal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/Source/portal.cpp -------------------------------------------------------------------------------- /Source/portal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/Source/portal.h -------------------------------------------------------------------------------- /Source/quests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/Source/quests.cpp -------------------------------------------------------------------------------- /Source/quests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/Source/quests.h -------------------------------------------------------------------------------- /Source/render.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/Source/render.cpp -------------------------------------------------------------------------------- /Source/render.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/Source/render.h -------------------------------------------------------------------------------- /Source/restrict.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/Source/restrict.cpp -------------------------------------------------------------------------------- /Source/restrict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/Source/restrict.h -------------------------------------------------------------------------------- /Source/scrollrt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/Source/scrollrt.cpp -------------------------------------------------------------------------------- /Source/scrollrt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/Source/scrollrt.h -------------------------------------------------------------------------------- /Source/setmaps.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/Source/setmaps.cpp -------------------------------------------------------------------------------- /Source/setmaps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/Source/setmaps.h -------------------------------------------------------------------------------- /Source/sha.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/Source/sha.cpp -------------------------------------------------------------------------------- /Source/sha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/Source/sha.h -------------------------------------------------------------------------------- /Source/sound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/Source/sound.cpp -------------------------------------------------------------------------------- /Source/sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/Source/sound.h -------------------------------------------------------------------------------- /Source/spells.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/Source/spells.cpp -------------------------------------------------------------------------------- /Source/spells.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/Source/spells.h -------------------------------------------------------------------------------- /Source/stores.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/Source/stores.cpp -------------------------------------------------------------------------------- /Source/stores.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/Source/stores.h -------------------------------------------------------------------------------- /Source/sync.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/Source/sync.cpp -------------------------------------------------------------------------------- /Source/sync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/Source/sync.h -------------------------------------------------------------------------------- /Source/textdat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/Source/textdat.cpp -------------------------------------------------------------------------------- /Source/textdat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/Source/textdat.h -------------------------------------------------------------------------------- /Source/themes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/Source/themes.cpp -------------------------------------------------------------------------------- /Source/themes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/Source/themes.h -------------------------------------------------------------------------------- /Source/tmsg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/Source/tmsg.cpp -------------------------------------------------------------------------------- /Source/tmsg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/Source/tmsg.h -------------------------------------------------------------------------------- /Source/town.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/Source/town.cpp -------------------------------------------------------------------------------- /Source/town.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/Source/town.h -------------------------------------------------------------------------------- /Source/towners.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/Source/towners.cpp -------------------------------------------------------------------------------- /Source/towners.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/Source/towners.h -------------------------------------------------------------------------------- /Source/track.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/Source/track.cpp -------------------------------------------------------------------------------- /Source/track.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/Source/track.h -------------------------------------------------------------------------------- /Source/trigs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/Source/trigs.cpp -------------------------------------------------------------------------------- /Source/trigs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/Source/trigs.h -------------------------------------------------------------------------------- /Source/wave.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/Source/wave.cpp -------------------------------------------------------------------------------- /Source/wave.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/Source/wave.h -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/appveyor.yml -------------------------------------------------------------------------------- /defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/defs.h -------------------------------------------------------------------------------- /docs/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/docs/CHANGELOG.md -------------------------------------------------------------------------------- /docs/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/docs/CONTRIBUTING.md -------------------------------------------------------------------------------- /docs/INSTALL_linux.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/docs/INSTALL_linux.md -------------------------------------------------------------------------------- /docs/INSTALL_mac.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/docs/INSTALL_mac.md -------------------------------------------------------------------------------- /docs/INSTALL_windows.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/docs/INSTALL_windows.md -------------------------------------------------------------------------------- /docs/TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/docs/TODO.md -------------------------------------------------------------------------------- /docs/compatibility_matrix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/docs/compatibility_matrix.md -------------------------------------------------------------------------------- /docs/debug.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/docs/debug.md -------------------------------------------------------------------------------- /docs/troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/docs/troubleshooting.md -------------------------------------------------------------------------------- /enums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/enums.h -------------------------------------------------------------------------------- /format.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/format.sh -------------------------------------------------------------------------------- /resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/resource.h -------------------------------------------------------------------------------- /structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/structs.h -------------------------------------------------------------------------------- /types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erfg12/devilution/HEAD/types.h --------------------------------------------------------------------------------