├── freesynd-experimental ├── Doxyfile ├── Makefile ├── build.xml └── src │ ├── Makefile │ ├── avatar.c │ ├── chronos.c │ ├── common.h │ ├── fli_format.h │ ├── gaia.c │ ├── hugin.c │ ├── lt.c │ ├── mission.c │ ├── munin.c │ ├── music │ └── mod.synintro │ ├── narcissus.c │ ├── notes.txt │ ├── nyarlathotep.c │ ├── scheherazade.c │ ├── scripts │ ├── config.lua │ ├── dir.lua │ ├── gaoler.lua │ ├── mapper.py │ ├── sdlkeys.lua │ └── sprites.lua │ ├── siren.c │ ├── tiamat.c │ ├── uenuku.c │ └── walkdata.txt ├── freesynd ├── branches │ └── rework-actions │ │ ├── AUTHORS │ │ ├── CMakeLists.txt │ │ ├── COPYING │ │ ├── ChangeLog │ │ ├── INSTALL │ │ ├── NEWS │ │ ├── README │ │ ├── TODO.txt │ │ ├── configure │ │ ├── data │ │ ├── cursors │ │ │ └── cursors.png │ │ ├── lang │ │ │ ├── english.lng │ │ │ ├── french.lng │ │ │ ├── german.lng │ │ │ └── italian.lng │ │ ├── music │ │ │ ├── assassinate.ogg │ │ │ └── intro.ogg │ │ └── ref │ │ │ ├── original_data.crc │ │ │ ├── research.dat │ │ │ └── weapons.dat │ │ ├── docs │ │ └── freesynd.6 │ │ ├── freesynd.ini │ │ ├── icon │ │ ├── sword.icns │ │ ├── sword.ico │ │ └── sword.png │ │ └── src │ │ ├── CHARLIMITS.txt │ │ ├── CMakeLists.txt │ │ ├── SDLMain.m │ │ ├── agent.cpp │ │ ├── agent.h │ │ ├── agentmanager.cpp │ │ ├── agentmanager.h │ │ ├── app.cpp │ │ ├── app.h │ │ ├── appcontext.cpp │ │ ├── appcontext.h │ │ ├── common.h │ │ ├── config.h │ │ ├── core │ │ ├── gamecontroller.cpp │ │ ├── gamecontroller.h │ │ ├── gameevent.h │ │ ├── gamesession.cpp │ │ ├── gamesession.h │ │ ├── missionbriefing.cpp │ │ ├── missionbriefing.h │ │ ├── research.cpp │ │ ├── research.h │ │ ├── researchmanager.cpp │ │ ├── researchmanager.h │ │ ├── squad.cpp │ │ └── squad.h │ │ ├── cp437.h │ │ ├── doxygen.conf │ │ ├── dump.cpp │ │ ├── editor │ │ ├── animmenu.cpp │ │ ├── animmenu.h │ │ ├── editorapp.cpp │ │ ├── editorapp.h │ │ ├── editormenufactory.cpp │ │ ├── editormenufactory.h │ │ ├── editormenuid.h │ │ ├── fontmenu.cpp │ │ ├── fontmenu.h │ │ ├── gfxmenu.cpp │ │ ├── gfxmenu.h │ │ ├── logoutmenu.cpp │ │ ├── logoutmenu.h │ │ ├── mainmenu.cpp │ │ └── mainmenu.h │ │ ├── freesynd.cpp │ │ ├── gfx │ │ ├── dirtylist.cpp │ │ ├── dirtylist.h │ │ ├── fliplayer.cpp │ │ ├── fliplayer.h │ │ ├── font.cpp │ │ ├── font.h │ │ ├── fontmanager.cpp │ │ ├── fontmanager.h │ │ ├── screen.cpp │ │ ├── screen.h │ │ ├── sprite.cpp │ │ ├── sprite.h │ │ ├── spritemanager.cpp │ │ ├── spritemanager.h │ │ ├── tile.cpp │ │ ├── tile.h │ │ ├── tilemanager.cpp │ │ └── tilemanager.h │ │ ├── ia │ │ ├── action.cpp │ │ ├── actions.h │ │ ├── behaviour.cpp │ │ └── behaviour.h │ │ ├── ipastim.cpp │ │ ├── ipastim.h │ │ ├── keys.h │ │ ├── map.cpp │ │ ├── map.h │ │ ├── mapmanager.cpp │ │ ├── mapmanager.h │ │ ├── mapobject.cpp │ │ ├── mapobject.h │ │ ├── menus │ │ ├── agentselectorrenderer.cpp │ │ ├── agentselectorrenderer.h │ │ ├── briefmenu.cpp │ │ ├── briefmenu.h │ │ ├── confmenu.cpp │ │ ├── confmenu.h │ │ ├── debriefmenu.cpp │ │ ├── debriefmenu.h │ │ ├── flimenu.cpp │ │ ├── flimenu.h │ │ ├── gamemenufactory.cpp │ │ ├── gamemenufactory.h │ │ ├── gamemenuid.h │ │ ├── gameplaymenu.cpp │ │ ├── gameplaymenu.h │ │ ├── loadingmenu.cpp │ │ ├── loadingmenu.h │ │ ├── loadsavemenu.cpp │ │ ├── loadsavemenu.h │ │ ├── logoutmenu.cpp │ │ ├── logoutmenu.h │ │ ├── mainmenu.cpp │ │ ├── mainmenu.h │ │ ├── mapmenu.cpp │ │ ├── mapmenu.h │ │ ├── maprenderer.cpp │ │ ├── maprenderer.h │ │ ├── menu.cpp │ │ ├── menu.h │ │ ├── menumanager.cpp │ │ ├── menumanager.h │ │ ├── minimaprenderer.cpp │ │ ├── minimaprenderer.h │ │ ├── researchmenu.cpp │ │ ├── researchmenu.h │ │ ├── selectmenu.cpp │ │ ├── selectmenu.h │ │ ├── squadselection.cpp │ │ ├── squadselection.h │ │ ├── widget.cpp │ │ └── widget.h │ │ ├── mission.cpp │ │ ├── mission.h │ │ ├── missionmanager.cpp │ │ ├── missionmanager.h │ │ ├── mod.cpp │ │ ├── mod.h │ │ ├── model │ │ ├── leveldata.h │ │ ├── objectivedesc.cpp │ │ ├── objectivedesc.h │ │ ├── shot.cpp │ │ ├── shot.h │ │ ├── train.cpp │ │ ├── train.h │ │ ├── weaponholder.cpp │ │ └── weaponholder.h │ │ ├── modmanager.cpp │ │ ├── modmanager.h │ │ ├── modowner.h │ │ ├── path.h │ │ ├── pathsurfaces.h │ │ ├── ped.cpp │ │ ├── ped.h │ │ ├── pedactions.cpp │ │ ├── pedmanager.cpp │ │ ├── pedmanager.h │ │ ├── pedpathfinding.cpp │ │ ├── resources.h │ │ ├── sound │ │ ├── audio.cpp │ │ ├── audio.h │ │ ├── music.h │ │ ├── musicmanager.cpp │ │ ├── musicmanager.h │ │ ├── sdlmixermusic.cpp │ │ ├── sdlmixermusic.h │ │ ├── sdlmixersound.cpp │ │ ├── sdlmixersound.h │ │ ├── sound.h │ │ ├── soundmanager.cpp │ │ ├── soundmanager.h │ │ ├── xmidi.cpp │ │ └── xmidi.h │ │ ├── system.h │ │ ├── system_sdl.cpp │ │ ├── system_sdl.h │ │ ├── tools │ │ ├── copy_but.cpp │ │ ├── embed.c │ │ ├── embed.cmake │ │ ├── include_libs.sh │ │ └── osx.cmake │ │ ├── utils │ │ ├── ccrc32.cpp │ │ ├── ccrc32.h │ │ ├── configfile.cpp │ │ ├── configfile.h │ │ ├── dernc.cpp │ │ ├── dernc.h │ │ ├── file.cpp │ │ ├── file.h │ │ ├── log.cpp │ │ ├── log.h │ │ ├── portablefile.cpp │ │ ├── portablefile.h │ │ ├── seqmodel.cpp │ │ ├── seqmodel.h │ │ ├── singleton.h │ │ ├── timer.h │ │ ├── utf8.h │ │ └── utf8 │ │ │ ├── checked.h │ │ │ ├── core.h │ │ │ └── unchecked.h │ │ ├── vehicle.cpp │ │ ├── vehicle.h │ │ ├── version.h │ │ ├── weapon.cpp │ │ ├── weapon.h │ │ ├── weaponmanager.cpp │ │ └── weaponmanager.h ├── tags │ ├── release-0.5 │ │ ├── AUTHORS │ │ ├── COPYING │ │ ├── ChangeLog │ │ ├── INSTALL │ │ ├── Makefile.am │ │ ├── NEWS │ │ ├── README │ │ ├── TODO.txt │ │ ├── configure.ac │ │ ├── data │ │ │ ├── cursors │ │ │ │ └── cursors.png │ │ │ ├── lang │ │ │ │ ├── english.lng │ │ │ │ ├── french.lng │ │ │ │ ├── german.lng │ │ │ │ └── italian.lng │ │ │ ├── music │ │ │ │ ├── assassinate.mp3 │ │ │ │ ├── assassinate.ogg │ │ │ │ ├── intro.mp3 │ │ │ │ └── intro.ogg │ │ │ └── ref │ │ │ │ └── research.dat │ │ ├── freesynd.ini │ │ ├── projects │ │ │ ├── dev-cpp │ │ │ │ ├── FreeSynd.dev │ │ │ │ ├── Makefile-incl.mak │ │ │ │ ├── README.txt │ │ │ │ └── copy-dll.bat │ │ │ └── visualc9 │ │ │ │ ├── README.txt │ │ │ │ ├── freesynd.sln │ │ │ │ └── freesynd.vcproj │ │ └── src │ │ │ ├── Makefile.am │ │ │ ├── agent.cpp │ │ │ ├── agent.h │ │ │ ├── agentmanager.cpp │ │ │ ├── agentmanager.h │ │ │ ├── app.cpp │ │ │ ├── app.h │ │ │ ├── briefmenu.cpp │ │ │ ├── briefmenu.h │ │ │ ├── common.h │ │ │ ├── config.h │ │ │ ├── confmenu.cpp │ │ │ ├── confmenu.h │ │ │ ├── core │ │ │ ├── gameevent.h │ │ │ ├── gamesession.cpp │ │ │ ├── gamesession.h │ │ │ ├── research.cpp │ │ │ ├── research.h │ │ │ ├── researchmanager.cpp │ │ │ └── researchmanager.h │ │ │ ├── debriefmenu.cpp │ │ │ ├── debriefmenu.h │ │ │ ├── doxygen.conf │ │ │ ├── dump.cpp │ │ │ ├── freesynd.cpp │ │ │ ├── gameplaymenu.cpp │ │ │ ├── gameplaymenu.h │ │ │ ├── gfx │ │ │ ├── dirtylist.cpp │ │ │ ├── dirtylist.h │ │ │ ├── fliplayer.cpp │ │ │ ├── fliplayer.h │ │ │ ├── font.cpp │ │ │ ├── font.h │ │ │ ├── fontmanager.cpp │ │ │ ├── fontmanager.h │ │ │ ├── screen.cpp │ │ │ ├── screen.h │ │ │ ├── sprite.cpp │ │ │ ├── sprite.h │ │ │ ├── spritemanager.cpp │ │ │ ├── spritemanager.h │ │ │ ├── tile.cpp │ │ │ ├── tile.h │ │ │ ├── tilemanager.cpp │ │ │ └── tilemanager.h │ │ │ ├── keys.h │ │ │ ├── loadingmenu.cpp │ │ │ ├── loadingmenu.h │ │ │ ├── loadsavemenu.cpp │ │ │ ├── loadsavemenu.h │ │ │ ├── logoutmenu.cpp │ │ │ ├── logoutmenu.h │ │ │ ├── mainmenu.cpp │ │ │ ├── mainmenu.h │ │ │ ├── map.cpp │ │ │ ├── map.h │ │ │ ├── mapmanager.cpp │ │ │ ├── mapmanager.h │ │ │ ├── mapmenu.cpp │ │ │ ├── mapmenu.h │ │ │ ├── mapobject.cpp │ │ │ ├── mapobject.h │ │ │ ├── menu.cpp │ │ │ ├── menu.h │ │ │ ├── menumanager.cpp │ │ │ ├── menumanager.h │ │ │ ├── menus │ │ │ ├── widget.cpp │ │ │ └── widget.h │ │ │ ├── mission.cpp │ │ │ ├── mission.h │ │ │ ├── missionmanager.cpp │ │ │ ├── missionmanager.h │ │ │ ├── mod.cpp │ │ │ ├── mod.h │ │ │ ├── modmanager.cpp │ │ │ ├── modmanager.h │ │ │ ├── path.h │ │ │ ├── pathsurfaces.h │ │ │ ├── ped.cpp │ │ │ ├── ped.h │ │ │ ├── pedmanager.cpp │ │ │ ├── pedmanager.h │ │ │ ├── researchmenu.cpp │ │ │ ├── researchmenu.h │ │ │ ├── selectmenu.cpp │ │ │ ├── selectmenu.h │ │ │ ├── sound │ │ │ ├── audio.cpp │ │ │ ├── audio.h │ │ │ ├── music.h │ │ │ ├── musicmanager.cpp │ │ │ ├── musicmanager.h │ │ │ ├── sdlmixermusic.cpp │ │ │ ├── sdlmixermusic.h │ │ │ ├── sdlmixersound.cpp │ │ │ ├── sdlmixersound.h │ │ │ ├── sound.h │ │ │ ├── soundmanager.cpp │ │ │ ├── soundmanager.h │ │ │ ├── xmidi.cpp │ │ │ └── xmidi.h │ │ │ ├── system.h │ │ │ ├── system_sdl.cpp │ │ │ ├── system_sdl.h │ │ │ ├── utils │ │ │ ├── configfile.cpp │ │ │ ├── configfile.h │ │ │ ├── dernc.cpp │ │ │ ├── dernc.h │ │ │ ├── file.cpp │ │ │ ├── file.h │ │ │ ├── log.cpp │ │ │ ├── log.h │ │ │ ├── seqmodel.cpp │ │ │ ├── seqmodel.h │ │ │ └── singleton.h │ │ │ ├── vehicle.cpp │ │ │ ├── vehicle.h │ │ │ ├── vehiclemanager.cpp │ │ │ ├── vehiclemanager.h │ │ │ ├── weapon.cpp │ │ │ ├── weapon.h │ │ │ ├── weaponholder.h │ │ │ ├── weaponmanager.cpp │ │ │ └── weaponmanager.h │ ├── release-0.6 │ │ ├── AUTHORS │ │ ├── CMakeLists.txt │ │ ├── COPYING │ │ ├── ChangeLog │ │ ├── INSTALL │ │ ├── NEWS │ │ ├── README │ │ ├── TODO.txt │ │ ├── configure │ │ ├── data │ │ │ ├── cursors │ │ │ │ └── cursors.png │ │ │ ├── lang │ │ │ │ ├── english.lng │ │ │ │ ├── french.lng │ │ │ │ ├── german.lng │ │ │ │ └── italian.lng │ │ │ ├── music │ │ │ │ ├── assassinate.ogg │ │ │ │ └── intro.ogg │ │ │ └── ref │ │ │ │ ├── original_data.crc │ │ │ │ └── research.dat │ │ ├── freesynd.ini │ │ ├── icon │ │ │ ├── sword.icns │ │ │ ├── sword.ico │ │ │ └── sword.png │ │ └── src │ │ │ ├── CHARLIMITS.txt │ │ │ ├── CMakeLists.txt │ │ │ ├── SDLMain.m │ │ │ ├── agent.cpp │ │ │ ├── agent.h │ │ │ ├── agentmanager.cpp │ │ │ ├── agentmanager.h │ │ │ ├── app.cpp │ │ │ ├── app.h │ │ │ ├── common.h │ │ │ ├── config.h │ │ │ ├── core │ │ │ ├── gameevent.h │ │ │ ├── gamesession.cpp │ │ │ ├── gamesession.h │ │ │ ├── missionbriefing.cpp │ │ │ ├── missionbriefing.h │ │ │ ├── research.cpp │ │ │ ├── research.h │ │ │ ├── researchmanager.cpp │ │ │ └── researchmanager.h │ │ │ ├── cp437.h │ │ │ ├── doxygen.conf │ │ │ ├── dump.cpp │ │ │ ├── freesynd.cpp │ │ │ ├── gfx │ │ │ ├── dirtylist.cpp │ │ │ ├── dirtylist.h │ │ │ ├── fliplayer.cpp │ │ │ ├── fliplayer.h │ │ │ ├── font.cpp │ │ │ ├── font.h │ │ │ ├── fontmanager.cpp │ │ │ ├── fontmanager.h │ │ │ ├── screen.cpp │ │ │ ├── screen.h │ │ │ ├── sprite.cpp │ │ │ ├── sprite.h │ │ │ ├── spritemanager.cpp │ │ │ ├── spritemanager.h │ │ │ ├── tile.cpp │ │ │ ├── tile.h │ │ │ ├── tilemanager.cpp │ │ │ └── tilemanager.h │ │ │ ├── keys.h │ │ │ ├── map.cpp │ │ │ ├── map.h │ │ │ ├── mapmanager.cpp │ │ │ ├── mapmanager.h │ │ │ ├── mapobject.cpp │ │ │ ├── mapobject.h │ │ │ ├── menus │ │ │ ├── briefmenu.cpp │ │ │ ├── briefmenu.h │ │ │ ├── confmenu.cpp │ │ │ ├── confmenu.h │ │ │ ├── debriefmenu.cpp │ │ │ ├── debriefmenu.h │ │ │ ├── flimenu.cpp │ │ │ ├── flimenu.h │ │ │ ├── gameplaymenu.cpp │ │ │ ├── gameplaymenu.h │ │ │ ├── loadingmenu.cpp │ │ │ ├── loadingmenu.h │ │ │ ├── loadsavemenu.cpp │ │ │ ├── loadsavemenu.h │ │ │ ├── logoutmenu.cpp │ │ │ ├── logoutmenu.h │ │ │ ├── mainmenu.cpp │ │ │ ├── mainmenu.h │ │ │ ├── mapmenu.cpp │ │ │ ├── mapmenu.h │ │ │ ├── menu.cpp │ │ │ ├── menu.h │ │ │ ├── menumanager.cpp │ │ │ ├── menumanager.h │ │ │ ├── minimaprenderer.cpp │ │ │ ├── minimaprenderer.h │ │ │ ├── researchmenu.cpp │ │ │ ├── researchmenu.h │ │ │ ├── selectmenu.cpp │ │ │ ├── selectmenu.h │ │ │ ├── widget.cpp │ │ │ └── widget.h │ │ │ ├── mission.cpp │ │ │ ├── mission.h │ │ │ ├── missionmanager.cpp │ │ │ ├── missionmanager.h │ │ │ ├── mod.cpp │ │ │ ├── mod.h │ │ │ ├── modmanager.cpp │ │ │ ├── modmanager.h │ │ │ ├── path.h │ │ │ ├── pathsurfaces.h │ │ │ ├── ped.cpp │ │ │ ├── ped.h │ │ │ ├── pedmanager.cpp │ │ │ ├── pedmanager.h │ │ │ ├── pedpathfinding.cpp │ │ │ ├── resources.h │ │ │ ├── sound │ │ │ ├── audio.cpp │ │ │ ├── audio.h │ │ │ ├── music.h │ │ │ ├── musicmanager.cpp │ │ │ ├── musicmanager.h │ │ │ ├── sdlmixermusic.cpp │ │ │ ├── sdlmixermusic.h │ │ │ ├── sdlmixersound.cpp │ │ │ ├── sdlmixersound.h │ │ │ ├── sound.h │ │ │ ├── soundmanager.cpp │ │ │ ├── soundmanager.h │ │ │ ├── xmidi.cpp │ │ │ └── xmidi.h │ │ │ ├── system.h │ │ │ ├── system_sdl.cpp │ │ │ ├── system_sdl.h │ │ │ ├── tools │ │ │ ├── copy_but.cpp │ │ │ ├── embed.c │ │ │ ├── embed.cmake │ │ │ ├── include_libs.sh │ │ │ └── osx.cmake │ │ │ ├── utils │ │ │ ├── ccrc32.cpp │ │ │ ├── ccrc32.h │ │ │ ├── configfile.cpp │ │ │ ├── configfile.h │ │ │ ├── dernc.cpp │ │ │ ├── dernc.h │ │ │ ├── file.cpp │ │ │ ├── file.h │ │ │ ├── log.cpp │ │ │ ├── log.h │ │ │ ├── portablefile.cpp │ │ │ ├── portablefile.h │ │ │ ├── seqmodel.cpp │ │ │ ├── seqmodel.h │ │ │ ├── singleton.h │ │ │ ├── utf8.h │ │ │ └── utf8 │ │ │ │ ├── checked.h │ │ │ │ ├── core.h │ │ │ │ └── unchecked.h │ │ │ ├── vehicle.cpp │ │ │ ├── vehicle.h │ │ │ ├── vehiclemanager.cpp │ │ │ ├── vehiclemanager.h │ │ │ ├── version.h │ │ │ ├── weapon.cpp │ │ │ ├── weapon.h │ │ │ ├── weaponholder.h │ │ │ ├── weaponmanager.cpp │ │ │ └── weaponmanager.h │ ├── release-0.7.1 │ │ ├── AUTHORS │ │ ├── CMakeLists.txt │ │ ├── COPYING │ │ ├── ChangeLog │ │ ├── INSTALL │ │ ├── NEWS │ │ ├── README │ │ ├── TODO.txt │ │ ├── configure │ │ ├── data │ │ │ ├── cursors │ │ │ │ └── cursors.png │ │ │ ├── lang │ │ │ │ ├── english.lng │ │ │ │ ├── french.lng │ │ │ │ ├── german.lng │ │ │ │ └── italian.lng │ │ │ ├── music │ │ │ │ ├── assassinate.ogg │ │ │ │ └── intro.ogg │ │ │ └── ref │ │ │ │ ├── original_data.crc │ │ │ │ └── research.dat │ │ ├── freesynd.ini │ │ ├── icon │ │ │ ├── sword.icns │ │ │ ├── sword.ico │ │ │ └── sword.png │ │ └── src │ │ │ ├── CHARLIMITS.txt │ │ │ ├── CMakeLists.txt │ │ │ ├── SDLMain.m │ │ │ ├── agent.cpp │ │ │ ├── agent.h │ │ │ ├── agentmanager.cpp │ │ │ ├── agentmanager.h │ │ │ ├── app.cpp │ │ │ ├── app.h │ │ │ ├── common.h │ │ │ ├── config.h │ │ │ ├── core │ │ │ ├── gameevent.h │ │ │ ├── gamesession.cpp │ │ │ ├── gamesession.h │ │ │ ├── missionbriefing.cpp │ │ │ ├── missionbriefing.h │ │ │ ├── research.cpp │ │ │ ├── research.h │ │ │ ├── researchmanager.cpp │ │ │ ├── researchmanager.h │ │ │ ├── squad.cpp │ │ │ └── squad.h │ │ │ ├── cp437.h │ │ │ ├── doxygen.conf │ │ │ ├── dump.cpp │ │ │ ├── freesynd.cpp │ │ │ ├── gfx │ │ │ ├── dirtylist.cpp │ │ │ ├── dirtylist.h │ │ │ ├── fliplayer.cpp │ │ │ ├── fliplayer.h │ │ │ ├── font.cpp │ │ │ ├── font.h │ │ │ ├── fontmanager.cpp │ │ │ ├── fontmanager.h │ │ │ ├── screen.cpp │ │ │ ├── screen.h │ │ │ ├── sprite.cpp │ │ │ ├── sprite.h │ │ │ ├── spritemanager.cpp │ │ │ ├── spritemanager.h │ │ │ ├── tile.cpp │ │ │ ├── tile.h │ │ │ ├── tilemanager.cpp │ │ │ └── tilemanager.h │ │ │ ├── ipastim.cpp │ │ │ ├── ipastim.h │ │ │ ├── keys.h │ │ │ ├── map.cpp │ │ │ ├── map.h │ │ │ ├── mapmanager.cpp │ │ │ ├── mapmanager.h │ │ │ ├── mapobject.cpp │ │ │ ├── mapobject.h │ │ │ ├── menus │ │ │ ├── agentselectorrenderer.cpp │ │ │ ├── agentselectorrenderer.h │ │ │ ├── briefmenu.cpp │ │ │ ├── briefmenu.h │ │ │ ├── confmenu.cpp │ │ │ ├── confmenu.h │ │ │ ├── debriefmenu.cpp │ │ │ ├── debriefmenu.h │ │ │ ├── flimenu.cpp │ │ │ ├── flimenu.h │ │ │ ├── gameplaymenu.cpp │ │ │ ├── gameplaymenu.h │ │ │ ├── loadingmenu.cpp │ │ │ ├── loadingmenu.h │ │ │ ├── loadsavemenu.cpp │ │ │ ├── loadsavemenu.h │ │ │ ├── logoutmenu.cpp │ │ │ ├── logoutmenu.h │ │ │ ├── mainmenu.cpp │ │ │ ├── mainmenu.h │ │ │ ├── mapmenu.cpp │ │ │ ├── mapmenu.h │ │ │ ├── menu.cpp │ │ │ ├── menu.h │ │ │ ├── menumanager.cpp │ │ │ ├── menumanager.h │ │ │ ├── minimaprenderer.cpp │ │ │ ├── minimaprenderer.h │ │ │ ├── researchmenu.cpp │ │ │ ├── researchmenu.h │ │ │ ├── selectmenu.cpp │ │ │ ├── selectmenu.h │ │ │ ├── squadselection.cpp │ │ │ ├── squadselection.h │ │ │ ├── widget.cpp │ │ │ └── widget.h │ │ │ ├── mission.cpp │ │ │ ├── mission.h │ │ │ ├── missionmanager.cpp │ │ │ ├── missionmanager.h │ │ │ ├── mod.cpp │ │ │ ├── mod.h │ │ │ ├── model │ │ │ ├── leveldata.h │ │ │ ├── objectivedesc.cpp │ │ │ └── objectivedesc.h │ │ │ ├── modmanager.cpp │ │ │ ├── modmanager.h │ │ │ ├── modowner.h │ │ │ ├── path.h │ │ │ ├── pathsurfaces.h │ │ │ ├── ped.cpp │ │ │ ├── ped.h │ │ │ ├── pedactions.cpp │ │ │ ├── pedmanager.cpp │ │ │ ├── pedmanager.h │ │ │ ├── pedpathfinding.cpp │ │ │ ├── resources.h │ │ │ ├── sound │ │ │ ├── audio.cpp │ │ │ ├── audio.h │ │ │ ├── music.h │ │ │ ├── musicmanager.cpp │ │ │ ├── musicmanager.h │ │ │ ├── sdlmixermusic.cpp │ │ │ ├── sdlmixermusic.h │ │ │ ├── sdlmixersound.cpp │ │ │ ├── sdlmixersound.h │ │ │ ├── sound.h │ │ │ ├── soundmanager.cpp │ │ │ ├── soundmanager.h │ │ │ ├── xmidi.cpp │ │ │ └── xmidi.h │ │ │ ├── system.h │ │ │ ├── system_sdl.cpp │ │ │ ├── system_sdl.h │ │ │ ├── tools │ │ │ ├── copy_but.cpp │ │ │ ├── embed.c │ │ │ ├── embed.cmake │ │ │ ├── include_libs.sh │ │ │ └── osx.cmake │ │ │ ├── utils │ │ │ ├── ccrc32.cpp │ │ │ ├── ccrc32.h │ │ │ ├── configfile.cpp │ │ │ ├── configfile.h │ │ │ ├── dernc.cpp │ │ │ ├── dernc.h │ │ │ ├── file.cpp │ │ │ ├── file.h │ │ │ ├── log.cpp │ │ │ ├── log.h │ │ │ ├── portablefile.cpp │ │ │ ├── portablefile.h │ │ │ ├── seqmodel.cpp │ │ │ ├── seqmodel.h │ │ │ ├── singleton.h │ │ │ ├── timer.h │ │ │ ├── utf8.h │ │ │ └── utf8 │ │ │ │ ├── checked.h │ │ │ │ ├── core.h │ │ │ │ └── unchecked.h │ │ │ ├── vehicle.cpp │ │ │ ├── vehicle.h │ │ │ ├── vehiclemanager.cpp │ │ │ ├── vehiclemanager.h │ │ │ ├── version.h │ │ │ ├── weapon.cpp │ │ │ ├── weapon.h │ │ │ ├── weaponholder.h │ │ │ ├── weaponmanager.cpp │ │ │ └── weaponmanager.h │ └── release-0.7 │ │ ├── AUTHORS │ │ ├── CMakeLists.txt │ │ ├── COPYING │ │ ├── ChangeLog │ │ ├── INSTALL │ │ ├── NEWS │ │ ├── README │ │ ├── TODO.txt │ │ ├── configure │ │ ├── data │ │ ├── cursors │ │ │ └── cursors.png │ │ ├── lang │ │ │ ├── english.lng │ │ │ ├── french.lng │ │ │ ├── german.lng │ │ │ └── italian.lng │ │ ├── music │ │ │ ├── assassinate.ogg │ │ │ └── intro.ogg │ │ └── ref │ │ │ ├── original_data.crc │ │ │ └── research.dat │ │ ├── freesynd.ini │ │ ├── icon │ │ ├── sword.icns │ │ ├── sword.ico │ │ └── sword.png │ │ └── src │ │ ├── CHARLIMITS.txt │ │ ├── CMakeLists.txt │ │ ├── SDLMain.m │ │ ├── agent.cpp │ │ ├── agent.h │ │ ├── agentmanager.cpp │ │ ├── agentmanager.h │ │ ├── app.cpp │ │ ├── app.h │ │ ├── common.h │ │ ├── config.h │ │ ├── core │ │ ├── gameevent.h │ │ ├── gamesession.cpp │ │ ├── gamesession.h │ │ ├── missionbriefing.cpp │ │ ├── missionbriefing.h │ │ ├── research.cpp │ │ ├── research.h │ │ ├── researchmanager.cpp │ │ ├── researchmanager.h │ │ ├── squad.cpp │ │ └── squad.h │ │ ├── cp437.h │ │ ├── doxygen.conf │ │ ├── dump.cpp │ │ ├── freesynd.cpp │ │ ├── gfx │ │ ├── dirtylist.cpp │ │ ├── dirtylist.h │ │ ├── fliplayer.cpp │ │ ├── fliplayer.h │ │ ├── font.cpp │ │ ├── font.h │ │ ├── fontmanager.cpp │ │ ├── fontmanager.h │ │ ├── screen.cpp │ │ ├── screen.h │ │ ├── sprite.cpp │ │ ├── sprite.h │ │ ├── spritemanager.cpp │ │ ├── spritemanager.h │ │ ├── tile.cpp │ │ ├── tile.h │ │ ├── tilemanager.cpp │ │ └── tilemanager.h │ │ ├── ipastim.cpp │ │ ├── ipastim.h │ │ ├── keys.h │ │ ├── map.cpp │ │ ├── map.h │ │ ├── mapmanager.cpp │ │ ├── mapmanager.h │ │ ├── mapobject.cpp │ │ ├── mapobject.h │ │ ├── menus │ │ ├── briefmenu.cpp │ │ ├── briefmenu.h │ │ ├── confmenu.cpp │ │ ├── confmenu.h │ │ ├── debriefmenu.cpp │ │ ├── debriefmenu.h │ │ ├── flimenu.cpp │ │ ├── flimenu.h │ │ ├── gameplaymenu.cpp │ │ ├── gameplaymenu.h │ │ ├── loadingmenu.cpp │ │ ├── loadingmenu.h │ │ ├── loadsavemenu.cpp │ │ ├── loadsavemenu.h │ │ ├── logoutmenu.cpp │ │ ├── logoutmenu.h │ │ ├── mainmenu.cpp │ │ ├── mainmenu.h │ │ ├── mapmenu.cpp │ │ ├── mapmenu.h │ │ ├── menu.cpp │ │ ├── menu.h │ │ ├── menumanager.cpp │ │ ├── menumanager.h │ │ ├── minimaprenderer.cpp │ │ ├── minimaprenderer.h │ │ ├── researchmenu.cpp │ │ ├── researchmenu.h │ │ ├── selectmenu.cpp │ │ ├── selectmenu.h │ │ ├── squadselection.cpp │ │ ├── squadselection.h │ │ ├── widget.cpp │ │ └── widget.h │ │ ├── mission.cpp │ │ ├── mission.h │ │ ├── missionmanager.cpp │ │ ├── missionmanager.h │ │ ├── mod.cpp │ │ ├── mod.h │ │ ├── model │ │ ├── objectivedesc.cpp │ │ └── objectivedesc.h │ │ ├── modmanager.cpp │ │ ├── modmanager.h │ │ ├── modowner.h │ │ ├── path.h │ │ ├── pathsurfaces.h │ │ ├── ped.cpp │ │ ├── ped.h │ │ ├── pedactions.cpp │ │ ├── pedmanager.cpp │ │ ├── pedmanager.h │ │ ├── pedpathfinding.cpp │ │ ├── resources.h │ │ ├── sound │ │ ├── audio.cpp │ │ ├── audio.h │ │ ├── music.h │ │ ├── musicmanager.cpp │ │ ├── musicmanager.h │ │ ├── sdlmixermusic.cpp │ │ ├── sdlmixermusic.h │ │ ├── sdlmixersound.cpp │ │ ├── sdlmixersound.h │ │ ├── sound.h │ │ ├── soundmanager.cpp │ │ ├── soundmanager.h │ │ ├── xmidi.cpp │ │ └── xmidi.h │ │ ├── system.h │ │ ├── system_sdl.cpp │ │ ├── system_sdl.h │ │ ├── tools │ │ ├── copy_but.cpp │ │ ├── embed.c │ │ ├── embed.cmake │ │ ├── include_libs.sh │ │ └── osx.cmake │ │ ├── utils │ │ ├── ccrc32.cpp │ │ ├── ccrc32.h │ │ ├── configfile.cpp │ │ ├── configfile.h │ │ ├── dernc.cpp │ │ ├── dernc.h │ │ ├── file.cpp │ │ ├── file.h │ │ ├── log.cpp │ │ ├── log.h │ │ ├── portablefile.cpp │ │ ├── portablefile.h │ │ ├── seqmodel.cpp │ │ ├── seqmodel.h │ │ ├── singleton.h │ │ ├── timer.h │ │ ├── utf8.h │ │ └── utf8 │ │ │ ├── checked.h │ │ │ ├── core.h │ │ │ └── unchecked.h │ │ ├── vehicle.cpp │ │ ├── vehicle.h │ │ ├── vehiclemanager.cpp │ │ ├── vehiclemanager.h │ │ ├── version.h │ │ ├── weapon.cpp │ │ ├── weapon.h │ │ ├── weaponholder.h │ │ ├── weaponmanager.cpp │ │ └── weaponmanager.h └── trunk │ ├── AUTHORS │ ├── CMakeLists.txt │ ├── COPYING │ ├── ChangeLog │ ├── INSTALL │ ├── NEWS │ ├── README │ ├── TODO.txt │ ├── configure │ ├── data │ ├── cursors │ │ └── cursors.png │ ├── lang │ │ ├── english.lng │ │ ├── french.lng │ │ ├── german.lng │ │ └── italian.lng │ ├── music │ │ ├── assassinate.ogg │ │ └── intro.ogg │ └── ref │ │ ├── original_data.crc │ │ ├── research.dat │ │ └── weapons.dat │ ├── docs │ └── freesynd.6 │ ├── freesynd.ini │ ├── icon │ ├── sword.icns │ ├── sword.ico │ └── sword.png │ └── src │ ├── CHARLIMITS.txt │ ├── CMakeLists.txt │ ├── SDLMain.m │ ├── agent.cpp │ ├── agent.h │ ├── agentmanager.cpp │ ├── agentmanager.h │ ├── app.cpp │ ├── app.h │ ├── appcontext.cpp │ ├── appcontext.h │ ├── common.h │ ├── config.h │ ├── core │ ├── actions.h │ ├── gamecontroller.cpp │ ├── gamecontroller.h │ ├── gameevent.h │ ├── gamesession.cpp │ ├── gamesession.h │ ├── missionbriefing.cpp │ ├── missionbriefing.h │ ├── research.cpp │ ├── research.h │ ├── researchmanager.cpp │ ├── researchmanager.h │ ├── squad.cpp │ └── squad.h │ ├── cp437.h │ ├── doxygen.conf │ ├── dump.cpp │ ├── editor │ ├── animmenu.cpp │ ├── animmenu.h │ ├── editorapp.cpp │ ├── editorapp.h │ ├── editormenufactory.cpp │ ├── editormenufactory.h │ ├── editormenuid.h │ ├── fontmenu.cpp │ ├── fontmenu.h │ ├── gfxmenu.cpp │ ├── gfxmenu.h │ ├── logoutmenu.cpp │ ├── logoutmenu.h │ ├── mainmenu.cpp │ └── mainmenu.h │ ├── freesynd.cpp │ ├── gfx │ ├── dirtylist.cpp │ ├── dirtylist.h │ ├── fliplayer.cpp │ ├── fliplayer.h │ ├── font.cpp │ ├── font.h │ ├── fontmanager.cpp │ ├── fontmanager.h │ ├── screen.cpp │ ├── screen.h │ ├── sprite.cpp │ ├── sprite.h │ ├── spritemanager.cpp │ ├── spritemanager.h │ ├── tile.cpp │ ├── tile.h │ ├── tilemanager.cpp │ └── tilemanager.h │ ├── ipastim.cpp │ ├── ipastim.h │ ├── keys.h │ ├── map.cpp │ ├── map.h │ ├── mapmanager.cpp │ ├── mapmanager.h │ ├── mapobject.cpp │ ├── mapobject.h │ ├── menus │ ├── agentselectorrenderer.cpp │ ├── agentselectorrenderer.h │ ├── briefmenu.cpp │ ├── briefmenu.h │ ├── confmenu.cpp │ ├── confmenu.h │ ├── debriefmenu.cpp │ ├── debriefmenu.h │ ├── flimenu.cpp │ ├── flimenu.h │ ├── gamemenufactory.cpp │ ├── gamemenufactory.h │ ├── gamemenuid.h │ ├── gameplaymenu.cpp │ ├── gameplaymenu.h │ ├── loadingmenu.cpp │ ├── loadingmenu.h │ ├── loadsavemenu.cpp │ ├── loadsavemenu.h │ ├── logoutmenu.cpp │ ├── logoutmenu.h │ ├── mainmenu.cpp │ ├── mainmenu.h │ ├── mapmenu.cpp │ ├── mapmenu.h │ ├── maprenderer.cpp │ ├── maprenderer.h │ ├── menu.cpp │ ├── menu.h │ ├── menumanager.cpp │ ├── menumanager.h │ ├── minimaprenderer.cpp │ ├── minimaprenderer.h │ ├── researchmenu.cpp │ ├── researchmenu.h │ ├── selectmenu.cpp │ ├── selectmenu.h │ ├── squadselection.cpp │ ├── squadselection.h │ ├── widget.cpp │ └── widget.h │ ├── mission.cpp │ ├── mission.h │ ├── missionmanager.cpp │ ├── missionmanager.h │ ├── mod.cpp │ ├── mod.h │ ├── model │ ├── leveldata.h │ ├── objectivedesc.cpp │ ├── objectivedesc.h │ └── weaponholder.cpp │ ├── modmanager.cpp │ ├── modmanager.h │ ├── modowner.h │ ├── path.h │ ├── pathsurfaces.h │ ├── ped.cpp │ ├── ped.h │ ├── pedactions.cpp │ ├── pedmanager.cpp │ ├── pedmanager.h │ ├── pedpathfinding.cpp │ ├── resources.h │ ├── sound │ ├── audio.cpp │ ├── audio.h │ ├── music.h │ ├── musicmanager.cpp │ ├── musicmanager.h │ ├── sdlmixermusic.cpp │ ├── sdlmixermusic.h │ ├── sdlmixersound.cpp │ ├── sdlmixersound.h │ ├── sound.h │ ├── soundmanager.cpp │ ├── soundmanager.h │ ├── xmidi.cpp │ └── xmidi.h │ ├── system.h │ ├── system_sdl.cpp │ ├── system_sdl.h │ ├── tools │ ├── copy_but.cpp │ ├── embed.c │ ├── embed.cmake │ ├── include_libs.sh │ └── osx.cmake │ ├── utils │ ├── ccrc32.cpp │ ├── ccrc32.h │ ├── configfile.cpp │ ├── configfile.h │ ├── dernc.cpp │ ├── dernc.h │ ├── file.cpp │ ├── file.h │ ├── log.cpp │ ├── log.h │ ├── portablefile.cpp │ ├── portablefile.h │ ├── seqmodel.cpp │ ├── seqmodel.h │ ├── singleton.h │ ├── timer.h │ ├── utf8.h │ └── utf8 │ │ ├── checked.h │ │ ├── core.h │ │ └── unchecked.h │ ├── vehicle.cpp │ ├── vehicle.h │ ├── version.h │ ├── weapon.cpp │ ├── weapon.h │ ├── weaponholder.h │ ├── weaponmanager.cpp │ └── weaponmanager.h ├── libs └── MSVC │ ├── Contents.txt │ ├── include │ ├── SDL.h │ ├── SDL_active.h │ ├── SDL_audio.h │ ├── SDL_byteorder.h │ ├── SDL_cdrom.h │ ├── SDL_config.h │ ├── SDL_config_amiga.h │ ├── SDL_config_dreamcast.h │ ├── SDL_config_macos.h │ ├── SDL_config_macosx.h │ ├── SDL_config_minimal.h │ ├── SDL_config_nds.h │ ├── SDL_config_os2.h │ ├── SDL_config_symbian.h │ ├── SDL_config_win32.h │ ├── SDL_copying.h │ ├── SDL_cpuinfo.h │ ├── SDL_endian.h │ ├── SDL_error.h │ ├── SDL_events.h │ ├── SDL_getenv.h │ ├── SDL_image.h │ ├── SDL_joystick.h │ ├── SDL_keyboard.h │ ├── SDL_keysym.h │ ├── SDL_loadso.h │ ├── SDL_main.h │ ├── SDL_mixer.h │ ├── SDL_mouse.h │ ├── SDL_mutex.h │ ├── SDL_name.h │ ├── SDL_opengl.h │ ├── SDL_platform.h │ ├── SDL_quit.h │ ├── SDL_rwops.h │ ├── SDL_stdinc.h │ ├── SDL_syswm.h │ ├── SDL_thread.h │ ├── SDL_timer.h │ ├── SDL_types.h │ ├── SDL_version.h │ ├── SDL_video.h │ ├── begin_code.h │ ├── close_code.h │ ├── png.h │ ├── pngconf.h │ ├── pngpriv.h │ ├── zconf.h │ └── zlib.h │ └── lib │ ├── SDL.dll │ ├── SDL.lib │ ├── SDL_image.dll │ ├── SDL_image.lib │ ├── SDL_mixer.dll │ ├── SDL_mixer.lib │ ├── SDLmain.lib │ ├── libogg-0.dll │ ├── libpng.lib │ ├── libpng14.dll │ ├── libvorbis-0.dll │ ├── libvorbisfile-3.dll │ ├── zdll.exp │ ├── zdll.lib │ ├── zlib.def │ ├── zlib1.dll │ └── zlibd.lib ├── libsyndicate-0.13 ├── COPYING.txt ├── Makefile.am ├── Makefile.in ├── README ├── Voc.txt ├── aclocal.m4 ├── bootstrap ├── config.guess ├── config.sub ├── configure ├── configure.ac ├── demo │ ├── Makefile.am │ ├── Makefile.in │ ├── opengl │ │ ├── Data.cc │ │ ├── Data.h │ │ ├── Main.cc │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── Sight.cc │ │ ├── Sight.h │ │ ├── Tiles.cc │ │ ├── Tiles.h │ │ └── gl.txt │ └── sdl │ │ ├── Game.cc │ │ ├── Game.h │ │ ├── Main.cc │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── Sdl.cc │ │ └── Sdl.h ├── depcomp ├── doc │ ├── Makefile.am │ ├── Makefile.in │ ├── doxygen │ │ ├── Doxyfile │ │ ├── Makefile.am │ │ └── Makefile.in │ └── latex │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── libsyndicate.tex │ │ └── picts │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ └── src │ │ ├── Animation.dia │ │ ├── Coordinates.dia │ │ ├── Ipa.dia │ │ ├── Map.dia │ │ ├── Menus.dia │ │ ├── Orientation.dia │ │ ├── RncBitstream.dia │ │ ├── RncChunk.dia │ │ ├── SyndicateCover.png │ │ ├── Tile.dia │ │ └── ipa.png ├── example │ ├── Animation.cc │ ├── Animation.h │ ├── Makefile.am │ ├── Makefile.in │ ├── Map.cc │ ├── Map.h │ ├── main_anim.cc │ ├── main_file.cc │ ├── main_font.cc │ ├── main_frame.cc │ ├── main_frame.log │ ├── main_game.cc │ ├── main_hreq.cc │ ├── main_map.cc │ ├── main_mapcol.cc │ ├── main_mapdata.cc │ ├── main_maptile.cc │ ├── main_palette.cc │ ├── main_raw.cc │ └── main_sprite.cc ├── install-sh ├── lib │ ├── Bitstream.cc │ ├── Block.cc │ ├── Colors.cc │ ├── Debug.cc │ ├── File.cc │ ├── Font.cc │ ├── Game.cc │ ├── HuffmanTable.cc │ ├── Main.cc │ ├── Makefile.am │ ├── Makefile.in │ ├── MapColumn.cc │ ├── MapData.cc │ ├── MapSubTile.cc │ ├── MapTile.cc │ ├── Palette.cc │ ├── Raw.cc │ ├── Req.cc │ ├── Rnc.cc │ ├── SpriteAnim.cc │ ├── SpriteData.cc │ ├── SpriteElement.cc │ ├── SpriteFrame.cc │ ├── SpriteTab.cc │ └── Syndicate │ │ └── Data │ │ ├── Bitstream.h │ │ ├── Block.h │ │ ├── Colors.h │ │ ├── Debug.h │ │ ├── Endianess.h │ │ ├── File.h │ │ ├── Font.h │ │ ├── Game.h │ │ ├── HuffmanTable.h │ │ ├── Int.h │ │ ├── MapColumn.h │ │ ├── MapData.h │ │ ├── MapSubTile.h │ │ ├── MapTile.h │ │ ├── Mission.h │ │ ├── Palette.h │ │ ├── Raw.h │ │ ├── Req.h │ │ ├── Rnc.h │ │ ├── SpriteAnim.h │ │ ├── SpriteData.h │ │ ├── SpriteElement.h │ │ ├── SpriteFrame.h │ │ ├── SpriteTab.h │ │ └── config.h.in ├── ltmain.sh ├── missing ├── reference_tile_id.png ├── reference_walkdata.png ├── test │ ├── Makefile.am │ ├── Makefile.in │ ├── TestBlock.cc │ ├── TestBlock.h │ ├── TestFont.cc │ ├── TestFont.h │ ├── TestInt.cc │ ├── TestMapData.cc │ ├── TestMapData.h │ ├── TestMapTile.cc │ ├── TestMapTile.h │ ├── TestPalette.cc │ ├── TestPalette.h │ ├── TestSpriteTab.cc │ └── TestSpriteTab.h └── tool │ ├── Makefile.am │ ├── Makefile.in │ ├── Memshot.cc │ ├── Memshot.h │ ├── MemshotFe.cc │ ├── README │ ├── Screenshot.cc │ ├── Screenshot.h │ └── difference ├── scripts ├── cpplint.py └── update-website.sh └── www ├── about.php ├── clock.js ├── data ├── news.xml ├── old-news.xml └── roadmap.xml ├── default.css ├── dev.php ├── dl.php ├── ff.php ├── images ├── bg.png ├── bg2.png ├── bg3.png ├── bg4.png ├── clock │ ├── 0.png │ ├── 1.png │ ├── 2.png │ ├── 3.png │ ├── 4.png │ ├── 5.png │ ├── 6.png │ ├── 7.png │ ├── 8.png │ ├── 9.png │ ├── a.png │ ├── colon.png │ ├── m.png │ ├── minus.png │ ├── nc.png │ ├── p.png │ └── plus.png ├── favicon.png ├── freesynd-logo.svg ├── freesynd.png ├── logos │ ├── valid-xhtml10.png │ └── vcss.png ├── screenshots │ ├── ss1.png │ ├── ss10.png │ ├── ss11.png │ ├── ss12.png │ ├── ss13.png │ ├── ss14.png │ ├── ss15.png │ ├── ss16.png │ ├── ss17.png │ ├── ss18.png │ ├── ss2.png │ ├── ss3.png │ ├── ss4.png │ ├── ss5.png │ ├── ss6.png │ ├── ss7.png │ ├── ss8.png │ ├── ss9.png │ ├── thumb.ss1.png │ ├── thumb.ss10.png │ ├── thumb.ss11.png │ ├── thumb.ss12.png │ ├── thumb.ss13.png │ ├── thumb.ss14.png │ ├── thumb.ss15.png │ ├── thumb.ss16.png │ ├── thumb.ss17.png │ ├── thumb.ss18.png │ ├── thumb.ss2.png │ ├── thumb.ss3.png │ ├── thumb.ss4.png │ ├── thumb.ss5.png │ ├── thumb.ss6.png │ ├── thumb.ss7.png │ ├── thumb.ss8.png │ └── thumb.ss9.png ├── sidebar │ ├── hi.about.png │ ├── hi.dev.png │ ├── hi.dl.png │ ├── hi.ff.png │ ├── hi.links.png │ ├── hi.news.png │ ├── hi.ss.png │ ├── lo.about.png │ ├── lo.dev.png │ ├── lo.dl.png │ ├── lo.ff.png │ ├── lo.links.png │ ├── lo.news.png │ └── lo.ss.png ├── tiles │ ├── bytes.png │ ├── example1.png │ ├── example2.png │ ├── pixel2.png │ ├── pixels.png │ ├── stacking.png │ ├── subtile-order.png │ └── subtiles.png └── titlebar │ ├── about.png │ ├── dev.png │ ├── dl.png │ ├── ff.png │ ├── links.png │ ├── news.png │ └── ss.png ├── include ├── .htaccess ├── common.php ├── footer-inc.php ├── header-inc.php └── rss-inc.php ├── index.php ├── links.php └── ss.php /freesynd-experimental/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd-experimental/Doxyfile -------------------------------------------------------------------------------- /freesynd-experimental/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd-experimental/Makefile -------------------------------------------------------------------------------- /freesynd-experimental/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd-experimental/build.xml -------------------------------------------------------------------------------- /freesynd-experimental/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd-experimental/src/Makefile -------------------------------------------------------------------------------- /freesynd-experimental/src/avatar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd-experimental/src/avatar.c -------------------------------------------------------------------------------- /freesynd-experimental/src/chronos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd-experimental/src/chronos.c -------------------------------------------------------------------------------- /freesynd-experimental/src/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd-experimental/src/common.h -------------------------------------------------------------------------------- /freesynd-experimental/src/fli_format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd-experimental/src/fli_format.h -------------------------------------------------------------------------------- /freesynd-experimental/src/gaia.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd-experimental/src/gaia.c -------------------------------------------------------------------------------- /freesynd-experimental/src/hugin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd-experimental/src/hugin.c -------------------------------------------------------------------------------- /freesynd-experimental/src/lt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd-experimental/src/lt.c -------------------------------------------------------------------------------- /freesynd-experimental/src/mission.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd-experimental/src/mission.c -------------------------------------------------------------------------------- /freesynd-experimental/src/munin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd-experimental/src/munin.c -------------------------------------------------------------------------------- /freesynd-experimental/src/music/mod.synintro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd-experimental/src/music/mod.synintro -------------------------------------------------------------------------------- /freesynd-experimental/src/narcissus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd-experimental/src/narcissus.c -------------------------------------------------------------------------------- /freesynd-experimental/src/notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd-experimental/src/notes.txt -------------------------------------------------------------------------------- /freesynd-experimental/src/nyarlathotep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd-experimental/src/nyarlathotep.c -------------------------------------------------------------------------------- /freesynd-experimental/src/scheherazade.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd-experimental/src/scheherazade.c -------------------------------------------------------------------------------- /freesynd-experimental/src/scripts/config.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd-experimental/src/scripts/config.lua -------------------------------------------------------------------------------- /freesynd-experimental/src/scripts/dir.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd-experimental/src/scripts/dir.lua -------------------------------------------------------------------------------- /freesynd-experimental/src/scripts/gaoler.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd-experimental/src/scripts/gaoler.lua -------------------------------------------------------------------------------- /freesynd-experimental/src/scripts/mapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd-experimental/src/scripts/mapper.py -------------------------------------------------------------------------------- /freesynd-experimental/src/scripts/sdlkeys.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd-experimental/src/scripts/sdlkeys.lua -------------------------------------------------------------------------------- /freesynd-experimental/src/scripts/sprites.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd-experimental/src/scripts/sprites.lua -------------------------------------------------------------------------------- /freesynd-experimental/src/siren.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd-experimental/src/siren.c -------------------------------------------------------------------------------- /freesynd-experimental/src/tiamat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd-experimental/src/tiamat.c -------------------------------------------------------------------------------- /freesynd-experimental/src/uenuku.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd-experimental/src/uenuku.c -------------------------------------------------------------------------------- /freesynd-experimental/src/walkdata.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd-experimental/src/walkdata.txt -------------------------------------------------------------------------------- /freesynd/branches/rework-actions/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/branches/rework-actions/AUTHORS -------------------------------------------------------------------------------- /freesynd/branches/rework-actions/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/branches/rework-actions/COPYING -------------------------------------------------------------------------------- /freesynd/branches/rework-actions/ChangeLog: -------------------------------------------------------------------------------- 1 | See NEWS files for release changes. 2 | -------------------------------------------------------------------------------- /freesynd/branches/rework-actions/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/branches/rework-actions/INSTALL -------------------------------------------------------------------------------- /freesynd/branches/rework-actions/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/branches/rework-actions/NEWS -------------------------------------------------------------------------------- /freesynd/branches/rework-actions/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/branches/rework-actions/README -------------------------------------------------------------------------------- /freesynd/branches/rework-actions/TODO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/branches/rework-actions/TODO.txt -------------------------------------------------------------------------------- /freesynd/branches/rework-actions/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/branches/rework-actions/configure -------------------------------------------------------------------------------- /freesynd/branches/rework-actions/freesynd.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/branches/rework-actions/freesynd.ini -------------------------------------------------------------------------------- /freesynd/branches/rework-actions/src/SDLMain.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/branches/rework-actions/src/SDLMain.m -------------------------------------------------------------------------------- /freesynd/branches/rework-actions/src/agent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/branches/rework-actions/src/agent.cpp -------------------------------------------------------------------------------- /freesynd/branches/rework-actions/src/agent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/branches/rework-actions/src/agent.h -------------------------------------------------------------------------------- /freesynd/branches/rework-actions/src/app.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/branches/rework-actions/src/app.cpp -------------------------------------------------------------------------------- /freesynd/branches/rework-actions/src/app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/branches/rework-actions/src/app.h -------------------------------------------------------------------------------- /freesynd/branches/rework-actions/src/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/branches/rework-actions/src/common.h -------------------------------------------------------------------------------- /freesynd/branches/rework-actions/src/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/branches/rework-actions/src/config.h -------------------------------------------------------------------------------- /freesynd/branches/rework-actions/src/cp437.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/branches/rework-actions/src/cp437.h -------------------------------------------------------------------------------- /freesynd/branches/rework-actions/src/dump.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/branches/rework-actions/src/dump.cpp -------------------------------------------------------------------------------- /freesynd/branches/rework-actions/src/ipastim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/branches/rework-actions/src/ipastim.h -------------------------------------------------------------------------------- /freesynd/branches/rework-actions/src/keys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/branches/rework-actions/src/keys.h -------------------------------------------------------------------------------- /freesynd/branches/rework-actions/src/map.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/branches/rework-actions/src/map.cpp -------------------------------------------------------------------------------- /freesynd/branches/rework-actions/src/map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/branches/rework-actions/src/map.h -------------------------------------------------------------------------------- /freesynd/branches/rework-actions/src/mission.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/branches/rework-actions/src/mission.h -------------------------------------------------------------------------------- /freesynd/branches/rework-actions/src/mod.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/branches/rework-actions/src/mod.cpp -------------------------------------------------------------------------------- /freesynd/branches/rework-actions/src/mod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/branches/rework-actions/src/mod.h -------------------------------------------------------------------------------- /freesynd/branches/rework-actions/src/path.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/branches/rework-actions/src/path.h -------------------------------------------------------------------------------- /freesynd/branches/rework-actions/src/ped.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/branches/rework-actions/src/ped.cpp -------------------------------------------------------------------------------- /freesynd/branches/rework-actions/src/ped.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/branches/rework-actions/src/ped.h -------------------------------------------------------------------------------- /freesynd/branches/rework-actions/src/system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/branches/rework-actions/src/system.h -------------------------------------------------------------------------------- /freesynd/branches/rework-actions/src/vehicle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/branches/rework-actions/src/vehicle.h -------------------------------------------------------------------------------- /freesynd/branches/rework-actions/src/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/branches/rework-actions/src/version.h -------------------------------------------------------------------------------- /freesynd/branches/rework-actions/src/weapon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/branches/rework-actions/src/weapon.h -------------------------------------------------------------------------------- /freesynd/tags/release-0.5/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.5/AUTHORS -------------------------------------------------------------------------------- /freesynd/tags/release-0.5/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.5/COPYING -------------------------------------------------------------------------------- /freesynd/tags/release-0.5/ChangeLog: -------------------------------------------------------------------------------- 1 | See NEWS files for release changes. 2 | -------------------------------------------------------------------------------- /freesynd/tags/release-0.5/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.5/INSTALL -------------------------------------------------------------------------------- /freesynd/tags/release-0.5/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.5/Makefile.am -------------------------------------------------------------------------------- /freesynd/tags/release-0.5/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.5/NEWS -------------------------------------------------------------------------------- /freesynd/tags/release-0.5/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.5/README -------------------------------------------------------------------------------- /freesynd/tags/release-0.5/TODO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.5/TODO.txt -------------------------------------------------------------------------------- /freesynd/tags/release-0.5/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.5/configure.ac -------------------------------------------------------------------------------- /freesynd/tags/release-0.5/freesynd.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.5/freesynd.ini -------------------------------------------------------------------------------- /freesynd/tags/release-0.5/src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.5/src/Makefile.am -------------------------------------------------------------------------------- /freesynd/tags/release-0.5/src/agent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.5/src/agent.cpp -------------------------------------------------------------------------------- /freesynd/tags/release-0.5/src/agent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.5/src/agent.h -------------------------------------------------------------------------------- /freesynd/tags/release-0.5/src/app.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.5/src/app.cpp -------------------------------------------------------------------------------- /freesynd/tags/release-0.5/src/app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.5/src/app.h -------------------------------------------------------------------------------- /freesynd/tags/release-0.5/src/briefmenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.5/src/briefmenu.cpp -------------------------------------------------------------------------------- /freesynd/tags/release-0.5/src/briefmenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.5/src/briefmenu.h -------------------------------------------------------------------------------- /freesynd/tags/release-0.5/src/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.5/src/common.h -------------------------------------------------------------------------------- /freesynd/tags/release-0.5/src/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.5/src/config.h -------------------------------------------------------------------------------- /freesynd/tags/release-0.5/src/confmenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.5/src/confmenu.cpp -------------------------------------------------------------------------------- /freesynd/tags/release-0.5/src/confmenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.5/src/confmenu.h -------------------------------------------------------------------------------- /freesynd/tags/release-0.5/src/debriefmenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.5/src/debriefmenu.h -------------------------------------------------------------------------------- /freesynd/tags/release-0.5/src/doxygen.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.5/src/doxygen.conf -------------------------------------------------------------------------------- /freesynd/tags/release-0.5/src/dump.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.5/src/dump.cpp -------------------------------------------------------------------------------- /freesynd/tags/release-0.5/src/freesynd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.5/src/freesynd.cpp -------------------------------------------------------------------------------- /freesynd/tags/release-0.5/src/gfx/font.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.5/src/gfx/font.cpp -------------------------------------------------------------------------------- /freesynd/tags/release-0.5/src/gfx/font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.5/src/gfx/font.h -------------------------------------------------------------------------------- /freesynd/tags/release-0.5/src/gfx/screen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.5/src/gfx/screen.h -------------------------------------------------------------------------------- /freesynd/tags/release-0.5/src/gfx/sprite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.5/src/gfx/sprite.h -------------------------------------------------------------------------------- /freesynd/tags/release-0.5/src/gfx/tile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.5/src/gfx/tile.cpp -------------------------------------------------------------------------------- /freesynd/tags/release-0.5/src/gfx/tile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.5/src/gfx/tile.h -------------------------------------------------------------------------------- /freesynd/tags/release-0.5/src/keys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.5/src/keys.h -------------------------------------------------------------------------------- /freesynd/tags/release-0.5/src/loadingmenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.5/src/loadingmenu.h -------------------------------------------------------------------------------- /freesynd/tags/release-0.5/src/logoutmenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.5/src/logoutmenu.h -------------------------------------------------------------------------------- /freesynd/tags/release-0.5/src/mainmenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.5/src/mainmenu.cpp -------------------------------------------------------------------------------- /freesynd/tags/release-0.5/src/mainmenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.5/src/mainmenu.h -------------------------------------------------------------------------------- /freesynd/tags/release-0.5/src/map.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.5/src/map.cpp -------------------------------------------------------------------------------- /freesynd/tags/release-0.5/src/map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.5/src/map.h -------------------------------------------------------------------------------- /freesynd/tags/release-0.5/src/mapmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.5/src/mapmanager.h -------------------------------------------------------------------------------- /freesynd/tags/release-0.5/src/mapmenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.5/src/mapmenu.cpp -------------------------------------------------------------------------------- /freesynd/tags/release-0.5/src/mapmenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.5/src/mapmenu.h -------------------------------------------------------------------------------- /freesynd/tags/release-0.5/src/mapobject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.5/src/mapobject.cpp -------------------------------------------------------------------------------- /freesynd/tags/release-0.5/src/mapobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.5/src/mapobject.h -------------------------------------------------------------------------------- /freesynd/tags/release-0.5/src/menu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.5/src/menu.cpp -------------------------------------------------------------------------------- /freesynd/tags/release-0.5/src/menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.5/src/menu.h -------------------------------------------------------------------------------- /freesynd/tags/release-0.5/src/menumanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.5/src/menumanager.h -------------------------------------------------------------------------------- /freesynd/tags/release-0.5/src/mission.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.5/src/mission.cpp -------------------------------------------------------------------------------- /freesynd/tags/release-0.5/src/mission.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.5/src/mission.h -------------------------------------------------------------------------------- /freesynd/tags/release-0.5/src/mod.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.5/src/mod.cpp -------------------------------------------------------------------------------- /freesynd/tags/release-0.5/src/mod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.5/src/mod.h -------------------------------------------------------------------------------- /freesynd/tags/release-0.5/src/modmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.5/src/modmanager.h -------------------------------------------------------------------------------- /freesynd/tags/release-0.5/src/path.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.5/src/path.h -------------------------------------------------------------------------------- /freesynd/tags/release-0.5/src/ped.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.5/src/ped.cpp -------------------------------------------------------------------------------- /freesynd/tags/release-0.5/src/ped.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.5/src/ped.h -------------------------------------------------------------------------------- /freesynd/tags/release-0.5/src/pedmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.5/src/pedmanager.h -------------------------------------------------------------------------------- /freesynd/tags/release-0.5/src/selectmenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.5/src/selectmenu.h -------------------------------------------------------------------------------- /freesynd/tags/release-0.5/src/sound/audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.5/src/sound/audio.h -------------------------------------------------------------------------------- /freesynd/tags/release-0.5/src/sound/music.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.5/src/sound/music.h -------------------------------------------------------------------------------- /freesynd/tags/release-0.5/src/sound/sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.5/src/sound/sound.h -------------------------------------------------------------------------------- /freesynd/tags/release-0.5/src/sound/xmidi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.5/src/sound/xmidi.h -------------------------------------------------------------------------------- /freesynd/tags/release-0.5/src/system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.5/src/system.h -------------------------------------------------------------------------------- /freesynd/tags/release-0.5/src/system_sdl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.5/src/system_sdl.h -------------------------------------------------------------------------------- /freesynd/tags/release-0.5/src/utils/dernc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.5/src/utils/dernc.h -------------------------------------------------------------------------------- /freesynd/tags/release-0.5/src/utils/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.5/src/utils/file.h -------------------------------------------------------------------------------- /freesynd/tags/release-0.5/src/utils/log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.5/src/utils/log.cpp -------------------------------------------------------------------------------- /freesynd/tags/release-0.5/src/utils/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.5/src/utils/log.h -------------------------------------------------------------------------------- /freesynd/tags/release-0.5/src/vehicle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.5/src/vehicle.cpp -------------------------------------------------------------------------------- /freesynd/tags/release-0.5/src/vehicle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.5/src/vehicle.h -------------------------------------------------------------------------------- /freesynd/tags/release-0.5/src/weapon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.5/src/weapon.cpp -------------------------------------------------------------------------------- /freesynd/tags/release-0.5/src/weapon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.5/src/weapon.h -------------------------------------------------------------------------------- /freesynd/tags/release-0.6/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.6/AUTHORS -------------------------------------------------------------------------------- /freesynd/tags/release-0.6/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.6/CMakeLists.txt -------------------------------------------------------------------------------- /freesynd/tags/release-0.6/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.6/COPYING -------------------------------------------------------------------------------- /freesynd/tags/release-0.6/ChangeLog: -------------------------------------------------------------------------------- 1 | See NEWS files for release changes. 2 | -------------------------------------------------------------------------------- /freesynd/tags/release-0.6/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.6/INSTALL -------------------------------------------------------------------------------- /freesynd/tags/release-0.6/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.6/NEWS -------------------------------------------------------------------------------- /freesynd/tags/release-0.6/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.6/README -------------------------------------------------------------------------------- /freesynd/tags/release-0.6/TODO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.6/TODO.txt -------------------------------------------------------------------------------- /freesynd/tags/release-0.6/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.6/configure -------------------------------------------------------------------------------- /freesynd/tags/release-0.6/freesynd.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.6/freesynd.ini -------------------------------------------------------------------------------- /freesynd/tags/release-0.6/icon/sword.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.6/icon/sword.icns -------------------------------------------------------------------------------- /freesynd/tags/release-0.6/icon/sword.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.6/icon/sword.ico -------------------------------------------------------------------------------- /freesynd/tags/release-0.6/icon/sword.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.6/icon/sword.png -------------------------------------------------------------------------------- /freesynd/tags/release-0.6/src/SDLMain.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.6/src/SDLMain.m -------------------------------------------------------------------------------- /freesynd/tags/release-0.6/src/agent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.6/src/agent.cpp -------------------------------------------------------------------------------- /freesynd/tags/release-0.6/src/agent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.6/src/agent.h -------------------------------------------------------------------------------- /freesynd/tags/release-0.6/src/app.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.6/src/app.cpp -------------------------------------------------------------------------------- /freesynd/tags/release-0.6/src/app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.6/src/app.h -------------------------------------------------------------------------------- /freesynd/tags/release-0.6/src/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.6/src/common.h -------------------------------------------------------------------------------- /freesynd/tags/release-0.6/src/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.6/src/config.h -------------------------------------------------------------------------------- /freesynd/tags/release-0.6/src/cp437.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.6/src/cp437.h -------------------------------------------------------------------------------- /freesynd/tags/release-0.6/src/doxygen.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.6/src/doxygen.conf -------------------------------------------------------------------------------- /freesynd/tags/release-0.6/src/dump.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.6/src/dump.cpp -------------------------------------------------------------------------------- /freesynd/tags/release-0.6/src/freesynd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.6/src/freesynd.cpp -------------------------------------------------------------------------------- /freesynd/tags/release-0.6/src/gfx/font.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.6/src/gfx/font.cpp -------------------------------------------------------------------------------- /freesynd/tags/release-0.6/src/gfx/font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.6/src/gfx/font.h -------------------------------------------------------------------------------- /freesynd/tags/release-0.6/src/gfx/screen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.6/src/gfx/screen.h -------------------------------------------------------------------------------- /freesynd/tags/release-0.6/src/gfx/sprite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.6/src/gfx/sprite.h -------------------------------------------------------------------------------- /freesynd/tags/release-0.6/src/gfx/tile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.6/src/gfx/tile.cpp -------------------------------------------------------------------------------- /freesynd/tags/release-0.6/src/gfx/tile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.6/src/gfx/tile.h -------------------------------------------------------------------------------- /freesynd/tags/release-0.6/src/keys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.6/src/keys.h -------------------------------------------------------------------------------- /freesynd/tags/release-0.6/src/map.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.6/src/map.cpp -------------------------------------------------------------------------------- /freesynd/tags/release-0.6/src/map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.6/src/map.h -------------------------------------------------------------------------------- /freesynd/tags/release-0.6/src/mapmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.6/src/mapmanager.h -------------------------------------------------------------------------------- /freesynd/tags/release-0.6/src/mapobject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.6/src/mapobject.cpp -------------------------------------------------------------------------------- /freesynd/tags/release-0.6/src/mapobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.6/src/mapobject.h -------------------------------------------------------------------------------- /freesynd/tags/release-0.6/src/menus/menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.6/src/menus/menu.h -------------------------------------------------------------------------------- /freesynd/tags/release-0.6/src/mission.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.6/src/mission.cpp -------------------------------------------------------------------------------- /freesynd/tags/release-0.6/src/mission.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.6/src/mission.h -------------------------------------------------------------------------------- /freesynd/tags/release-0.6/src/mod.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.6/src/mod.cpp -------------------------------------------------------------------------------- /freesynd/tags/release-0.6/src/mod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.6/src/mod.h -------------------------------------------------------------------------------- /freesynd/tags/release-0.6/src/modmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.6/src/modmanager.h -------------------------------------------------------------------------------- /freesynd/tags/release-0.6/src/path.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.6/src/path.h -------------------------------------------------------------------------------- /freesynd/tags/release-0.6/src/ped.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.6/src/ped.cpp -------------------------------------------------------------------------------- /freesynd/tags/release-0.6/src/ped.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.6/src/ped.h -------------------------------------------------------------------------------- /freesynd/tags/release-0.6/src/pedmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.6/src/pedmanager.h -------------------------------------------------------------------------------- /freesynd/tags/release-0.6/src/resources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.6/src/resources.h -------------------------------------------------------------------------------- /freesynd/tags/release-0.6/src/sound/audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.6/src/sound/audio.h -------------------------------------------------------------------------------- /freesynd/tags/release-0.6/src/sound/music.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.6/src/sound/music.h -------------------------------------------------------------------------------- /freesynd/tags/release-0.6/src/sound/sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.6/src/sound/sound.h -------------------------------------------------------------------------------- /freesynd/tags/release-0.6/src/sound/xmidi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.6/src/sound/xmidi.h -------------------------------------------------------------------------------- /freesynd/tags/release-0.6/src/system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.6/src/system.h -------------------------------------------------------------------------------- /freesynd/tags/release-0.6/src/system_sdl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.6/src/system_sdl.h -------------------------------------------------------------------------------- /freesynd/tags/release-0.6/src/tools/embed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.6/src/tools/embed.c -------------------------------------------------------------------------------- /freesynd/tags/release-0.6/src/utils/dernc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.6/src/utils/dernc.h -------------------------------------------------------------------------------- /freesynd/tags/release-0.6/src/utils/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.6/src/utils/file.h -------------------------------------------------------------------------------- /freesynd/tags/release-0.6/src/utils/log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.6/src/utils/log.cpp -------------------------------------------------------------------------------- /freesynd/tags/release-0.6/src/utils/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.6/src/utils/log.h -------------------------------------------------------------------------------- /freesynd/tags/release-0.6/src/utils/utf8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.6/src/utils/utf8.h -------------------------------------------------------------------------------- /freesynd/tags/release-0.6/src/vehicle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.6/src/vehicle.cpp -------------------------------------------------------------------------------- /freesynd/tags/release-0.6/src/vehicle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.6/src/vehicle.h -------------------------------------------------------------------------------- /freesynd/tags/release-0.6/src/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.6/src/version.h -------------------------------------------------------------------------------- /freesynd/tags/release-0.6/src/weapon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.6/src/weapon.cpp -------------------------------------------------------------------------------- /freesynd/tags/release-0.6/src/weapon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.6/src/weapon.h -------------------------------------------------------------------------------- /freesynd/tags/release-0.7.1/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.7.1/AUTHORS -------------------------------------------------------------------------------- /freesynd/tags/release-0.7.1/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.7.1/CMakeLists.txt -------------------------------------------------------------------------------- /freesynd/tags/release-0.7.1/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.7.1/COPYING -------------------------------------------------------------------------------- /freesynd/tags/release-0.7.1/ChangeLog: -------------------------------------------------------------------------------- 1 | See NEWS files for release changes. 2 | -------------------------------------------------------------------------------- /freesynd/tags/release-0.7.1/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.7.1/INSTALL -------------------------------------------------------------------------------- /freesynd/tags/release-0.7.1/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.7.1/NEWS -------------------------------------------------------------------------------- /freesynd/tags/release-0.7.1/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.7.1/README -------------------------------------------------------------------------------- /freesynd/tags/release-0.7.1/TODO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.7.1/TODO.txt -------------------------------------------------------------------------------- /freesynd/tags/release-0.7.1/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.7.1/configure -------------------------------------------------------------------------------- /freesynd/tags/release-0.7.1/freesynd.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.7.1/freesynd.ini -------------------------------------------------------------------------------- /freesynd/tags/release-0.7.1/icon/sword.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.7.1/icon/sword.icns -------------------------------------------------------------------------------- /freesynd/tags/release-0.7.1/icon/sword.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.7.1/icon/sword.ico -------------------------------------------------------------------------------- /freesynd/tags/release-0.7.1/icon/sword.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.7.1/icon/sword.png -------------------------------------------------------------------------------- /freesynd/tags/release-0.7.1/src/SDLMain.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.7.1/src/SDLMain.m -------------------------------------------------------------------------------- /freesynd/tags/release-0.7.1/src/agent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.7.1/src/agent.cpp -------------------------------------------------------------------------------- /freesynd/tags/release-0.7.1/src/agent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.7.1/src/agent.h -------------------------------------------------------------------------------- /freesynd/tags/release-0.7.1/src/app.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.7.1/src/app.cpp -------------------------------------------------------------------------------- /freesynd/tags/release-0.7.1/src/app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.7.1/src/app.h -------------------------------------------------------------------------------- /freesynd/tags/release-0.7.1/src/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.7.1/src/common.h -------------------------------------------------------------------------------- /freesynd/tags/release-0.7.1/src/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.7.1/src/config.h -------------------------------------------------------------------------------- /freesynd/tags/release-0.7.1/src/cp437.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.7.1/src/cp437.h -------------------------------------------------------------------------------- /freesynd/tags/release-0.7.1/src/dump.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.7.1/src/dump.cpp -------------------------------------------------------------------------------- /freesynd/tags/release-0.7.1/src/gfx/font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.7.1/src/gfx/font.h -------------------------------------------------------------------------------- /freesynd/tags/release-0.7.1/src/gfx/tile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.7.1/src/gfx/tile.h -------------------------------------------------------------------------------- /freesynd/tags/release-0.7.1/src/ipastim.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.7.1/src/ipastim.cpp -------------------------------------------------------------------------------- /freesynd/tags/release-0.7.1/src/ipastim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.7.1/src/ipastim.h -------------------------------------------------------------------------------- /freesynd/tags/release-0.7.1/src/keys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.7.1/src/keys.h -------------------------------------------------------------------------------- /freesynd/tags/release-0.7.1/src/map.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.7.1/src/map.cpp -------------------------------------------------------------------------------- /freesynd/tags/release-0.7.1/src/map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.7.1/src/map.h -------------------------------------------------------------------------------- /freesynd/tags/release-0.7.1/src/mapobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.7.1/src/mapobject.h -------------------------------------------------------------------------------- /freesynd/tags/release-0.7.1/src/mission.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.7.1/src/mission.cpp -------------------------------------------------------------------------------- /freesynd/tags/release-0.7.1/src/mission.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.7.1/src/mission.h -------------------------------------------------------------------------------- /freesynd/tags/release-0.7.1/src/mod.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.7.1/src/mod.cpp -------------------------------------------------------------------------------- /freesynd/tags/release-0.7.1/src/mod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.7.1/src/mod.h -------------------------------------------------------------------------------- /freesynd/tags/release-0.7.1/src/modowner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.7.1/src/modowner.h -------------------------------------------------------------------------------- /freesynd/tags/release-0.7.1/src/path.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.7.1/src/path.h -------------------------------------------------------------------------------- /freesynd/tags/release-0.7.1/src/ped.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.7.1/src/ped.cpp -------------------------------------------------------------------------------- /freesynd/tags/release-0.7.1/src/ped.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.7.1/src/ped.h -------------------------------------------------------------------------------- /freesynd/tags/release-0.7.1/src/resources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.7.1/src/resources.h -------------------------------------------------------------------------------- /freesynd/tags/release-0.7.1/src/system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.7.1/src/system.h -------------------------------------------------------------------------------- /freesynd/tags/release-0.7.1/src/utils/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.7.1/src/utils/log.h -------------------------------------------------------------------------------- /freesynd/tags/release-0.7.1/src/vehicle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.7.1/src/vehicle.cpp -------------------------------------------------------------------------------- /freesynd/tags/release-0.7.1/src/vehicle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.7.1/src/vehicle.h -------------------------------------------------------------------------------- /freesynd/tags/release-0.7.1/src/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.7.1/src/version.h -------------------------------------------------------------------------------- /freesynd/tags/release-0.7.1/src/weapon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.7.1/src/weapon.cpp -------------------------------------------------------------------------------- /freesynd/tags/release-0.7.1/src/weapon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.7.1/src/weapon.h -------------------------------------------------------------------------------- /freesynd/tags/release-0.7/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.7/AUTHORS -------------------------------------------------------------------------------- /freesynd/tags/release-0.7/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.7/CMakeLists.txt -------------------------------------------------------------------------------- /freesynd/tags/release-0.7/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.7/COPYING -------------------------------------------------------------------------------- /freesynd/tags/release-0.7/ChangeLog: -------------------------------------------------------------------------------- 1 | See NEWS files for release changes. 2 | -------------------------------------------------------------------------------- /freesynd/tags/release-0.7/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.7/INSTALL -------------------------------------------------------------------------------- /freesynd/tags/release-0.7/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.7/NEWS -------------------------------------------------------------------------------- /freesynd/tags/release-0.7/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.7/README -------------------------------------------------------------------------------- /freesynd/tags/release-0.7/TODO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.7/TODO.txt -------------------------------------------------------------------------------- /freesynd/tags/release-0.7/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.7/configure -------------------------------------------------------------------------------- /freesynd/tags/release-0.7/freesynd.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.7/freesynd.ini -------------------------------------------------------------------------------- /freesynd/tags/release-0.7/icon/sword.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.7/icon/sword.icns -------------------------------------------------------------------------------- /freesynd/tags/release-0.7/icon/sword.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.7/icon/sword.ico -------------------------------------------------------------------------------- /freesynd/tags/release-0.7/icon/sword.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.7/icon/sword.png -------------------------------------------------------------------------------- /freesynd/tags/release-0.7/src/SDLMain.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.7/src/SDLMain.m -------------------------------------------------------------------------------- /freesynd/tags/release-0.7/src/agent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.7/src/agent.cpp -------------------------------------------------------------------------------- /freesynd/tags/release-0.7/src/agent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.7/src/agent.h -------------------------------------------------------------------------------- /freesynd/tags/release-0.7/src/app.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.7/src/app.cpp -------------------------------------------------------------------------------- /freesynd/tags/release-0.7/src/app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.7/src/app.h -------------------------------------------------------------------------------- /freesynd/tags/release-0.7/src/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.7/src/common.h -------------------------------------------------------------------------------- /freesynd/tags/release-0.7/src/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.7/src/config.h -------------------------------------------------------------------------------- /freesynd/tags/release-0.7/src/core/squad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.7/src/core/squad.h -------------------------------------------------------------------------------- /freesynd/tags/release-0.7/src/cp437.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.7/src/cp437.h -------------------------------------------------------------------------------- /freesynd/tags/release-0.7/src/doxygen.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.7/src/doxygen.conf -------------------------------------------------------------------------------- /freesynd/tags/release-0.7/src/dump.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.7/src/dump.cpp -------------------------------------------------------------------------------- /freesynd/tags/release-0.7/src/freesynd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.7/src/freesynd.cpp -------------------------------------------------------------------------------- /freesynd/tags/release-0.7/src/gfx/font.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.7/src/gfx/font.cpp -------------------------------------------------------------------------------- /freesynd/tags/release-0.7/src/gfx/font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.7/src/gfx/font.h -------------------------------------------------------------------------------- /freesynd/tags/release-0.7/src/gfx/screen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.7/src/gfx/screen.h -------------------------------------------------------------------------------- /freesynd/tags/release-0.7/src/gfx/sprite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.7/src/gfx/sprite.h -------------------------------------------------------------------------------- /freesynd/tags/release-0.7/src/gfx/tile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.7/src/gfx/tile.cpp -------------------------------------------------------------------------------- /freesynd/tags/release-0.7/src/gfx/tile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.7/src/gfx/tile.h -------------------------------------------------------------------------------- /freesynd/tags/release-0.7/src/ipastim.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.7/src/ipastim.cpp -------------------------------------------------------------------------------- /freesynd/tags/release-0.7/src/ipastim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.7/src/ipastim.h -------------------------------------------------------------------------------- /freesynd/tags/release-0.7/src/keys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.7/src/keys.h -------------------------------------------------------------------------------- /freesynd/tags/release-0.7/src/map.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.7/src/map.cpp -------------------------------------------------------------------------------- /freesynd/tags/release-0.7/src/map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.7/src/map.h -------------------------------------------------------------------------------- /freesynd/tags/release-0.7/src/mapmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.7/src/mapmanager.h -------------------------------------------------------------------------------- /freesynd/tags/release-0.7/src/mapobject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.7/src/mapobject.cpp -------------------------------------------------------------------------------- /freesynd/tags/release-0.7/src/mapobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.7/src/mapobject.h -------------------------------------------------------------------------------- /freesynd/tags/release-0.7/src/menus/menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.7/src/menus/menu.h -------------------------------------------------------------------------------- /freesynd/tags/release-0.7/src/mission.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.7/src/mission.cpp -------------------------------------------------------------------------------- /freesynd/tags/release-0.7/src/mission.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.7/src/mission.h -------------------------------------------------------------------------------- /freesynd/tags/release-0.7/src/mod.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.7/src/mod.cpp -------------------------------------------------------------------------------- /freesynd/tags/release-0.7/src/mod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.7/src/mod.h -------------------------------------------------------------------------------- /freesynd/tags/release-0.7/src/modmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.7/src/modmanager.h -------------------------------------------------------------------------------- /freesynd/tags/release-0.7/src/modowner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.7/src/modowner.h -------------------------------------------------------------------------------- /freesynd/tags/release-0.7/src/path.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.7/src/path.h -------------------------------------------------------------------------------- /freesynd/tags/release-0.7/src/ped.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.7/src/ped.cpp -------------------------------------------------------------------------------- /freesynd/tags/release-0.7/src/ped.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.7/src/ped.h -------------------------------------------------------------------------------- /freesynd/tags/release-0.7/src/pedmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.7/src/pedmanager.h -------------------------------------------------------------------------------- /freesynd/tags/release-0.7/src/resources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.7/src/resources.h -------------------------------------------------------------------------------- /freesynd/tags/release-0.7/src/sound/audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.7/src/sound/audio.h -------------------------------------------------------------------------------- /freesynd/tags/release-0.7/src/sound/music.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.7/src/sound/music.h -------------------------------------------------------------------------------- /freesynd/tags/release-0.7/src/sound/sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.7/src/sound/sound.h -------------------------------------------------------------------------------- /freesynd/tags/release-0.7/src/sound/xmidi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.7/src/sound/xmidi.h -------------------------------------------------------------------------------- /freesynd/tags/release-0.7/src/system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.7/src/system.h -------------------------------------------------------------------------------- /freesynd/tags/release-0.7/src/system_sdl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.7/src/system_sdl.h -------------------------------------------------------------------------------- /freesynd/tags/release-0.7/src/tools/embed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.7/src/tools/embed.c -------------------------------------------------------------------------------- /freesynd/tags/release-0.7/src/utils/dernc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.7/src/utils/dernc.h -------------------------------------------------------------------------------- /freesynd/tags/release-0.7/src/utils/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.7/src/utils/file.h -------------------------------------------------------------------------------- /freesynd/tags/release-0.7/src/utils/log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.7/src/utils/log.cpp -------------------------------------------------------------------------------- /freesynd/tags/release-0.7/src/utils/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.7/src/utils/log.h -------------------------------------------------------------------------------- /freesynd/tags/release-0.7/src/utils/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.7/src/utils/timer.h -------------------------------------------------------------------------------- /freesynd/tags/release-0.7/src/utils/utf8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.7/src/utils/utf8.h -------------------------------------------------------------------------------- /freesynd/tags/release-0.7/src/vehicle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.7/src/vehicle.cpp -------------------------------------------------------------------------------- /freesynd/tags/release-0.7/src/vehicle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.7/src/vehicle.h -------------------------------------------------------------------------------- /freesynd/tags/release-0.7/src/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.7/src/version.h -------------------------------------------------------------------------------- /freesynd/tags/release-0.7/src/weapon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.7/src/weapon.cpp -------------------------------------------------------------------------------- /freesynd/tags/release-0.7/src/weapon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/tags/release-0.7/src/weapon.h -------------------------------------------------------------------------------- /freesynd/trunk/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/AUTHORS -------------------------------------------------------------------------------- /freesynd/trunk/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/CMakeLists.txt -------------------------------------------------------------------------------- /freesynd/trunk/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/COPYING -------------------------------------------------------------------------------- /freesynd/trunk/ChangeLog: -------------------------------------------------------------------------------- 1 | See NEWS files for release changes. 2 | -------------------------------------------------------------------------------- /freesynd/trunk/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/INSTALL -------------------------------------------------------------------------------- /freesynd/trunk/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/NEWS -------------------------------------------------------------------------------- /freesynd/trunk/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/README -------------------------------------------------------------------------------- /freesynd/trunk/TODO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/TODO.txt -------------------------------------------------------------------------------- /freesynd/trunk/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/configure -------------------------------------------------------------------------------- /freesynd/trunk/data/cursors/cursors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/data/cursors/cursors.png -------------------------------------------------------------------------------- /freesynd/trunk/data/lang/english.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/data/lang/english.lng -------------------------------------------------------------------------------- /freesynd/trunk/data/lang/french.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/data/lang/french.lng -------------------------------------------------------------------------------- /freesynd/trunk/data/lang/german.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/data/lang/german.lng -------------------------------------------------------------------------------- /freesynd/trunk/data/lang/italian.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/data/lang/italian.lng -------------------------------------------------------------------------------- /freesynd/trunk/data/music/assassinate.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/data/music/assassinate.ogg -------------------------------------------------------------------------------- /freesynd/trunk/data/music/intro.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/data/music/intro.ogg -------------------------------------------------------------------------------- /freesynd/trunk/data/ref/original_data.crc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/data/ref/original_data.crc -------------------------------------------------------------------------------- /freesynd/trunk/data/ref/research.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/data/ref/research.dat -------------------------------------------------------------------------------- /freesynd/trunk/data/ref/weapons.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/data/ref/weapons.dat -------------------------------------------------------------------------------- /freesynd/trunk/docs/freesynd.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/docs/freesynd.6 -------------------------------------------------------------------------------- /freesynd/trunk/freesynd.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/freesynd.ini -------------------------------------------------------------------------------- /freesynd/trunk/icon/sword.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/icon/sword.icns -------------------------------------------------------------------------------- /freesynd/trunk/icon/sword.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/icon/sword.ico -------------------------------------------------------------------------------- /freesynd/trunk/icon/sword.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/icon/sword.png -------------------------------------------------------------------------------- /freesynd/trunk/src/CHARLIMITS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/src/CHARLIMITS.txt -------------------------------------------------------------------------------- /freesynd/trunk/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/src/CMakeLists.txt -------------------------------------------------------------------------------- /freesynd/trunk/src/SDLMain.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/src/SDLMain.m -------------------------------------------------------------------------------- /freesynd/trunk/src/agent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/src/agent.cpp -------------------------------------------------------------------------------- /freesynd/trunk/src/agent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/src/agent.h -------------------------------------------------------------------------------- /freesynd/trunk/src/agentmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/src/agentmanager.cpp -------------------------------------------------------------------------------- /freesynd/trunk/src/agentmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/src/agentmanager.h -------------------------------------------------------------------------------- /freesynd/trunk/src/app.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/src/app.cpp -------------------------------------------------------------------------------- /freesynd/trunk/src/app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/src/app.h -------------------------------------------------------------------------------- /freesynd/trunk/src/appcontext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/src/appcontext.cpp -------------------------------------------------------------------------------- /freesynd/trunk/src/appcontext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/src/appcontext.h -------------------------------------------------------------------------------- /freesynd/trunk/src/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/src/common.h -------------------------------------------------------------------------------- /freesynd/trunk/src/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/src/config.h -------------------------------------------------------------------------------- /freesynd/trunk/src/core/actions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/src/core/actions.h -------------------------------------------------------------------------------- /freesynd/trunk/src/core/gamecontroller.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/src/core/gamecontroller.cpp -------------------------------------------------------------------------------- /freesynd/trunk/src/core/gamecontroller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/src/core/gamecontroller.h -------------------------------------------------------------------------------- /freesynd/trunk/src/core/gameevent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/src/core/gameevent.h -------------------------------------------------------------------------------- /freesynd/trunk/src/core/gamesession.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/src/core/gamesession.cpp -------------------------------------------------------------------------------- /freesynd/trunk/src/core/gamesession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/src/core/gamesession.h -------------------------------------------------------------------------------- /freesynd/trunk/src/core/missionbriefing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/src/core/missionbriefing.cpp -------------------------------------------------------------------------------- /freesynd/trunk/src/core/missionbriefing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/src/core/missionbriefing.h -------------------------------------------------------------------------------- /freesynd/trunk/src/core/research.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/src/core/research.cpp -------------------------------------------------------------------------------- /freesynd/trunk/src/core/research.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/src/core/research.h -------------------------------------------------------------------------------- /freesynd/trunk/src/core/researchmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/src/core/researchmanager.cpp -------------------------------------------------------------------------------- /freesynd/trunk/src/core/researchmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/src/core/researchmanager.h -------------------------------------------------------------------------------- /freesynd/trunk/src/core/squad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/src/core/squad.cpp -------------------------------------------------------------------------------- /freesynd/trunk/src/core/squad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/src/core/squad.h -------------------------------------------------------------------------------- /freesynd/trunk/src/cp437.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/src/cp437.h -------------------------------------------------------------------------------- /freesynd/trunk/src/doxygen.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/src/doxygen.conf -------------------------------------------------------------------------------- /freesynd/trunk/src/dump.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/src/dump.cpp -------------------------------------------------------------------------------- /freesynd/trunk/src/editor/animmenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/src/editor/animmenu.cpp -------------------------------------------------------------------------------- /freesynd/trunk/src/editor/animmenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/src/editor/animmenu.h -------------------------------------------------------------------------------- /freesynd/trunk/src/editor/editorapp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/src/editor/editorapp.cpp -------------------------------------------------------------------------------- /freesynd/trunk/src/editor/editorapp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/src/editor/editorapp.h -------------------------------------------------------------------------------- /freesynd/trunk/src/editor/editormenuid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/src/editor/editormenuid.h -------------------------------------------------------------------------------- /freesynd/trunk/src/editor/fontmenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/src/editor/fontmenu.cpp -------------------------------------------------------------------------------- /freesynd/trunk/src/editor/fontmenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/src/editor/fontmenu.h -------------------------------------------------------------------------------- /freesynd/trunk/src/editor/gfxmenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/src/editor/gfxmenu.cpp -------------------------------------------------------------------------------- /freesynd/trunk/src/editor/gfxmenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/src/editor/gfxmenu.h -------------------------------------------------------------------------------- /freesynd/trunk/src/editor/logoutmenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/src/editor/logoutmenu.cpp -------------------------------------------------------------------------------- /freesynd/trunk/src/editor/logoutmenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/src/editor/logoutmenu.h -------------------------------------------------------------------------------- /freesynd/trunk/src/editor/mainmenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/src/editor/mainmenu.cpp -------------------------------------------------------------------------------- /freesynd/trunk/src/editor/mainmenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/src/editor/mainmenu.h -------------------------------------------------------------------------------- /freesynd/trunk/src/freesynd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/src/freesynd.cpp -------------------------------------------------------------------------------- /freesynd/trunk/src/gfx/dirtylist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/src/gfx/dirtylist.cpp -------------------------------------------------------------------------------- /freesynd/trunk/src/gfx/dirtylist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/src/gfx/dirtylist.h -------------------------------------------------------------------------------- /freesynd/trunk/src/gfx/fliplayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/src/gfx/fliplayer.cpp -------------------------------------------------------------------------------- /freesynd/trunk/src/gfx/fliplayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/src/gfx/fliplayer.h -------------------------------------------------------------------------------- /freesynd/trunk/src/gfx/font.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/src/gfx/font.cpp -------------------------------------------------------------------------------- /freesynd/trunk/src/gfx/font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/src/gfx/font.h -------------------------------------------------------------------------------- /freesynd/trunk/src/gfx/fontmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/src/gfx/fontmanager.cpp -------------------------------------------------------------------------------- /freesynd/trunk/src/gfx/fontmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/src/gfx/fontmanager.h -------------------------------------------------------------------------------- /freesynd/trunk/src/gfx/screen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/src/gfx/screen.cpp -------------------------------------------------------------------------------- /freesynd/trunk/src/gfx/screen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/src/gfx/screen.h -------------------------------------------------------------------------------- /freesynd/trunk/src/gfx/sprite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/src/gfx/sprite.cpp -------------------------------------------------------------------------------- /freesynd/trunk/src/gfx/sprite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/src/gfx/sprite.h -------------------------------------------------------------------------------- /freesynd/trunk/src/gfx/spritemanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/src/gfx/spritemanager.cpp -------------------------------------------------------------------------------- /freesynd/trunk/src/gfx/spritemanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/src/gfx/spritemanager.h -------------------------------------------------------------------------------- /freesynd/trunk/src/gfx/tile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/src/gfx/tile.cpp -------------------------------------------------------------------------------- /freesynd/trunk/src/gfx/tile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/src/gfx/tile.h -------------------------------------------------------------------------------- /freesynd/trunk/src/gfx/tilemanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/src/gfx/tilemanager.cpp -------------------------------------------------------------------------------- /freesynd/trunk/src/gfx/tilemanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/src/gfx/tilemanager.h -------------------------------------------------------------------------------- /freesynd/trunk/src/ipastim.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/src/ipastim.cpp -------------------------------------------------------------------------------- /freesynd/trunk/src/ipastim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/src/ipastim.h -------------------------------------------------------------------------------- /freesynd/trunk/src/keys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/src/keys.h -------------------------------------------------------------------------------- /freesynd/trunk/src/map.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/src/map.cpp -------------------------------------------------------------------------------- /freesynd/trunk/src/map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/src/map.h -------------------------------------------------------------------------------- /freesynd/trunk/src/mapmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/src/mapmanager.cpp -------------------------------------------------------------------------------- /freesynd/trunk/src/mapmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/src/mapmanager.h -------------------------------------------------------------------------------- /freesynd/trunk/src/mapobject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/src/mapobject.cpp -------------------------------------------------------------------------------- /freesynd/trunk/src/mapobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/src/mapobject.h -------------------------------------------------------------------------------- /freesynd/trunk/src/menus/briefmenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/src/menus/briefmenu.cpp -------------------------------------------------------------------------------- /freesynd/trunk/src/menus/briefmenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/src/menus/briefmenu.h -------------------------------------------------------------------------------- /freesynd/trunk/src/menus/confmenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/src/menus/confmenu.cpp -------------------------------------------------------------------------------- /freesynd/trunk/src/menus/confmenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/src/menus/confmenu.h -------------------------------------------------------------------------------- /freesynd/trunk/src/menus/debriefmenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/src/menus/debriefmenu.cpp -------------------------------------------------------------------------------- /freesynd/trunk/src/menus/debriefmenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/src/menus/debriefmenu.h -------------------------------------------------------------------------------- /freesynd/trunk/src/menus/flimenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/src/menus/flimenu.cpp -------------------------------------------------------------------------------- /freesynd/trunk/src/menus/flimenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/src/menus/flimenu.h -------------------------------------------------------------------------------- /freesynd/trunk/src/menus/gamemenufactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/src/menus/gamemenufactory.h -------------------------------------------------------------------------------- /freesynd/trunk/src/menus/gamemenuid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/src/menus/gamemenuid.h -------------------------------------------------------------------------------- /freesynd/trunk/src/menus/gameplaymenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/src/menus/gameplaymenu.cpp -------------------------------------------------------------------------------- /freesynd/trunk/src/menus/gameplaymenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/src/menus/gameplaymenu.h -------------------------------------------------------------------------------- /freesynd/trunk/src/menus/loadingmenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/src/menus/loadingmenu.cpp -------------------------------------------------------------------------------- /freesynd/trunk/src/menus/loadingmenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/src/menus/loadingmenu.h -------------------------------------------------------------------------------- /freesynd/trunk/src/menus/loadsavemenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/src/menus/loadsavemenu.cpp -------------------------------------------------------------------------------- /freesynd/trunk/src/menus/loadsavemenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/src/menus/loadsavemenu.h -------------------------------------------------------------------------------- /freesynd/trunk/src/menus/logoutmenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/src/menus/logoutmenu.cpp -------------------------------------------------------------------------------- /freesynd/trunk/src/menus/logoutmenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/src/menus/logoutmenu.h -------------------------------------------------------------------------------- /freesynd/trunk/src/menus/mainmenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/src/menus/mainmenu.cpp -------------------------------------------------------------------------------- /freesynd/trunk/src/menus/mainmenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/src/menus/mainmenu.h -------------------------------------------------------------------------------- /freesynd/trunk/src/menus/mapmenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/src/menus/mapmenu.cpp -------------------------------------------------------------------------------- /freesynd/trunk/src/menus/mapmenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/src/menus/mapmenu.h -------------------------------------------------------------------------------- /freesynd/trunk/src/menus/maprenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/src/menus/maprenderer.cpp -------------------------------------------------------------------------------- /freesynd/trunk/src/menus/maprenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/src/menus/maprenderer.h -------------------------------------------------------------------------------- /freesynd/trunk/src/menus/menu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/src/menus/menu.cpp -------------------------------------------------------------------------------- /freesynd/trunk/src/menus/menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/src/menus/menu.h -------------------------------------------------------------------------------- /freesynd/trunk/src/menus/menumanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/src/menus/menumanager.cpp -------------------------------------------------------------------------------- /freesynd/trunk/src/menus/menumanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/src/menus/menumanager.h -------------------------------------------------------------------------------- /freesynd/trunk/src/menus/minimaprenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/src/menus/minimaprenderer.h -------------------------------------------------------------------------------- /freesynd/trunk/src/menus/researchmenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/src/menus/researchmenu.cpp -------------------------------------------------------------------------------- /freesynd/trunk/src/menus/researchmenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/src/menus/researchmenu.h -------------------------------------------------------------------------------- /freesynd/trunk/src/menus/selectmenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/src/menus/selectmenu.cpp -------------------------------------------------------------------------------- /freesynd/trunk/src/menus/selectmenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/src/menus/selectmenu.h -------------------------------------------------------------------------------- /freesynd/trunk/src/menus/squadselection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/src/menus/squadselection.cpp -------------------------------------------------------------------------------- /freesynd/trunk/src/menus/squadselection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/src/menus/squadselection.h -------------------------------------------------------------------------------- /freesynd/trunk/src/menus/widget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/src/menus/widget.cpp -------------------------------------------------------------------------------- /freesynd/trunk/src/menus/widget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/src/menus/widget.h -------------------------------------------------------------------------------- /freesynd/trunk/src/mission.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/src/mission.cpp -------------------------------------------------------------------------------- /freesynd/trunk/src/mission.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/src/mission.h -------------------------------------------------------------------------------- /freesynd/trunk/src/missionmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/src/missionmanager.cpp -------------------------------------------------------------------------------- /freesynd/trunk/src/missionmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/src/missionmanager.h -------------------------------------------------------------------------------- /freesynd/trunk/src/mod.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/src/mod.cpp -------------------------------------------------------------------------------- /freesynd/trunk/src/mod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/src/mod.h -------------------------------------------------------------------------------- /freesynd/trunk/src/model/leveldata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/src/model/leveldata.h -------------------------------------------------------------------------------- /freesynd/trunk/src/model/objectivedesc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/src/model/objectivedesc.cpp -------------------------------------------------------------------------------- /freesynd/trunk/src/model/objectivedesc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/src/model/objectivedesc.h -------------------------------------------------------------------------------- /freesynd/trunk/src/model/weaponholder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/src/model/weaponholder.cpp -------------------------------------------------------------------------------- /freesynd/trunk/src/modmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/src/modmanager.cpp -------------------------------------------------------------------------------- /freesynd/trunk/src/modmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/src/modmanager.h -------------------------------------------------------------------------------- /freesynd/trunk/src/modowner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/src/modowner.h -------------------------------------------------------------------------------- /freesynd/trunk/src/path.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/src/path.h -------------------------------------------------------------------------------- /freesynd/trunk/src/pathsurfaces.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/src/pathsurfaces.h -------------------------------------------------------------------------------- /freesynd/trunk/src/ped.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/src/ped.cpp -------------------------------------------------------------------------------- /freesynd/trunk/src/ped.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/src/ped.h -------------------------------------------------------------------------------- /freesynd/trunk/src/pedactions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/src/pedactions.cpp -------------------------------------------------------------------------------- /freesynd/trunk/src/pedmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/src/pedmanager.cpp -------------------------------------------------------------------------------- /freesynd/trunk/src/pedmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/src/pedmanager.h -------------------------------------------------------------------------------- /freesynd/trunk/src/pedpathfinding.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/src/pedpathfinding.cpp -------------------------------------------------------------------------------- /freesynd/trunk/src/resources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/src/resources.h -------------------------------------------------------------------------------- /freesynd/trunk/src/sound/audio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/src/sound/audio.cpp -------------------------------------------------------------------------------- /freesynd/trunk/src/sound/audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/src/sound/audio.h -------------------------------------------------------------------------------- /freesynd/trunk/src/sound/music.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/src/sound/music.h -------------------------------------------------------------------------------- /freesynd/trunk/src/sound/musicmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/src/sound/musicmanager.cpp -------------------------------------------------------------------------------- /freesynd/trunk/src/sound/musicmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/src/sound/musicmanager.h -------------------------------------------------------------------------------- /freesynd/trunk/src/sound/sdlmixermusic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/src/sound/sdlmixermusic.cpp -------------------------------------------------------------------------------- /freesynd/trunk/src/sound/sdlmixermusic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/src/sound/sdlmixermusic.h -------------------------------------------------------------------------------- /freesynd/trunk/src/sound/sdlmixersound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/src/sound/sdlmixersound.cpp -------------------------------------------------------------------------------- /freesynd/trunk/src/sound/sdlmixersound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/src/sound/sdlmixersound.h -------------------------------------------------------------------------------- /freesynd/trunk/src/sound/sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/src/sound/sound.h -------------------------------------------------------------------------------- /freesynd/trunk/src/sound/soundmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/src/sound/soundmanager.cpp -------------------------------------------------------------------------------- /freesynd/trunk/src/sound/soundmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/src/sound/soundmanager.h -------------------------------------------------------------------------------- /freesynd/trunk/src/sound/xmidi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/src/sound/xmidi.cpp -------------------------------------------------------------------------------- /freesynd/trunk/src/sound/xmidi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/src/sound/xmidi.h -------------------------------------------------------------------------------- /freesynd/trunk/src/system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/src/system.h -------------------------------------------------------------------------------- /freesynd/trunk/src/system_sdl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/src/system_sdl.cpp -------------------------------------------------------------------------------- /freesynd/trunk/src/system_sdl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/src/system_sdl.h -------------------------------------------------------------------------------- /freesynd/trunk/src/tools/copy_but.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/src/tools/copy_but.cpp -------------------------------------------------------------------------------- /freesynd/trunk/src/tools/embed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/src/tools/embed.c -------------------------------------------------------------------------------- /freesynd/trunk/src/tools/embed.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/src/tools/embed.cmake -------------------------------------------------------------------------------- /freesynd/trunk/src/tools/include_libs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/src/tools/include_libs.sh -------------------------------------------------------------------------------- /freesynd/trunk/src/tools/osx.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/src/tools/osx.cmake -------------------------------------------------------------------------------- /freesynd/trunk/src/utils/ccrc32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/src/utils/ccrc32.cpp -------------------------------------------------------------------------------- /freesynd/trunk/src/utils/ccrc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/src/utils/ccrc32.h -------------------------------------------------------------------------------- /freesynd/trunk/src/utils/configfile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/src/utils/configfile.cpp -------------------------------------------------------------------------------- /freesynd/trunk/src/utils/configfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/src/utils/configfile.h -------------------------------------------------------------------------------- /freesynd/trunk/src/utils/dernc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/src/utils/dernc.cpp -------------------------------------------------------------------------------- /freesynd/trunk/src/utils/dernc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/src/utils/dernc.h -------------------------------------------------------------------------------- /freesynd/trunk/src/utils/file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/src/utils/file.cpp -------------------------------------------------------------------------------- /freesynd/trunk/src/utils/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/src/utils/file.h -------------------------------------------------------------------------------- /freesynd/trunk/src/utils/log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/src/utils/log.cpp -------------------------------------------------------------------------------- /freesynd/trunk/src/utils/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/src/utils/log.h -------------------------------------------------------------------------------- /freesynd/trunk/src/utils/portablefile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/src/utils/portablefile.cpp -------------------------------------------------------------------------------- /freesynd/trunk/src/utils/portablefile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/src/utils/portablefile.h -------------------------------------------------------------------------------- /freesynd/trunk/src/utils/seqmodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/src/utils/seqmodel.cpp -------------------------------------------------------------------------------- /freesynd/trunk/src/utils/seqmodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/src/utils/seqmodel.h -------------------------------------------------------------------------------- /freesynd/trunk/src/utils/singleton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/src/utils/singleton.h -------------------------------------------------------------------------------- /freesynd/trunk/src/utils/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/src/utils/timer.h -------------------------------------------------------------------------------- /freesynd/trunk/src/utils/utf8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/src/utils/utf8.h -------------------------------------------------------------------------------- /freesynd/trunk/src/utils/utf8/checked.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/src/utils/utf8/checked.h -------------------------------------------------------------------------------- /freesynd/trunk/src/utils/utf8/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/src/utils/utf8/core.h -------------------------------------------------------------------------------- /freesynd/trunk/src/utils/utf8/unchecked.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/src/utils/utf8/unchecked.h -------------------------------------------------------------------------------- /freesynd/trunk/src/vehicle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/src/vehicle.cpp -------------------------------------------------------------------------------- /freesynd/trunk/src/vehicle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/src/vehicle.h -------------------------------------------------------------------------------- /freesynd/trunk/src/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/src/version.h -------------------------------------------------------------------------------- /freesynd/trunk/src/weapon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/src/weapon.cpp -------------------------------------------------------------------------------- /freesynd/trunk/src/weapon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/src/weapon.h -------------------------------------------------------------------------------- /freesynd/trunk/src/weaponholder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/src/weaponholder.h -------------------------------------------------------------------------------- /freesynd/trunk/src/weaponmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/src/weaponmanager.cpp -------------------------------------------------------------------------------- /freesynd/trunk/src/weaponmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/freesynd/trunk/src/weaponmanager.h -------------------------------------------------------------------------------- /libs/MSVC/Contents.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/libs/MSVC/Contents.txt -------------------------------------------------------------------------------- /libs/MSVC/include/SDL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/libs/MSVC/include/SDL.h -------------------------------------------------------------------------------- /libs/MSVC/include/SDL_active.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/libs/MSVC/include/SDL_active.h -------------------------------------------------------------------------------- /libs/MSVC/include/SDL_audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/libs/MSVC/include/SDL_audio.h -------------------------------------------------------------------------------- /libs/MSVC/include/SDL_byteorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/libs/MSVC/include/SDL_byteorder.h -------------------------------------------------------------------------------- /libs/MSVC/include/SDL_cdrom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/libs/MSVC/include/SDL_cdrom.h -------------------------------------------------------------------------------- /libs/MSVC/include/SDL_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/libs/MSVC/include/SDL_config.h -------------------------------------------------------------------------------- /libs/MSVC/include/SDL_config_amiga.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/libs/MSVC/include/SDL_config_amiga.h -------------------------------------------------------------------------------- /libs/MSVC/include/SDL_config_dreamcast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/libs/MSVC/include/SDL_config_dreamcast.h -------------------------------------------------------------------------------- /libs/MSVC/include/SDL_config_macos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/libs/MSVC/include/SDL_config_macos.h -------------------------------------------------------------------------------- /libs/MSVC/include/SDL_config_macosx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/libs/MSVC/include/SDL_config_macosx.h -------------------------------------------------------------------------------- /libs/MSVC/include/SDL_config_minimal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/libs/MSVC/include/SDL_config_minimal.h -------------------------------------------------------------------------------- /libs/MSVC/include/SDL_config_nds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/libs/MSVC/include/SDL_config_nds.h -------------------------------------------------------------------------------- /libs/MSVC/include/SDL_config_os2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/libs/MSVC/include/SDL_config_os2.h -------------------------------------------------------------------------------- /libs/MSVC/include/SDL_config_symbian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/libs/MSVC/include/SDL_config_symbian.h -------------------------------------------------------------------------------- /libs/MSVC/include/SDL_config_win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/libs/MSVC/include/SDL_config_win32.h -------------------------------------------------------------------------------- /libs/MSVC/include/SDL_copying.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/libs/MSVC/include/SDL_copying.h -------------------------------------------------------------------------------- /libs/MSVC/include/SDL_cpuinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/libs/MSVC/include/SDL_cpuinfo.h -------------------------------------------------------------------------------- /libs/MSVC/include/SDL_endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/libs/MSVC/include/SDL_endian.h -------------------------------------------------------------------------------- /libs/MSVC/include/SDL_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/libs/MSVC/include/SDL_error.h -------------------------------------------------------------------------------- /libs/MSVC/include/SDL_events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/libs/MSVC/include/SDL_events.h -------------------------------------------------------------------------------- /libs/MSVC/include/SDL_getenv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/libs/MSVC/include/SDL_getenv.h -------------------------------------------------------------------------------- /libs/MSVC/include/SDL_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/libs/MSVC/include/SDL_image.h -------------------------------------------------------------------------------- /libs/MSVC/include/SDL_joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/libs/MSVC/include/SDL_joystick.h -------------------------------------------------------------------------------- /libs/MSVC/include/SDL_keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/libs/MSVC/include/SDL_keyboard.h -------------------------------------------------------------------------------- /libs/MSVC/include/SDL_keysym.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/libs/MSVC/include/SDL_keysym.h -------------------------------------------------------------------------------- /libs/MSVC/include/SDL_loadso.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/libs/MSVC/include/SDL_loadso.h -------------------------------------------------------------------------------- /libs/MSVC/include/SDL_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/libs/MSVC/include/SDL_main.h -------------------------------------------------------------------------------- /libs/MSVC/include/SDL_mixer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/libs/MSVC/include/SDL_mixer.h -------------------------------------------------------------------------------- /libs/MSVC/include/SDL_mouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/libs/MSVC/include/SDL_mouse.h -------------------------------------------------------------------------------- /libs/MSVC/include/SDL_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/libs/MSVC/include/SDL_mutex.h -------------------------------------------------------------------------------- /libs/MSVC/include/SDL_name.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/libs/MSVC/include/SDL_name.h -------------------------------------------------------------------------------- /libs/MSVC/include/SDL_opengl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/libs/MSVC/include/SDL_opengl.h -------------------------------------------------------------------------------- /libs/MSVC/include/SDL_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/libs/MSVC/include/SDL_platform.h -------------------------------------------------------------------------------- /libs/MSVC/include/SDL_quit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/libs/MSVC/include/SDL_quit.h -------------------------------------------------------------------------------- /libs/MSVC/include/SDL_rwops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/libs/MSVC/include/SDL_rwops.h -------------------------------------------------------------------------------- /libs/MSVC/include/SDL_stdinc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/libs/MSVC/include/SDL_stdinc.h -------------------------------------------------------------------------------- /libs/MSVC/include/SDL_syswm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/libs/MSVC/include/SDL_syswm.h -------------------------------------------------------------------------------- /libs/MSVC/include/SDL_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/libs/MSVC/include/SDL_thread.h -------------------------------------------------------------------------------- /libs/MSVC/include/SDL_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/libs/MSVC/include/SDL_timer.h -------------------------------------------------------------------------------- /libs/MSVC/include/SDL_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/libs/MSVC/include/SDL_types.h -------------------------------------------------------------------------------- /libs/MSVC/include/SDL_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/libs/MSVC/include/SDL_version.h -------------------------------------------------------------------------------- /libs/MSVC/include/SDL_video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/libs/MSVC/include/SDL_video.h -------------------------------------------------------------------------------- /libs/MSVC/include/begin_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/libs/MSVC/include/begin_code.h -------------------------------------------------------------------------------- /libs/MSVC/include/close_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/libs/MSVC/include/close_code.h -------------------------------------------------------------------------------- /libs/MSVC/include/png.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/libs/MSVC/include/png.h -------------------------------------------------------------------------------- /libs/MSVC/include/pngconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/libs/MSVC/include/pngconf.h -------------------------------------------------------------------------------- /libs/MSVC/include/pngpriv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/libs/MSVC/include/pngpriv.h -------------------------------------------------------------------------------- /libs/MSVC/include/zconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/libs/MSVC/include/zconf.h -------------------------------------------------------------------------------- /libs/MSVC/include/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/libs/MSVC/include/zlib.h -------------------------------------------------------------------------------- /libs/MSVC/lib/SDL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/libs/MSVC/lib/SDL.dll -------------------------------------------------------------------------------- /libs/MSVC/lib/SDL.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/libs/MSVC/lib/SDL.lib -------------------------------------------------------------------------------- /libs/MSVC/lib/SDL_image.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/libs/MSVC/lib/SDL_image.dll -------------------------------------------------------------------------------- /libs/MSVC/lib/SDL_image.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/libs/MSVC/lib/SDL_image.lib -------------------------------------------------------------------------------- /libs/MSVC/lib/SDL_mixer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/libs/MSVC/lib/SDL_mixer.dll -------------------------------------------------------------------------------- /libs/MSVC/lib/SDL_mixer.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/libs/MSVC/lib/SDL_mixer.lib -------------------------------------------------------------------------------- /libs/MSVC/lib/SDLmain.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/libs/MSVC/lib/SDLmain.lib -------------------------------------------------------------------------------- /libs/MSVC/lib/libogg-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/libs/MSVC/lib/libogg-0.dll -------------------------------------------------------------------------------- /libs/MSVC/lib/libpng.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/libs/MSVC/lib/libpng.lib -------------------------------------------------------------------------------- /libs/MSVC/lib/libpng14.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/libs/MSVC/lib/libpng14.dll -------------------------------------------------------------------------------- /libs/MSVC/lib/libvorbis-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/libs/MSVC/lib/libvorbis-0.dll -------------------------------------------------------------------------------- /libs/MSVC/lib/libvorbisfile-3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/libs/MSVC/lib/libvorbisfile-3.dll -------------------------------------------------------------------------------- /libs/MSVC/lib/zdll.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/libs/MSVC/lib/zdll.exp -------------------------------------------------------------------------------- /libs/MSVC/lib/zdll.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/libs/MSVC/lib/zdll.lib -------------------------------------------------------------------------------- /libs/MSVC/lib/zlib.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/libs/MSVC/lib/zlib.def -------------------------------------------------------------------------------- /libs/MSVC/lib/zlib1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/libs/MSVC/lib/zlib1.dll -------------------------------------------------------------------------------- /libs/MSVC/lib/zlibd.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/libs/MSVC/lib/zlibd.lib -------------------------------------------------------------------------------- /libsyndicate-0.13/COPYING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/libsyndicate-0.13/COPYING.txt -------------------------------------------------------------------------------- /libsyndicate-0.13/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/libsyndicate-0.13/Makefile.am -------------------------------------------------------------------------------- /libsyndicate-0.13/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/libsyndicate-0.13/Makefile.in -------------------------------------------------------------------------------- /libsyndicate-0.13/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/libsyndicate-0.13/README -------------------------------------------------------------------------------- /libsyndicate-0.13/Voc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/libsyndicate-0.13/Voc.txt -------------------------------------------------------------------------------- /libsyndicate-0.13/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/libsyndicate-0.13/aclocal.m4 -------------------------------------------------------------------------------- /libsyndicate-0.13/bootstrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/libsyndicate-0.13/bootstrap -------------------------------------------------------------------------------- /libsyndicate-0.13/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/libsyndicate-0.13/config.guess -------------------------------------------------------------------------------- /libsyndicate-0.13/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/libsyndicate-0.13/config.sub -------------------------------------------------------------------------------- /libsyndicate-0.13/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/libsyndicate-0.13/configure -------------------------------------------------------------------------------- /libsyndicate-0.13/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/libsyndicate-0.13/configure.ac -------------------------------------------------------------------------------- /libsyndicate-0.13/demo/Makefile.am: -------------------------------------------------------------------------------- 1 | maintainer-clean-local : 2 | -rm -f *~ 3 | 4 | SUBDIRS = opengl sdl 5 | -------------------------------------------------------------------------------- /libsyndicate-0.13/demo/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/libsyndicate-0.13/demo/Makefile.in -------------------------------------------------------------------------------- /libsyndicate-0.13/demo/opengl/Data.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/libsyndicate-0.13/demo/opengl/Data.cc -------------------------------------------------------------------------------- /libsyndicate-0.13/demo/opengl/Data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/libsyndicate-0.13/demo/opengl/Data.h -------------------------------------------------------------------------------- /libsyndicate-0.13/demo/opengl/Main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/libsyndicate-0.13/demo/opengl/Main.cc -------------------------------------------------------------------------------- /libsyndicate-0.13/demo/opengl/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/libsyndicate-0.13/demo/opengl/Makefile.am -------------------------------------------------------------------------------- /libsyndicate-0.13/demo/opengl/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/libsyndicate-0.13/demo/opengl/Makefile.in -------------------------------------------------------------------------------- /libsyndicate-0.13/demo/opengl/Sight.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/libsyndicate-0.13/demo/opengl/Sight.cc -------------------------------------------------------------------------------- /libsyndicate-0.13/demo/opengl/Sight.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/libsyndicate-0.13/demo/opengl/Sight.h -------------------------------------------------------------------------------- /libsyndicate-0.13/demo/opengl/Tiles.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/libsyndicate-0.13/demo/opengl/Tiles.cc -------------------------------------------------------------------------------- /libsyndicate-0.13/demo/opengl/Tiles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/libsyndicate-0.13/demo/opengl/Tiles.h -------------------------------------------------------------------------------- /libsyndicate-0.13/demo/opengl/gl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/libsyndicate-0.13/demo/opengl/gl.txt -------------------------------------------------------------------------------- /libsyndicate-0.13/demo/sdl/Game.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/libsyndicate-0.13/demo/sdl/Game.cc -------------------------------------------------------------------------------- /libsyndicate-0.13/demo/sdl/Game.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/libsyndicate-0.13/demo/sdl/Game.h -------------------------------------------------------------------------------- /libsyndicate-0.13/demo/sdl/Main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/libsyndicate-0.13/demo/sdl/Main.cc -------------------------------------------------------------------------------- /libsyndicate-0.13/demo/sdl/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/libsyndicate-0.13/demo/sdl/Makefile.am -------------------------------------------------------------------------------- /libsyndicate-0.13/demo/sdl/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/libsyndicate-0.13/demo/sdl/Makefile.in -------------------------------------------------------------------------------- /libsyndicate-0.13/demo/sdl/Sdl.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/libsyndicate-0.13/demo/sdl/Sdl.cc -------------------------------------------------------------------------------- /libsyndicate-0.13/demo/sdl/Sdl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/libsyndicate-0.13/demo/sdl/Sdl.h -------------------------------------------------------------------------------- /libsyndicate-0.13/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/libsyndicate-0.13/depcomp -------------------------------------------------------------------------------- /libsyndicate-0.13/doc/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/libsyndicate-0.13/doc/Makefile.am -------------------------------------------------------------------------------- /libsyndicate-0.13/doc/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/libsyndicate-0.13/doc/Makefile.in -------------------------------------------------------------------------------- /libsyndicate-0.13/doc/doxygen/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/libsyndicate-0.13/doc/doxygen/Doxyfile -------------------------------------------------------------------------------- /libsyndicate-0.13/doc/doxygen/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/libsyndicate-0.13/doc/doxygen/Makefile.am -------------------------------------------------------------------------------- /libsyndicate-0.13/doc/doxygen/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/libsyndicate-0.13/doc/doxygen/Makefile.in -------------------------------------------------------------------------------- /libsyndicate-0.13/doc/latex/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/libsyndicate-0.13/doc/latex/Makefile.am -------------------------------------------------------------------------------- /libsyndicate-0.13/doc/latex/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/libsyndicate-0.13/doc/latex/Makefile.in -------------------------------------------------------------------------------- /libsyndicate-0.13/example/Animation.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/libsyndicate-0.13/example/Animation.cc -------------------------------------------------------------------------------- /libsyndicate-0.13/example/Animation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/libsyndicate-0.13/example/Animation.h -------------------------------------------------------------------------------- /libsyndicate-0.13/example/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/libsyndicate-0.13/example/Makefile.am -------------------------------------------------------------------------------- /libsyndicate-0.13/example/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/libsyndicate-0.13/example/Makefile.in -------------------------------------------------------------------------------- /libsyndicate-0.13/example/Map.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/libsyndicate-0.13/example/Map.cc -------------------------------------------------------------------------------- /libsyndicate-0.13/example/Map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/libsyndicate-0.13/example/Map.h -------------------------------------------------------------------------------- /libsyndicate-0.13/example/main_anim.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/libsyndicate-0.13/example/main_anim.cc -------------------------------------------------------------------------------- /libsyndicate-0.13/example/main_file.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/libsyndicate-0.13/example/main_file.cc -------------------------------------------------------------------------------- /libsyndicate-0.13/example/main_font.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/libsyndicate-0.13/example/main_font.cc -------------------------------------------------------------------------------- /libsyndicate-0.13/example/main_frame.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/libsyndicate-0.13/example/main_frame.cc -------------------------------------------------------------------------------- /libsyndicate-0.13/example/main_frame.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/libsyndicate-0.13/example/main_frame.log -------------------------------------------------------------------------------- /libsyndicate-0.13/example/main_game.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/libsyndicate-0.13/example/main_game.cc -------------------------------------------------------------------------------- /libsyndicate-0.13/example/main_hreq.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/libsyndicate-0.13/example/main_hreq.cc -------------------------------------------------------------------------------- /libsyndicate-0.13/example/main_map.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/libsyndicate-0.13/example/main_map.cc -------------------------------------------------------------------------------- /libsyndicate-0.13/example/main_mapcol.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/libsyndicate-0.13/example/main_mapcol.cc -------------------------------------------------------------------------------- /libsyndicate-0.13/example/main_mapdata.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/libsyndicate-0.13/example/main_mapdata.cc -------------------------------------------------------------------------------- /libsyndicate-0.13/example/main_maptile.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/libsyndicate-0.13/example/main_maptile.cc -------------------------------------------------------------------------------- /libsyndicate-0.13/example/main_palette.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/libsyndicate-0.13/example/main_palette.cc -------------------------------------------------------------------------------- /libsyndicate-0.13/example/main_raw.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/libsyndicate-0.13/example/main_raw.cc -------------------------------------------------------------------------------- /libsyndicate-0.13/example/main_sprite.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/libsyndicate-0.13/example/main_sprite.cc -------------------------------------------------------------------------------- /libsyndicate-0.13/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/libsyndicate-0.13/install-sh -------------------------------------------------------------------------------- /libsyndicate-0.13/lib/Bitstream.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/libsyndicate-0.13/lib/Bitstream.cc -------------------------------------------------------------------------------- /libsyndicate-0.13/lib/Block.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/libsyndicate-0.13/lib/Block.cc -------------------------------------------------------------------------------- /libsyndicate-0.13/lib/Colors.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/libsyndicate-0.13/lib/Colors.cc -------------------------------------------------------------------------------- /libsyndicate-0.13/lib/Debug.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/libsyndicate-0.13/lib/Debug.cc -------------------------------------------------------------------------------- /libsyndicate-0.13/lib/File.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/libsyndicate-0.13/lib/File.cc -------------------------------------------------------------------------------- /libsyndicate-0.13/lib/Font.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/libsyndicate-0.13/lib/Font.cc -------------------------------------------------------------------------------- /libsyndicate-0.13/lib/Game.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/libsyndicate-0.13/lib/Game.cc -------------------------------------------------------------------------------- /libsyndicate-0.13/lib/HuffmanTable.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/libsyndicate-0.13/lib/HuffmanTable.cc -------------------------------------------------------------------------------- /libsyndicate-0.13/lib/Main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/libsyndicate-0.13/lib/Main.cc -------------------------------------------------------------------------------- /libsyndicate-0.13/lib/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/libsyndicate-0.13/lib/Makefile.am -------------------------------------------------------------------------------- /libsyndicate-0.13/lib/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/libsyndicate-0.13/lib/Makefile.in -------------------------------------------------------------------------------- /libsyndicate-0.13/lib/MapColumn.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/libsyndicate-0.13/lib/MapColumn.cc -------------------------------------------------------------------------------- /libsyndicate-0.13/lib/MapData.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/libsyndicate-0.13/lib/MapData.cc -------------------------------------------------------------------------------- /libsyndicate-0.13/lib/MapSubTile.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/libsyndicate-0.13/lib/MapSubTile.cc -------------------------------------------------------------------------------- /libsyndicate-0.13/lib/MapTile.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/libsyndicate-0.13/lib/MapTile.cc -------------------------------------------------------------------------------- /libsyndicate-0.13/lib/Palette.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/libsyndicate-0.13/lib/Palette.cc -------------------------------------------------------------------------------- /libsyndicate-0.13/lib/Raw.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/libsyndicate-0.13/lib/Raw.cc -------------------------------------------------------------------------------- /libsyndicate-0.13/lib/Req.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/libsyndicate-0.13/lib/Req.cc -------------------------------------------------------------------------------- /libsyndicate-0.13/lib/Rnc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/libsyndicate-0.13/lib/Rnc.cc -------------------------------------------------------------------------------- /libsyndicate-0.13/lib/SpriteAnim.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/libsyndicate-0.13/lib/SpriteAnim.cc -------------------------------------------------------------------------------- /libsyndicate-0.13/lib/SpriteData.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/libsyndicate-0.13/lib/SpriteData.cc -------------------------------------------------------------------------------- /libsyndicate-0.13/lib/SpriteElement.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/libsyndicate-0.13/lib/SpriteElement.cc -------------------------------------------------------------------------------- /libsyndicate-0.13/lib/SpriteFrame.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/libsyndicate-0.13/lib/SpriteFrame.cc -------------------------------------------------------------------------------- /libsyndicate-0.13/lib/SpriteTab.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/libsyndicate-0.13/lib/SpriteTab.cc -------------------------------------------------------------------------------- /libsyndicate-0.13/lib/Syndicate/Data/File.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/libsyndicate-0.13/lib/Syndicate/Data/File.h -------------------------------------------------------------------------------- /libsyndicate-0.13/lib/Syndicate/Data/Font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/libsyndicate-0.13/lib/Syndicate/Data/Font.h -------------------------------------------------------------------------------- /libsyndicate-0.13/lib/Syndicate/Data/Game.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/libsyndicate-0.13/lib/Syndicate/Data/Game.h -------------------------------------------------------------------------------- /libsyndicate-0.13/lib/Syndicate/Data/Int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/libsyndicate-0.13/lib/Syndicate/Data/Int.h -------------------------------------------------------------------------------- /libsyndicate-0.13/lib/Syndicate/Data/Raw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/libsyndicate-0.13/lib/Syndicate/Data/Raw.h -------------------------------------------------------------------------------- /libsyndicate-0.13/lib/Syndicate/Data/Req.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/libsyndicate-0.13/lib/Syndicate/Data/Req.h -------------------------------------------------------------------------------- /libsyndicate-0.13/lib/Syndicate/Data/Rnc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/libsyndicate-0.13/lib/Syndicate/Data/Rnc.h -------------------------------------------------------------------------------- /libsyndicate-0.13/ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/libsyndicate-0.13/ltmain.sh -------------------------------------------------------------------------------- /libsyndicate-0.13/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/libsyndicate-0.13/missing -------------------------------------------------------------------------------- /libsyndicate-0.13/reference_tile_id.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/libsyndicate-0.13/reference_tile_id.png -------------------------------------------------------------------------------- /libsyndicate-0.13/reference_walkdata.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/libsyndicate-0.13/reference_walkdata.png -------------------------------------------------------------------------------- /libsyndicate-0.13/test/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/libsyndicate-0.13/test/Makefile.am -------------------------------------------------------------------------------- /libsyndicate-0.13/test/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/libsyndicate-0.13/test/Makefile.in -------------------------------------------------------------------------------- /libsyndicate-0.13/test/TestBlock.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/libsyndicate-0.13/test/TestBlock.cc -------------------------------------------------------------------------------- /libsyndicate-0.13/test/TestBlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/libsyndicate-0.13/test/TestBlock.h -------------------------------------------------------------------------------- /libsyndicate-0.13/test/TestFont.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/libsyndicate-0.13/test/TestFont.cc -------------------------------------------------------------------------------- /libsyndicate-0.13/test/TestFont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/libsyndicate-0.13/test/TestFont.h -------------------------------------------------------------------------------- /libsyndicate-0.13/test/TestInt.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/libsyndicate-0.13/test/TestInt.cc -------------------------------------------------------------------------------- /libsyndicate-0.13/test/TestMapData.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/libsyndicate-0.13/test/TestMapData.cc -------------------------------------------------------------------------------- /libsyndicate-0.13/test/TestMapData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/libsyndicate-0.13/test/TestMapData.h -------------------------------------------------------------------------------- /libsyndicate-0.13/test/TestMapTile.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/libsyndicate-0.13/test/TestMapTile.cc -------------------------------------------------------------------------------- /libsyndicate-0.13/test/TestMapTile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/libsyndicate-0.13/test/TestMapTile.h -------------------------------------------------------------------------------- /libsyndicate-0.13/test/TestPalette.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/libsyndicate-0.13/test/TestPalette.cc -------------------------------------------------------------------------------- /libsyndicate-0.13/test/TestPalette.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/libsyndicate-0.13/test/TestPalette.h -------------------------------------------------------------------------------- /libsyndicate-0.13/test/TestSpriteTab.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/libsyndicate-0.13/test/TestSpriteTab.cc -------------------------------------------------------------------------------- /libsyndicate-0.13/test/TestSpriteTab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/libsyndicate-0.13/test/TestSpriteTab.h -------------------------------------------------------------------------------- /libsyndicate-0.13/tool/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/libsyndicate-0.13/tool/Makefile.am -------------------------------------------------------------------------------- /libsyndicate-0.13/tool/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/libsyndicate-0.13/tool/Makefile.in -------------------------------------------------------------------------------- /libsyndicate-0.13/tool/Memshot.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/libsyndicate-0.13/tool/Memshot.cc -------------------------------------------------------------------------------- /libsyndicate-0.13/tool/Memshot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/libsyndicate-0.13/tool/Memshot.h -------------------------------------------------------------------------------- /libsyndicate-0.13/tool/MemshotFe.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/libsyndicate-0.13/tool/MemshotFe.cc -------------------------------------------------------------------------------- /libsyndicate-0.13/tool/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/libsyndicate-0.13/tool/README -------------------------------------------------------------------------------- /libsyndicate-0.13/tool/Screenshot.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/libsyndicate-0.13/tool/Screenshot.cc -------------------------------------------------------------------------------- /libsyndicate-0.13/tool/Screenshot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/libsyndicate-0.13/tool/Screenshot.h -------------------------------------------------------------------------------- /libsyndicate-0.13/tool/difference: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/libsyndicate-0.13/tool/difference -------------------------------------------------------------------------------- /scripts/cpplint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/scripts/cpplint.py -------------------------------------------------------------------------------- /scripts/update-website.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/scripts/update-website.sh -------------------------------------------------------------------------------- /www/about.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/www/about.php -------------------------------------------------------------------------------- /www/clock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/www/clock.js -------------------------------------------------------------------------------- /www/data/news.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/www/data/news.xml -------------------------------------------------------------------------------- /www/data/old-news.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/www/data/old-news.xml -------------------------------------------------------------------------------- /www/data/roadmap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/www/data/roadmap.xml -------------------------------------------------------------------------------- /www/default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/www/default.css -------------------------------------------------------------------------------- /www/dev.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/www/dev.php -------------------------------------------------------------------------------- /www/dl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/www/dl.php -------------------------------------------------------------------------------- /www/ff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/www/ff.php -------------------------------------------------------------------------------- /www/images/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/www/images/bg.png -------------------------------------------------------------------------------- /www/images/bg2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/www/images/bg2.png -------------------------------------------------------------------------------- /www/images/bg3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/www/images/bg3.png -------------------------------------------------------------------------------- /www/images/bg4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/www/images/bg4.png -------------------------------------------------------------------------------- /www/images/clock/0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/www/images/clock/0.png -------------------------------------------------------------------------------- /www/images/clock/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/www/images/clock/1.png -------------------------------------------------------------------------------- /www/images/clock/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/www/images/clock/2.png -------------------------------------------------------------------------------- /www/images/clock/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/www/images/clock/3.png -------------------------------------------------------------------------------- /www/images/clock/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/www/images/clock/4.png -------------------------------------------------------------------------------- /www/images/clock/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/www/images/clock/5.png -------------------------------------------------------------------------------- /www/images/clock/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/www/images/clock/6.png -------------------------------------------------------------------------------- /www/images/clock/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/www/images/clock/7.png -------------------------------------------------------------------------------- /www/images/clock/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/www/images/clock/8.png -------------------------------------------------------------------------------- /www/images/clock/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/www/images/clock/9.png -------------------------------------------------------------------------------- /www/images/clock/a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/www/images/clock/a.png -------------------------------------------------------------------------------- /www/images/clock/colon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/www/images/clock/colon.png -------------------------------------------------------------------------------- /www/images/clock/m.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/www/images/clock/m.png -------------------------------------------------------------------------------- /www/images/clock/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/www/images/clock/minus.png -------------------------------------------------------------------------------- /www/images/clock/nc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/www/images/clock/nc.png -------------------------------------------------------------------------------- /www/images/clock/p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/www/images/clock/p.png -------------------------------------------------------------------------------- /www/images/clock/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/www/images/clock/plus.png -------------------------------------------------------------------------------- /www/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/www/images/favicon.png -------------------------------------------------------------------------------- /www/images/freesynd-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/www/images/freesynd-logo.svg -------------------------------------------------------------------------------- /www/images/freesynd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/www/images/freesynd.png -------------------------------------------------------------------------------- /www/images/logos/valid-xhtml10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/www/images/logos/valid-xhtml10.png -------------------------------------------------------------------------------- /www/images/logos/vcss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/www/images/logos/vcss.png -------------------------------------------------------------------------------- /www/images/screenshots/ss1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/www/images/screenshots/ss1.png -------------------------------------------------------------------------------- /www/images/screenshots/ss10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/www/images/screenshots/ss10.png -------------------------------------------------------------------------------- /www/images/screenshots/ss11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/www/images/screenshots/ss11.png -------------------------------------------------------------------------------- /www/images/screenshots/ss12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/www/images/screenshots/ss12.png -------------------------------------------------------------------------------- /www/images/screenshots/ss13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/www/images/screenshots/ss13.png -------------------------------------------------------------------------------- /www/images/screenshots/ss14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/www/images/screenshots/ss14.png -------------------------------------------------------------------------------- /www/images/screenshots/ss15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/www/images/screenshots/ss15.png -------------------------------------------------------------------------------- /www/images/screenshots/ss16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/www/images/screenshots/ss16.png -------------------------------------------------------------------------------- /www/images/screenshots/ss17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/www/images/screenshots/ss17.png -------------------------------------------------------------------------------- /www/images/screenshots/ss18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/www/images/screenshots/ss18.png -------------------------------------------------------------------------------- /www/images/screenshots/ss2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/www/images/screenshots/ss2.png -------------------------------------------------------------------------------- /www/images/screenshots/ss3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/www/images/screenshots/ss3.png -------------------------------------------------------------------------------- /www/images/screenshots/ss4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/www/images/screenshots/ss4.png -------------------------------------------------------------------------------- /www/images/screenshots/ss5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/www/images/screenshots/ss5.png -------------------------------------------------------------------------------- /www/images/screenshots/ss6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/www/images/screenshots/ss6.png -------------------------------------------------------------------------------- /www/images/screenshots/ss7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/www/images/screenshots/ss7.png -------------------------------------------------------------------------------- /www/images/screenshots/ss8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/www/images/screenshots/ss8.png -------------------------------------------------------------------------------- /www/images/screenshots/ss9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/www/images/screenshots/ss9.png -------------------------------------------------------------------------------- /www/images/screenshots/thumb.ss1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/www/images/screenshots/thumb.ss1.png -------------------------------------------------------------------------------- /www/images/screenshots/thumb.ss10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/www/images/screenshots/thumb.ss10.png -------------------------------------------------------------------------------- /www/images/screenshots/thumb.ss11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/www/images/screenshots/thumb.ss11.png -------------------------------------------------------------------------------- /www/images/screenshots/thumb.ss12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/www/images/screenshots/thumb.ss12.png -------------------------------------------------------------------------------- /www/images/screenshots/thumb.ss13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/www/images/screenshots/thumb.ss13.png -------------------------------------------------------------------------------- /www/images/screenshots/thumb.ss14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/www/images/screenshots/thumb.ss14.png -------------------------------------------------------------------------------- /www/images/screenshots/thumb.ss15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/www/images/screenshots/thumb.ss15.png -------------------------------------------------------------------------------- /www/images/screenshots/thumb.ss16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/www/images/screenshots/thumb.ss16.png -------------------------------------------------------------------------------- /www/images/screenshots/thumb.ss17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/www/images/screenshots/thumb.ss17.png -------------------------------------------------------------------------------- /www/images/screenshots/thumb.ss18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/www/images/screenshots/thumb.ss18.png -------------------------------------------------------------------------------- /www/images/screenshots/thumb.ss2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/www/images/screenshots/thumb.ss2.png -------------------------------------------------------------------------------- /www/images/screenshots/thumb.ss3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/www/images/screenshots/thumb.ss3.png -------------------------------------------------------------------------------- /www/images/screenshots/thumb.ss4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/www/images/screenshots/thumb.ss4.png -------------------------------------------------------------------------------- /www/images/screenshots/thumb.ss5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/www/images/screenshots/thumb.ss5.png -------------------------------------------------------------------------------- /www/images/screenshots/thumb.ss6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/www/images/screenshots/thumb.ss6.png -------------------------------------------------------------------------------- /www/images/screenshots/thumb.ss7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/www/images/screenshots/thumb.ss7.png -------------------------------------------------------------------------------- /www/images/screenshots/thumb.ss8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/www/images/screenshots/thumb.ss8.png -------------------------------------------------------------------------------- /www/images/screenshots/thumb.ss9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/www/images/screenshots/thumb.ss9.png -------------------------------------------------------------------------------- /www/images/sidebar/hi.about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/www/images/sidebar/hi.about.png -------------------------------------------------------------------------------- /www/images/sidebar/hi.dev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/www/images/sidebar/hi.dev.png -------------------------------------------------------------------------------- /www/images/sidebar/hi.dl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/www/images/sidebar/hi.dl.png -------------------------------------------------------------------------------- /www/images/sidebar/hi.ff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/www/images/sidebar/hi.ff.png -------------------------------------------------------------------------------- /www/images/sidebar/hi.links.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/www/images/sidebar/hi.links.png -------------------------------------------------------------------------------- /www/images/sidebar/hi.news.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/www/images/sidebar/hi.news.png -------------------------------------------------------------------------------- /www/images/sidebar/hi.ss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/www/images/sidebar/hi.ss.png -------------------------------------------------------------------------------- /www/images/sidebar/lo.about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/www/images/sidebar/lo.about.png -------------------------------------------------------------------------------- /www/images/sidebar/lo.dev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/www/images/sidebar/lo.dev.png -------------------------------------------------------------------------------- /www/images/sidebar/lo.dl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/www/images/sidebar/lo.dl.png -------------------------------------------------------------------------------- /www/images/sidebar/lo.ff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/www/images/sidebar/lo.ff.png -------------------------------------------------------------------------------- /www/images/sidebar/lo.links.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/www/images/sidebar/lo.links.png -------------------------------------------------------------------------------- /www/images/sidebar/lo.news.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/www/images/sidebar/lo.news.png -------------------------------------------------------------------------------- /www/images/sidebar/lo.ss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/www/images/sidebar/lo.ss.png -------------------------------------------------------------------------------- /www/images/tiles/bytes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/www/images/tiles/bytes.png -------------------------------------------------------------------------------- /www/images/tiles/example1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/www/images/tiles/example1.png -------------------------------------------------------------------------------- /www/images/tiles/example2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/www/images/tiles/example2.png -------------------------------------------------------------------------------- /www/images/tiles/pixel2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/www/images/tiles/pixel2.png -------------------------------------------------------------------------------- /www/images/tiles/pixels.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/www/images/tiles/pixels.png -------------------------------------------------------------------------------- /www/images/tiles/stacking.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/www/images/tiles/stacking.png -------------------------------------------------------------------------------- /www/images/tiles/subtile-order.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/www/images/tiles/subtile-order.png -------------------------------------------------------------------------------- /www/images/tiles/subtiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/www/images/tiles/subtiles.png -------------------------------------------------------------------------------- /www/images/titlebar/about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/www/images/titlebar/about.png -------------------------------------------------------------------------------- /www/images/titlebar/dev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/www/images/titlebar/dev.png -------------------------------------------------------------------------------- /www/images/titlebar/dl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/www/images/titlebar/dl.png -------------------------------------------------------------------------------- /www/images/titlebar/ff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/www/images/titlebar/ff.png -------------------------------------------------------------------------------- /www/images/titlebar/links.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/www/images/titlebar/links.png -------------------------------------------------------------------------------- /www/images/titlebar/news.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/www/images/titlebar/news.png -------------------------------------------------------------------------------- /www/images/titlebar/ss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/www/images/titlebar/ss.png -------------------------------------------------------------------------------- /www/include/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/www/include/.htaccess -------------------------------------------------------------------------------- /www/include/common.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/www/include/common.php -------------------------------------------------------------------------------- /www/include/footer-inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/www/include/footer-inc.php -------------------------------------------------------------------------------- /www/include/header-inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/www/include/header-inc.php -------------------------------------------------------------------------------- /www/include/rss-inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/www/include/rss-inc.php -------------------------------------------------------------------------------- /www/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/www/index.php -------------------------------------------------------------------------------- /www/links.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/www/links.php -------------------------------------------------------------------------------- /www/ss.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videogamepreservation/freesynd/HEAD/www/ss.php --------------------------------------------------------------------------------