├── .gitignore ├── COPYING.txt ├── LICENSE ├── README.md ├── ShockMac.sit └── ShockMac ├── .finf ├── Game Src ├── Icon%0D ├── LIB ├── Libraries ├── Mac Src ├── Shock Build Notes ├── Shock.µ └── Shock.µ copy ├── .rsrc ├── Icon%0D ├── Shock Build Notes ├── Shock.µ └── Shock.µ copy ├── Game Src ├── .finf │ ├── AI.C │ ├── AIRUPT.C │ ├── AMAP.C │ ├── AMAPLOOP.C │ ├── AMMOMFD.C │ ├── AUDIOLOG.C │ ├── AUTOMAP.C │ ├── BARK.C │ ├── BIOHELP.C │ ├── BlitLarge Proj │ ├── BlitLargeAlign.s │ ├── CARDMFD.C │ ├── CITRES.C │ ├── COMBAT.C │ ├── CONE.C │ ├── CRITERR.C │ ├── CYBER.C │ ├── CYBERMFD.C │ ├── CYBMEM.C │ ├── CYBRND.C │ ├── ClearCache.s │ ├── DAMAGE.C │ ├── DIGIFX.C │ ├── DRUGS.C │ ├── EFFECT.C │ ├── EMAIL.C │ ├── FACEOBJ.C │ ├── FIXTRMFD.C │ ├── FRCAMERA.C │ ├── FRCLIP.C │ ├── FRCOMPIL.C │ ├── FRMAIN.C │ ├── FROBJ.C │ ├── FROSLEW.C │ ├── FRPIPE.C │ ├── FRPTS.C │ ├── FRSETUP.C │ ├── FRTABLES.C │ ├── FRTERR.C │ ├── FRUTIL.C │ ├── FULLAMAP.C │ ├── FULLSCRN.C │ ├── FrUtils.C │ ├── GAMELOOP.C │ ├── GAMEOBJ.C │ ├── GAMEREND.C │ ├── GAMESORT.C │ ├── GAMESTRN.C │ ├── GAMESYS.C │ ├── GAMETIME.C │ ├── GAMEWRAP.C │ ├── GEARMFD.C │ ├── GR2SS.C │ ├── GRENADES.C │ ├── HAND.C │ ├── HFLIP.C │ ├── HKEYFUNC.C │ ├── HUD.C │ ├── HUDOBJ.C │ ├── Headers │ ├── INIT.C │ ├── INPUT.C │ ├── INVENT.C │ ├── LEANMETR.C │ ├── MAINLOOP.C │ ├── MAP.C │ ├── MFDFUNC.C │ ├── MFDGADG.C │ ├── MFDGAMES.C │ ├── MFDGUMP.C │ ├── MFDPANEL.C │ ├── MINIMAX.C │ ├── MLIMBS.C │ ├── MOVEKEYS.C │ ├── MUSICAI.C │ ├── NEWAI.C │ ├── NEWMFD.C │ ├── OBJAPP.C │ ├── OBJECTS.C │ ├── OBJLOAD.C │ ├── OBJPROP.C │ ├── OBJSIM.C │ ├── OBJUSE.C │ ├── OLH.C │ ├── OLHSCAN.C │ ├── PALFX.C │ ├── PATHFIND.C │ ├── PHYSICS.C │ ├── PLAYER.C │ ├── PLOTWARE.C │ ├── POPUPS.C │ ├── RENDER.C │ ├── RENDTOOL.C │ ├── SAVELOAD.C │ ├── SCHEDULE.C │ ├── SCREEN.C │ ├── SETUP.C │ ├── SHODAN.C │ ├── SIDEICON.C │ ├── SNDCALL.C │ ├── STAR.C │ ├── STATICS.C │ ├── STATUS.C │ ├── TARGET.C │ ├── TEXTMAPS.C │ ├── TFDIRECT.C │ ├── TFUTIL.C │ ├── TOOLS.C │ ├── TRIGGER.C │ ├── VIEW360.C │ ├── VIEWHELP.C │ ├── VITALS.C │ ├── VMAIL.C │ ├── WARES.C │ ├── WEAPONS.C │ ├── WRAPPER.C │ └── game.rsrc ├── .rsrc │ ├── AI.C │ ├── AIRUPT.C │ ├── AMAP.C │ ├── AMAPLOOP.C │ ├── AMMOMFD.C │ ├── AUDIOLOG.C │ ├── AUTOMAP.C │ ├── BARK.C │ ├── BIOHELP.C │ ├── BlitLarge Proj │ ├── BlitLargeAlign.s │ ├── CARDMFD.C │ ├── CITRES.C │ ├── COMBAT.C │ ├── CONE.C │ ├── CRITERR.C │ ├── CYBER.C │ ├── CYBERMFD.C │ ├── CYBMEM.C │ ├── CYBRND.C │ ├── ClearCache.s │ ├── DAMAGE.C │ ├── DIGIFX.C │ ├── DRUGS.C │ ├── EFFECT.C │ ├── EMAIL.C │ ├── FACEOBJ.C │ ├── FIXTRMFD.C │ ├── FRCAMERA.C │ ├── FRCLIP.C │ ├── FRCOMPIL.C │ ├── FRMAIN.C │ ├── FROBJ.C │ ├── FROSLEW.C │ ├── FRPIPE.C │ ├── FRPTS.C │ ├── FRSETUP.C │ ├── FRTABLES.C │ ├── FRTERR.C │ ├── FRUTIL.C │ ├── FULLAMAP.C │ ├── FULLSCRN.C │ ├── FrUtils.C │ ├── GAMELOOP.C │ ├── GAMEOBJ.C │ ├── GAMEREND.C │ ├── GAMESORT.C │ ├── GAMESTRN.C │ ├── GAMESYS.C │ ├── GAMETIME.C │ ├── GAMEWRAP.C │ ├── GEARMFD.C │ ├── GR2SS.C │ ├── GRENADES.C │ ├── HAND.C │ ├── HFLIP.C │ ├── HKEYFUNC.C │ ├── HUD.C │ ├── HUDOBJ.C │ ├── INIT.C │ ├── INPUT.C │ ├── INVENT.C │ ├── LEANMETR.C │ ├── MAINLOOP.C │ ├── MAP.C │ ├── MFDFUNC.C │ ├── MFDGADG.C │ ├── MFDGAMES.C │ ├── MFDGUMP.C │ ├── MFDPANEL.C │ ├── MINIMAX.C │ ├── MLIMBS.C │ ├── MOVEKEYS.C │ ├── MUSICAI.C │ ├── NEWAI.C │ ├── NEWMFD.C │ ├── OBJAPP.C │ ├── OBJECTS.C │ ├── OBJLOAD.C │ ├── OBJPROP.C │ ├── OBJSIM.C │ ├── OBJUSE.C │ ├── OLH.C │ ├── OLHSCAN.C │ ├── PALFX.C │ ├── PATHFIND.C │ ├── PHYSICS.C │ ├── PLAYER.C │ ├── PLOTWARE.C │ ├── POPUPS.C │ ├── RENDER.C │ ├── RENDTOOL.C │ ├── SAVELOAD.C │ ├── SCHEDULE.C │ ├── SCREEN.C │ ├── SETUP.C │ ├── SHODAN.C │ ├── SIDEICON.C │ ├── SNDCALL.C │ ├── STAR.C │ ├── STATICS.C │ ├── STATUS.C │ ├── TARGET.C │ ├── TEXTMAPS.C │ ├── TFDIRECT.C │ ├── TFUTIL.C │ ├── TOOLS.C │ ├── TRIGGER.C │ ├── VIEW360.C │ ├── VIEWHELP.C │ ├── VITALS.C │ ├── VMAIL.C │ ├── WARES.C │ ├── WEAPONS.C │ ├── WRAPPER.C │ └── game.rsrc ├── AI.C ├── AIRUPT.C ├── AMAP.C ├── AMAPLOOP.C ├── AMMOMFD.C ├── AUDIOLOG.C ├── AUTOMAP.C ├── BARK.C ├── BIOHELP.C ├── BlitLarge Proj ├── BlitLargeAlign.s ├── CARDMFD.C ├── CITRES.C ├── COMBAT.C ├── CONE.C ├── CRITERR.C ├── CYBER.C ├── CYBERMFD.C ├── CYBMEM.C ├── CYBRND.C ├── ClearCache.s ├── DAMAGE.C ├── DIGIFX.C ├── DRUGS.C ├── EFFECT.C ├── EMAIL.C ├── FACEOBJ.C ├── FIXTRMFD.C ├── FRCAMERA.C ├── FRCLIP.C ├── FRCOMPIL.C ├── FRMAIN.C ├── FROBJ.C ├── FROSLEW.C ├── FRPIPE.C ├── FRPTS.C ├── FRSETUP.C ├── FRTABLES.C ├── FRTERR.C ├── FRUTIL.C ├── FULLAMAP.C ├── FULLSCRN.C ├── FrUtils.C ├── GAMELOOP.C ├── GAMEOBJ.C ├── GAMEREND.C ├── GAMESORT.C ├── GAMESTRN.C ├── GAMESYS.C ├── GAMETIME.C ├── GAMEWRAP.C ├── GEARMFD.C ├── GR2SS.C ├── GRENADES.C ├── HAND.C ├── HFLIP.C ├── HKEYFUNC.C ├── HUD.C ├── HUDOBJ.C ├── Headers │ ├── .finf │ │ ├── AI.H │ │ ├── AIFLAGS.H │ │ ├── AMAP.H │ │ ├── AMAPLOOP.H │ │ ├── AUDIOLOG.H │ │ ├── AUTOMAP.H │ │ ├── BARK.H │ │ ├── BIOTRAX.H │ │ ├── CACHETEX.H │ │ ├── CANVCHEK.H │ │ ├── CIT2D.H │ │ ├── CITALOG.H │ │ ├── CITBARK.H │ │ ├── CITMAT.H │ │ ├── CITRES.H │ │ ├── COLORS.H │ │ ├── COMBAT.H │ │ ├── CONE.H │ │ ├── CRITERR.H │ │ ├── CYBER.H │ │ ├── CYBMEM.H │ │ ├── CYBRLOOP.H │ │ ├── CYBRND.H │ │ ├── CYBSTRNG.H │ │ ├── DAMAGE.H │ │ ├── DIFFQ.H │ │ ├── DIRAC.H │ │ ├── DOORPARM.H │ │ ├── DRUGS.H │ │ ├── DYNMEM.H │ │ ├── EDITLOOP.H │ │ ├── EFFECT.H │ │ ├── EMAILBIT.H │ │ ├── FAKETIME.H │ │ ├── FATIGUE.H │ │ ├── FAUXRINT.H │ │ ├── FR3D.H │ │ ├── FRAMER8.H │ │ ├── FRCAMERA.H │ │ ├── FRCTXT.H │ │ ├── FREDGE.H │ │ ├── FRFLAGS.H │ │ ├── FRINTERN.H │ │ ├── FROSLEW.H │ │ ├── FRPARAMS.H │ │ ├── FRPROTOX.H │ │ ├── FRQUAD.H │ │ ├── FRSHIPM.H │ │ ├── FRSPANS.H │ │ ├── FRSUBCLP.H │ │ ├── FRTABLES.H │ │ ├── FRTYPES.H │ │ ├── FRTYPESX.H │ │ ├── FRWORLD.H │ │ ├── FULLSCRN.H │ │ ├── FrUtils.H │ │ ├── GAMELOOP.H │ │ ├── GAMEOBJ.H │ │ ├── GAMEPAL.H │ │ ├── GAMEREND.H │ │ ├── GAMESCR.H │ │ ├── GAMESORT.H │ │ ├── GAMESTRN.H │ │ ├── GAMESYS.H │ │ ├── GAMETIME.H │ │ ├── GAMEWRAP.H │ │ ├── GAME_SCREEN.H │ │ ├── GETTMAPS.H │ │ ├── GR2SS.H │ │ ├── GRENADES.H │ │ ├── HAND.H │ │ ├── HANDART.H │ │ ├── HKEYFUNC.H │ │ ├── HUD.H │ │ ├── HUDOBJ.H │ │ ├── ICE.H │ │ ├── INIT.H │ │ ├── INPUT.H │ │ ├── INVDIMS.H │ │ ├── INVENT.H │ │ ├── INVPAGES.H │ │ ├── LOOPS.H │ │ ├── LVLDATA.H │ │ ├── MAINLOOP.H │ │ ├── MAP.H │ │ ├── MAPCOUNT.H │ │ ├── MAPFLAGS.H │ │ ├── MAPNORM.H │ │ ├── MFDART.H │ │ ├── MFDDIMS.H │ │ ├── MFDEXT.H │ │ ├── MFDGADG.H │ │ ├── MFDGAMES.H │ │ ├── MFDINT.H │ │ ├── MFDPANEL.H │ │ ├── MINIMAX.H │ │ ├── MISCQVAR.H │ │ ├── MLIMBS.H │ │ ├── MODELS.H │ │ ├── MODTEXT.H │ │ ├── MUSICAI.H │ │ ├── NEWMFD.H │ │ ├── OBJ3D.H │ │ ├── OBJAPP.H │ │ ├── OBJART.H │ │ ├── OBJART2.H │ │ ├── OBJART3.H │ │ ├── OBJBIT.H │ │ ├── OBJCLASS.H │ │ ├── OBJCRIT.H │ │ ├── OBJECTS.H │ │ ├── OBJGAME.H │ │ ├── OBJLOAD.H │ │ ├── OBJMODE.H │ │ ├── OBJPROP.H │ │ ├── OBJSIM.H │ │ ├── OBJSTUFF.H │ │ ├── OBJUSE.H │ │ ├── OBJVER.H │ │ ├── OBJWAREZ.H │ │ ├── OBJWPN.H │ │ ├── OLHEXT.H │ │ ├── OLHINT.H │ │ ├── OTRIP.H │ │ ├── PALFX.H │ │ ├── PATHFIND.H │ │ ├── PHYSICS.H │ │ ├── PHYSUNIT.H │ │ ├── PLAYER.H │ │ ├── POPUPS.H │ │ ├── RCOLORS.H │ │ ├── REFSTUF.H │ │ ├── RENDER.H │ │ ├── RENDFX.H │ │ ├── RENDTOOL.H │ │ ├── SAFEEDMS.H │ │ ├── SAVELOAD.H │ │ ├── SCHEDTYP.H │ │ ├── SCHEDULE.H │ │ ├── SCREEN.H │ │ ├── SETPLOOP.H │ │ ├── SETUP.H │ │ ├── SFXLIST.H │ │ ├── SHODAN.H │ │ ├── SIDEART.H │ │ ├── SIDEICON.H │ │ ├── SOFTDEF.H │ │ ├── SPLASFRN.H │ │ ├── SPLASGER.H │ │ ├── SPLASH.H │ │ ├── SPLSHPAL.H │ │ ├── SS_FLET.H │ │ ├── STAR.H │ │ ├── STATICS.H │ │ ├── STATUS.H │ │ ├── STRWRAP.H │ │ ├── SVGACURS.H │ │ ├── TARGET.H │ │ ├── TEXTMAPS.H │ │ ├── TEXTURE.H │ │ ├── TFDIRECT.H │ │ ├── TILECAM.H │ │ ├── TILEMAP.H │ │ ├── TILENAME.H │ │ ├── TOOLS.H │ │ ├── TPOLYS.H │ │ ├── TREASURE.H │ │ ├── TRIGGER.H │ │ ├── VERIFY.H │ │ ├── VERSION.H │ │ ├── VIEW360.H │ │ ├── VISIBLE.H │ │ ├── VMAIL.H │ │ ├── WARES.H │ │ ├── WEAPONS.H │ │ └── WRAPPER.H │ ├── .rsrc │ │ ├── AI.H │ │ ├── AIFLAGS.H │ │ ├── AMAP.H │ │ ├── AMAPLOOP.H │ │ ├── AUDIOLOG.H │ │ ├── AUTOMAP.H │ │ ├── BARK.H │ │ ├── BIOTRAX.H │ │ ├── CACHETEX.H │ │ ├── CANVCHEK.H │ │ ├── CIT2D.H │ │ ├── CITALOG.H │ │ ├── CITBARK.H │ │ ├── CITMAT.H │ │ ├── CITRES.H │ │ ├── COLORS.H │ │ ├── COMBAT.H │ │ ├── CONE.H │ │ ├── CRITERR.H │ │ ├── CYBER.H │ │ ├── CYBMEM.H │ │ ├── CYBRLOOP.H │ │ ├── CYBRND.H │ │ ├── CYBSTRNG.H │ │ ├── DAMAGE.H │ │ ├── DIFFQ.H │ │ ├── DIRAC.H │ │ ├── DOORPARM.H │ │ ├── DRUGS.H │ │ ├── DYNMEM.H │ │ ├── EDITLOOP.H │ │ ├── EFFECT.H │ │ ├── EMAILBIT.H │ │ ├── FAKETIME.H │ │ ├── FATIGUE.H │ │ ├── FAUXRINT.H │ │ ├── FR3D.H │ │ ├── FRAMER8.H │ │ ├── FRCAMERA.H │ │ ├── FRCTXT.H │ │ ├── FREDGE.H │ │ ├── FRFLAGS.H │ │ ├── FRINTERN.H │ │ ├── FROSLEW.H │ │ ├── FRPARAMS.H │ │ ├── FRPROTOX.H │ │ ├── FRQUAD.H │ │ ├── FRSHIPM.H │ │ ├── FRSPANS.H │ │ ├── FRSUBCLP.H │ │ ├── FRTABLES.H │ │ ├── FRTYPES.H │ │ ├── FRTYPESX.H │ │ ├── FRWORLD.H │ │ ├── FULLSCRN.H │ │ ├── FrUtils.H │ │ ├── GAMELOOP.H │ │ ├── GAMEOBJ.H │ │ ├── GAMEPAL.H │ │ ├── GAMEREND.H │ │ ├── GAMESCR.H │ │ ├── GAMESORT.H │ │ ├── GAMESTRN.H │ │ ├── GAMESYS.H │ │ ├── GAMETIME.H │ │ ├── GAMEWRAP.H │ │ ├── GAME_SCREEN.H │ │ ├── GETTMAPS.H │ │ ├── GR2SS.H │ │ ├── GRENADES.H │ │ ├── HAND.H │ │ ├── HANDART.H │ │ ├── HKEYFUNC.H │ │ ├── HUD.H │ │ ├── HUDOBJ.H │ │ ├── ICE.H │ │ ├── INIT.H │ │ ├── INPUT.H │ │ ├── INVDIMS.H │ │ ├── INVENT.H │ │ ├── INVPAGES.H │ │ ├── LOOPS.H │ │ ├── LVLDATA.H │ │ ├── MAINLOOP.H │ │ ├── MAP.H │ │ ├── MAPCOUNT.H │ │ ├── MAPFLAGS.H │ │ ├── MAPNORM.H │ │ ├── MFDART.H │ │ ├── MFDDIMS.H │ │ ├── MFDEXT.H │ │ ├── MFDGADG.H │ │ ├── MFDGAMES.H │ │ ├── MFDINT.H │ │ ├── MFDPANEL.H │ │ ├── MINIMAX.H │ │ ├── MISCQVAR.H │ │ ├── MLIMBS.H │ │ ├── MODELS.H │ │ ├── MODTEXT.H │ │ ├── MUSICAI.H │ │ ├── NEWMFD.H │ │ ├── OBJ3D.H │ │ ├── OBJAPP.H │ │ ├── OBJBIT.H │ │ ├── OBJCLASS.H │ │ ├── OBJCRIT.H │ │ ├── OBJECTS.H │ │ ├── OBJGAME.H │ │ ├── OBJLOAD.H │ │ ├── OBJMODE.H │ │ ├── OBJPROP.H │ │ ├── OBJSIM.H │ │ ├── OBJSTUFF.H │ │ ├── OBJUSE.H │ │ ├── OBJVER.H │ │ ├── OBJWAREZ.H │ │ ├── OBJWPN.H │ │ ├── OLHEXT.H │ │ ├── OLHINT.H │ │ ├── OTRIP.H │ │ ├── PALFX.H │ │ ├── PATHFIND.H │ │ ├── PHYSICS.H │ │ ├── PHYSUNIT.H │ │ ├── PLAYER.H │ │ ├── POPUPS.H │ │ ├── RCOLORS.H │ │ ├── REFSTUF.H │ │ ├── RENDER.H │ │ ├── RENDFX.H │ │ ├── RENDTOOL.H │ │ ├── SAFEEDMS.H │ │ ├── SAVELOAD.H │ │ ├── SCHEDTYP.H │ │ ├── SCHEDULE.H │ │ ├── SCREEN.H │ │ ├── SETPLOOP.H │ │ ├── SETUP.H │ │ ├── SFXLIST.H │ │ ├── SHODAN.H │ │ ├── SIDEART.H │ │ ├── SIDEICON.H │ │ ├── SOFTDEF.H │ │ ├── SPLASFRN.H │ │ ├── SPLASGER.H │ │ ├── SPLASH.H │ │ ├── SPLSHPAL.H │ │ ├── SS_FLET.H │ │ ├── STAR.H │ │ ├── STATICS.H │ │ ├── STATUS.H │ │ ├── STRWRAP.H │ │ ├── SVGACURS.H │ │ ├── TARGET.H │ │ ├── TEXTMAPS.H │ │ ├── TEXTURE.H │ │ ├── TFDIRECT.H │ │ ├── TILECAM.H │ │ ├── TILEMAP.H │ │ ├── TILENAME.H │ │ ├── TOOLS.H │ │ ├── TPOLYS.H │ │ ├── TREASURE.H │ │ ├── TRIGGER.H │ │ ├── VERIFY.H │ │ ├── VERSION.H │ │ ├── VIEW360.H │ │ ├── VISIBLE.H │ │ ├── VMAIL.H │ │ ├── WARES.H │ │ ├── WEAPONS.H │ │ └── WRAPPER.H │ ├── AI.H │ ├── AIFLAGS.H │ ├── AMAP.H │ ├── AMAPLOOP.H │ ├── AUDIOLOG.H │ ├── AUTOMAP.H │ ├── BARK.H │ ├── BIOTRAX.H │ ├── CACHETEX.H │ ├── CANVCHEK.H │ ├── CIT2D.H │ ├── CITALOG.H │ ├── CITBARK.H │ ├── CITMAT.H │ ├── CITRES.H │ ├── COLORS.H │ ├── COMBAT.H │ ├── CONE.H │ ├── CRITERR.H │ ├── CYBER.H │ ├── CYBMEM.H │ ├── CYBRLOOP.H │ ├── CYBRND.H │ ├── CYBSTRNG.H │ ├── DAMAGE.H │ ├── DIFFQ.H │ ├── DIRAC.H │ ├── DOORPARM.H │ ├── DRUGS.H │ ├── DYNMEM.H │ ├── EDITLOOP.H │ ├── EFFECT.H │ ├── EMAILBIT.H │ ├── FAKETIME.H │ ├── FATIGUE.H │ ├── FAUXRINT.H │ ├── FR3D.H │ ├── FRAMER8.H │ ├── FRCAMERA.H │ ├── FRCTXT.H │ ├── FREDGE.H │ ├── FRFLAGS.H │ ├── FRINTERN.H │ ├── FROSLEW.H │ ├── FRPARAMS.H │ ├── FRPROTOX.H │ ├── FRQUAD.H │ ├── FRSHIPM.H │ ├── FRSPANS.H │ ├── FRSUBCLP.H │ ├── FRTABLES.H │ ├── FRTYPES.H │ ├── FRTYPESX.H │ ├── FRWORLD.H │ ├── FULLSCRN.H │ ├── FrUtils.H │ ├── GAMELOOP.H │ ├── GAMEOBJ.H │ ├── GAMEPAL.H │ ├── GAMEREND.H │ ├── GAMESCR.H │ ├── GAMESORT.H │ ├── GAMESTRN.H │ ├── GAMESYS.H │ ├── GAMETIME.H │ ├── GAMEWRAP.H │ ├── GAME_SCREEN.H │ ├── GETTMAPS.H │ ├── GR2SS.H │ ├── GRENADES.H │ ├── HAND.H │ ├── HANDART.H │ ├── HKEYFUNC.H │ ├── HUD.H │ ├── HUDOBJ.H │ ├── ICE.H │ ├── INIT.H │ ├── INPUT.H │ ├── INVDIMS.H │ ├── INVENT.H │ ├── INVPAGES.H │ ├── LOOPS.H │ ├── LVLDATA.H │ ├── MAINLOOP.H │ ├── MAP.H │ ├── MAPCOUNT.H │ ├── MAPFLAGS.H │ ├── MAPNORM.H │ ├── MFDART.H │ ├── MFDDIMS.H │ ├── MFDEXT.H │ ├── MFDGADG.H │ ├── MFDGAMES.H │ ├── MFDINT.H │ ├── MFDPANEL.H │ ├── MINIMAX.H │ ├── MISCQVAR.H │ ├── MLIMBS.H │ ├── MODELS.H │ ├── MODTEXT.H │ ├── MUSICAI.H │ ├── NEWMFD.H │ ├── OBJ3D.H │ ├── OBJAPP.H │ ├── OBJART.H │ ├── OBJART2.H │ ├── OBJART3.H │ ├── OBJBIT.H │ ├── OBJCLASS.H │ ├── OBJCRIT.H │ ├── OBJECTS.H │ ├── OBJGAME.H │ ├── OBJLOAD.H │ ├── OBJMODE.H │ ├── OBJPROP.H │ ├── OBJSIM.H │ ├── OBJSTUFF.H │ ├── OBJUSE.H │ ├── OBJVER.H │ ├── OBJWAREZ.H │ ├── OBJWPN.H │ ├── OLHEXT.H │ ├── OLHINT.H │ ├── OTRIP.H │ ├── PALFX.H │ ├── PATHFIND.H │ ├── PHYSICS.H │ ├── PHYSUNIT.H │ ├── PLAYER.H │ ├── POPUPS.H │ ├── RCOLORS.H │ ├── REFSTUF.H │ ├── RENDER.H │ ├── RENDFX.H │ ├── RENDTOOL.H │ ├── SAFEEDMS.H │ ├── SAVELOAD.H │ ├── SCHEDTYP.H │ ├── SCHEDULE.H │ ├── SCREEN.H │ ├── SETPLOOP.H │ ├── SETUP.H │ ├── SFXLIST.H │ ├── SHODAN.H │ ├── SIDEART.H │ ├── SIDEICON.H │ ├── SOFTDEF.H │ ├── SPLASFRN.H │ ├── SPLASGER.H │ ├── SPLASH.H │ ├── SPLSHPAL.H │ ├── SS_FLET.H │ ├── STAR.H │ ├── STATICS.H │ ├── STATUS.H │ ├── STRWRAP.H │ ├── SVGACURS.H │ ├── TARGET.H │ ├── TEXTMAPS.H │ ├── TEXTURE.H │ ├── TFDIRECT.H │ ├── TILECAM.H │ ├── TILEMAP.H │ ├── TILENAME.H │ ├── TOOLS.H │ ├── TPOLYS.H │ ├── TREASURE.H │ ├── TRIGGER.H │ ├── VERIFY.H │ ├── VERSION.H │ ├── VIEW360.H │ ├── VISIBLE.H │ ├── VMAIL.H │ ├── WARES.H │ ├── WEAPONS.H │ └── WRAPPER.H ├── INIT.C ├── INPUT.C ├── INVENT.C ├── LEANMETR.C ├── MAINLOOP.C ├── MAP.C ├── MFDFUNC.C ├── MFDGADG.C ├── MFDGAMES.C ├── MFDGUMP.C ├── MFDPANEL.C ├── MINIMAX.C ├── MLIMBS.C ├── MOVEKEYS.C ├── MUSICAI.C ├── NEWAI.C ├── NEWMFD.C ├── OBJAPP.C ├── OBJECTS.C ├── OBJLOAD.C ├── OBJPROP.C ├── OBJSIM.C ├── OBJUSE.C ├── OLH.C ├── OLHSCAN.C ├── PALFX.C ├── PATHFIND.C ├── PHYSICS.C ├── PLAYER.C ├── PLOTWARE.C ├── POPUPS.C ├── RENDER.C ├── RENDTOOL.C ├── SAVELOAD.C ├── SCHEDULE.C ├── SCREEN.C ├── SETUP.C ├── SHODAN.C ├── SIDEICON.C ├── SNDCALL.C ├── STAR.C ├── STATICS.C ├── STATUS.C ├── TARGET.C ├── TEXTMAPS.C ├── TFDIRECT.C ├── TFUTIL.C ├── TOOLS.C ├── TRIGGER.C ├── VIEW360.C ├── VIEWHELP.C ├── VITALS.C ├── VMAIL.C ├── WARES.C ├── WEAPONS.C ├── WRAPPER.C └── game.rsrc ├── Icon%0D ├── LIB ├── .finf │ ├── LGHeaders.c │ ├── LGHeadersPPC++ │ ├── LGHeadersPPC.µ │ ├── LGHeadersPPC.µ copy │ └── MacHeaders.c ├── .rsrc │ ├── LGHeaders.c │ ├── LGHeadersPPC.µ │ ├── LGHeadersPPC.µ copy │ └── MacHeaders.c ├── LGHeaders.c ├── LGHeadersPPC++ ├── LGHeadersPPC.µ ├── LGHeadersPPC.µ copy └── MacHeaders.c ├── Libraries ├── .finf │ ├── 2D │ ├── 3D │ ├── AFILE │ ├── DSTRUCT │ ├── EDMS │ ├── FIX │ ├── FIXPP │ ├── H │ ├── INPUT │ ├── LG │ ├── PALETTE │ ├── RES │ ├── RND │ ├── SND │ ├── UI │ └── VOX ├── 2D │ ├── .finf │ │ ├── 2D.make │ │ ├── 2dLib68K.¹ │ │ ├── 2dLibPPC.¹ │ │ ├── 2dLibPPC.¹ copy │ │ ├── 2dTest.make │ │ ├── 2dTest.¹.rsrc │ │ ├── 2dTest68K.¹ │ │ ├── 2dTestPPC.¹ │ │ ├── Simple2d68K.¹ │ │ ├── Simple2dPPC.¹ │ │ ├── Source │ │ ├── Test Source │ │ ├── TestInitMac.c │ │ ├── extra.res │ │ ├── test.img │ │ ├── test.pal │ │ └── test.shd │ ├── .rsrc │ │ ├── 2D.make │ │ ├── 2dLib68K.¹ │ │ ├── 2dLibPPC.¹ │ │ ├── 2dLibPPC.¹ copy │ │ ├── 2dTest.make │ │ ├── 2dTest.¹.rsrc │ │ ├── 2dTest68K.¹ │ │ ├── 2dTestPPC.¹ │ │ ├── Simple2d68K.¹ │ │ ├── Simple2dPPC.¹ │ │ ├── TestInitMac.c │ │ └── extra.res │ ├── 2D.make │ ├── 2dLib68K.¹ │ ├── 2dLibPPC.¹ │ ├── 2dLibPPC.¹ copy │ ├── 2dTest.make │ ├── 2dTest.¹.rsrc │ ├── 2dTest68K.¹ │ ├── 2dTestPPC.¹ │ ├── Simple2d68K.¹ │ ├── Simple2dPPC.¹ │ ├── Source │ │ ├── .finf │ │ │ ├── 2D Asm Proj │ │ │ ├── 2D.H │ │ │ ├── 2dDiv.H │ │ │ ├── 2dTest.c │ │ │ ├── BIT.C │ │ │ ├── BIT.H │ │ │ ├── BITMAP.C │ │ │ ├── BITMAP.H │ │ │ ├── BLEND.C │ │ │ ├── BLEND.H │ │ │ ├── BLNCON.H │ │ │ ├── BLNDAT.H │ │ │ ├── BLNFCN.H │ │ │ ├── BUFFER.C │ │ │ ├── BUFFER.H │ │ │ ├── CANVAS.C │ │ │ ├── CANVAS.H │ │ │ ├── CHAIN.C │ │ │ ├── CHAIN.H │ │ │ ├── CHNFUNCS.H │ │ │ ├── CHR.H │ │ │ ├── CHRSIZ.C │ │ │ ├── CHRWID.C │ │ │ ├── CLOSE.C │ │ │ ├── CLOSE.H │ │ │ ├── CNVDAT.H │ │ │ ├── CNVDRV.H │ │ │ ├── CNVTAB.C │ │ │ ├── CNVTAB.H │ │ │ ├── CONTEXT.C │ │ │ ├── CONTEXT.H │ │ │ ├── CTXMAC.H │ │ │ ├── ChnFuncs.c │ │ │ ├── Clip │ │ │ ├── DETECT.C │ │ │ ├── DETECT.H │ │ │ ├── DEVTAB.H │ │ │ ├── FCNTAB.C │ │ │ ├── FCNTAB.H │ │ │ ├── FILL.H │ │ │ ├── Flat 8 │ │ │ ├── FloorLoop.s │ │ │ ├── GR │ │ │ ├── Gen │ │ │ ├── ICANVAS.H │ │ │ ├── IDEVICE.H │ │ │ ├── IFCN.H │ │ │ ├── INIT.C │ │ │ ├── INIT.H │ │ │ ├── INITINT.H │ │ │ ├── INVTAB.C │ │ │ ├── INVTAB.H │ │ │ ├── InitMac2d.c │ │ │ ├── LINE.H │ │ │ ├── LINFCN.H │ │ │ ├── LINTAB.C │ │ │ ├── LINTAB.H │ │ │ ├── LINTYP.H │ │ │ ├── LinearLoop.s │ │ │ ├── MODE.C │ │ │ ├── MODE.H │ │ │ ├── MacDev.c │ │ │ ├── MacDev.h │ │ │ ├── PAL.C │ │ │ ├── PAL.H │ │ │ ├── PERMAP.C │ │ │ ├── PERSETUP.C │ │ │ ├── PERTOL.C │ │ │ ├── PERTOL.H │ │ │ ├── PERTYP.H │ │ │ ├── PIXFILL.C │ │ │ ├── PIXFILL.H │ │ │ ├── PIXTAB.H │ │ │ ├── PLYTYP.H │ │ │ ├── POLY.H │ │ │ ├── POLYINT.H │ │ │ ├── PermapLoop.s │ │ │ ├── RGB.C │ │ │ ├── RGB.H │ │ │ ├── RSD │ │ │ ├── SCRDAT.H │ │ │ ├── SCREEN.C │ │ │ ├── SCREEN.H │ │ │ ├── SCRMAC.H │ │ │ ├── SSCRN.C │ │ │ ├── STATE.H │ │ │ ├── STATUS.H │ │ │ ├── STR.H │ │ │ ├── STRNSIZ.C │ │ │ ├── STRSCL.C │ │ │ ├── STRSIZ.C │ │ │ ├── STRUSCL.C │ │ │ ├── STRWID.C │ │ │ ├── STRWRAP.C │ │ │ ├── SVGAINIT.C │ │ │ ├── StateStk.c │ │ │ ├── TABDAT.H │ │ │ ├── TABDRV.H │ │ │ ├── TEMPBM.C │ │ │ ├── TEMPTM.C │ │ │ ├── TLUCDAT.C │ │ │ ├── TLUCDAT.H │ │ │ ├── TLUCTAB.C │ │ │ ├── TLUCTAB.H │ │ │ ├── TMAPFCN.H │ │ │ ├── TMAPINT.H │ │ │ ├── TMAPS.H │ │ │ ├── TMAPTAB.H │ │ │ ├── VALLOC.C │ │ │ ├── VALLOC.H │ │ │ ├── VESA.H │ │ │ ├── VTAB.C │ │ │ ├── VTAB.H │ │ │ ├── WIRE.H │ │ │ ├── WIRPOLY.C │ │ │ ├── WallLitLoop1D.s │ │ │ ├── devtab.c │ │ │ └── maxmin.h │ │ ├── .rsrc │ │ │ ├── 2D Asm Proj │ │ │ ├── 2D.H │ │ │ ├── 2dDiv.H │ │ │ ├── 2dTest.c │ │ │ ├── BIT.C │ │ │ ├── BIT.H │ │ │ ├── BITMAP.C │ │ │ ├── BITMAP.H │ │ │ ├── BLEND.C │ │ │ ├── BLEND.H │ │ │ ├── BLNCON.H │ │ │ ├── BLNDAT.H │ │ │ ├── BLNFCN.H │ │ │ ├── BUFFER.C │ │ │ ├── BUFFER.H │ │ │ ├── CANVAS.C │ │ │ ├── CANVAS.H │ │ │ ├── CHAIN.C │ │ │ ├── CHAIN.H │ │ │ ├── CHNFUNCS.H │ │ │ ├── CHR.H │ │ │ ├── CHRSIZ.C │ │ │ ├── CHRWID.C │ │ │ ├── CLOSE.C │ │ │ ├── CLOSE.H │ │ │ ├── CNVDAT.H │ │ │ ├── CNVDRV.H │ │ │ ├── CNVTAB.C │ │ │ ├── CNVTAB.H │ │ │ ├── CONTEXT.C │ │ │ ├── CONTEXT.H │ │ │ ├── CTXMAC.H │ │ │ ├── ChnFuncs.c │ │ │ ├── DETECT.C │ │ │ ├── DETECT.H │ │ │ ├── DEVTAB.H │ │ │ ├── FCNTAB.C │ │ │ ├── FCNTAB.H │ │ │ ├── FILL.H │ │ │ ├── FloorLoop.s │ │ │ ├── ICANVAS.H │ │ │ ├── IDEVICE.H │ │ │ ├── IFCN.H │ │ │ ├── INIT.C │ │ │ ├── INIT.H │ │ │ ├── INITINT.H │ │ │ ├── INVTAB.C │ │ │ ├── INVTAB.H │ │ │ ├── InitMac2d.c │ │ │ ├── LINE.H │ │ │ ├── LINFCN.H │ │ │ ├── LINTAB.C │ │ │ ├── LINTAB.H │ │ │ ├── LINTYP.H │ │ │ ├── LinearLoop.s │ │ │ ├── MODE.C │ │ │ ├── MODE.H │ │ │ ├── MacDev.c │ │ │ ├── MacDev.h │ │ │ ├── PAL.C │ │ │ ├── PAL.H │ │ │ ├── PERMAP.C │ │ │ ├── PERSETUP.C │ │ │ ├── PERTOL.C │ │ │ ├── PERTOL.H │ │ │ ├── PERTYP.H │ │ │ ├── PIXFILL.C │ │ │ ├── PIXFILL.H │ │ │ ├── PIXTAB.H │ │ │ ├── PLYTYP.H │ │ │ ├── POLY.H │ │ │ ├── POLYINT.H │ │ │ ├── PermapLoop.s │ │ │ ├── RGB.C │ │ │ ├── RGB.H │ │ │ ├── SCRDAT.H │ │ │ ├── SCREEN.C │ │ │ ├── SCREEN.H │ │ │ ├── SCRMAC.H │ │ │ ├── SSCRN.C │ │ │ ├── STATE.H │ │ │ ├── STATUS.H │ │ │ ├── STR.H │ │ │ ├── STRNSIZ.C │ │ │ ├── STRSCL.C │ │ │ ├── STRSIZ.C │ │ │ ├── STRUSCL.C │ │ │ ├── STRWID.C │ │ │ ├── STRWRAP.C │ │ │ ├── SVGAINIT.C │ │ │ ├── StateStk.c │ │ │ ├── TABDAT.H │ │ │ ├── TABDRV.H │ │ │ ├── TEMPBM.C │ │ │ ├── TEMPTM.C │ │ │ ├── TLUCDAT.C │ │ │ ├── TLUCDAT.H │ │ │ ├── TLUCTAB.C │ │ │ ├── TLUCTAB.H │ │ │ ├── TMAPFCN.H │ │ │ ├── TMAPINT.H │ │ │ ├── TMAPS.H │ │ │ ├── TMAPTAB.H │ │ │ ├── VALLOC.C │ │ │ ├── VALLOC.H │ │ │ ├── VESA.H │ │ │ ├── VTAB.C │ │ │ ├── VTAB.H │ │ │ ├── WIRE.H │ │ │ ├── WIRPOLY.C │ │ │ ├── WallLitLoop1D.s │ │ │ ├── devtab.c │ │ │ └── maxmin.h │ │ ├── 2D Asm Proj │ │ ├── 2D.H │ │ ├── 2dDiv.H │ │ ├── 2dTest.c │ │ ├── BIT.C │ │ ├── BIT.H │ │ ├── BITMAP.C │ │ ├── BITMAP.H │ │ ├── BLEND.C │ │ ├── BLEND.H │ │ ├── BLNCON.H │ │ ├── BLNDAT.H │ │ ├── BLNFCN.H │ │ ├── BUFFER.C │ │ ├── BUFFER.H │ │ ├── CANVAS.C │ │ ├── CANVAS.H │ │ ├── CHAIN.C │ │ ├── CHAIN.H │ │ ├── CHNFUNCS.H │ │ ├── CHR.H │ │ ├── CHRSIZ.C │ │ ├── CHRWID.C │ │ ├── CLOSE.C │ │ ├── CLOSE.H │ │ ├── CNVDAT.H │ │ ├── CNVDRV.H │ │ ├── CNVTAB.C │ │ ├── CNVTAB.H │ │ ├── CONTEXT.C │ │ ├── CONTEXT.H │ │ ├── CTXMAC.H │ │ ├── ChnFuncs.c │ │ ├── Clip │ │ │ ├── .finf │ │ │ │ ├── CLIP.H │ │ │ │ ├── CLPCLIN.C │ │ │ │ ├── CLPCON.H │ │ │ │ ├── CLPF24.C │ │ │ │ ├── CLPFCN.H │ │ │ │ ├── CLPLIN.C │ │ │ │ ├── CLPLIN2.C │ │ │ │ ├── CLPLTAB.C │ │ │ │ ├── CLPLTAB.H │ │ │ │ ├── CLPLTYP.H │ │ │ │ ├── CLPMONO.C │ │ │ │ ├── CLPPLY.C │ │ │ │ ├── CLPPOLY.C │ │ │ │ ├── CLPRECT.C │ │ │ │ └── CLPSLIN.C │ │ │ ├── .rsrc │ │ │ │ ├── CLIP.H │ │ │ │ ├── CLPCLIN.C │ │ │ │ ├── CLPCON.H │ │ │ │ ├── CLPF24.C │ │ │ │ ├── CLPFCN.H │ │ │ │ ├── CLPLIN.C │ │ │ │ ├── CLPLIN2.C │ │ │ │ ├── CLPLTAB.C │ │ │ │ ├── CLPLTAB.H │ │ │ │ ├── CLPLTYP.H │ │ │ │ ├── CLPMONO.C │ │ │ │ ├── CLPPLY.C │ │ │ │ ├── CLPPOLY.C │ │ │ │ ├── CLPRECT.C │ │ │ │ └── CLPSLIN.C │ │ │ ├── CLIP.H │ │ │ ├── CLPCLIN.C │ │ │ ├── CLPCON.H │ │ │ ├── CLPF24.C │ │ │ ├── CLPFCN.H │ │ │ ├── CLPLIN.C │ │ │ ├── CLPLIN2.C │ │ │ ├── CLPLTAB.C │ │ │ ├── CLPLTAB.H │ │ │ ├── CLPLTYP.H │ │ │ ├── CLPMONO.C │ │ │ ├── CLPPLY.C │ │ │ ├── CLPPOLY.C │ │ │ ├── CLPRECT.C │ │ │ └── CLPSLIN.C │ │ ├── DETECT.C │ │ ├── DETECT.H │ │ ├── DEVTAB.H │ │ ├── FCNTAB.C │ │ ├── FCNTAB.H │ │ ├── FILL.H │ │ ├── Flat 8 │ │ │ ├── .finf │ │ │ │ ├── FL8BFT.H │ │ │ │ ├── FL8BL.C │ │ │ │ ├── FL8BLDBL.C │ │ │ │ ├── FL8CFT.H │ │ │ │ ├── FL8CHFL8.C │ │ │ │ ├── FL8CLEAR.C │ │ │ │ ├── FL8CLIN.C │ │ │ │ ├── FL8CLIN.H │ │ │ │ ├── FL8CNV.C │ │ │ │ ├── FL8COP.C │ │ │ │ ├── FL8CPLY.C │ │ │ │ ├── FL8CTP.C │ │ │ │ ├── FL8DBL.C │ │ │ │ ├── FL8FL8.C │ │ │ │ ├── FL8FL8C.C │ │ │ │ ├── FL8FL8M.C │ │ │ │ ├── FL8FLTR2.C │ │ │ │ ├── FL8FT.C │ │ │ │ ├── FL8G24.C │ │ │ │ ├── FL8GFL8.C │ │ │ │ ├── FL8GPIX.C │ │ │ │ ├── FL8HFL8.C │ │ │ │ ├── FL8HLIN.C │ │ │ │ ├── FL8LF.C │ │ │ │ ├── FL8LIN.C │ │ │ │ ├── FL8LIN.H │ │ │ │ ├── FL8LL.C │ │ │ │ ├── FL8LNOP.C │ │ │ │ ├── FL8LOP.C │ │ │ │ ├── FL8LP.C │ │ │ │ ├── FL8LTP.C │ │ │ │ ├── FL8LW.C │ │ │ │ ├── FL8MONO.C │ │ │ │ ├── FL8MSCL.C │ │ │ │ ├── FL8NFT.H │ │ │ │ ├── FL8NL.C │ │ │ │ ├── FL8NS.C │ │ │ │ ├── FL8NTRP2.C │ │ │ │ ├── FL8OPL.c │ │ │ │ ├── FL8P.C │ │ │ │ ├── FL8P.H │ │ │ │ ├── FL8P24.C │ │ │ │ ├── FL8PIX.C │ │ │ │ ├── FL8PLY.C │ │ │ │ ├── FL8PNT.C │ │ │ │ ├── FL8RECT.C │ │ │ │ ├── FL8ROW.C │ │ │ │ ├── FL8RSD8.C │ │ │ │ ├── FL8S.C │ │ │ │ ├── FL8SFT.H │ │ │ │ ├── FL8SLIN.C │ │ │ │ ├── FL8SLIN.H │ │ │ │ ├── FL8SPLY.C │ │ │ │ ├── FL8SUB.C │ │ │ │ ├── FL8TF.H │ │ │ │ ├── FL8TL8.C │ │ │ │ ├── FL8TMAPDV.H │ │ │ │ ├── FL8TPL.C │ │ │ │ ├── FL8TSMAP.C │ │ │ │ ├── FL8VLIN.C │ │ │ │ ├── FL8W.C │ │ │ │ ├── FL8WCLIN.C │ │ │ │ ├── FL8WCLIN.H │ │ │ │ ├── FL8WLIN.C │ │ │ │ ├── FL8XFT.H │ │ │ │ ├── FLAT8.H │ │ │ │ └── Fl8F.C │ │ │ ├── .rsrc │ │ │ │ ├── FL8BFT.H │ │ │ │ ├── FL8BL.C │ │ │ │ ├── FL8BLDBL.C │ │ │ │ ├── FL8CFT.H │ │ │ │ ├── FL8CHFL8.C │ │ │ │ ├── FL8CLEAR.C │ │ │ │ ├── FL8CLIN.C │ │ │ │ ├── FL8CLIN.H │ │ │ │ ├── FL8CNV.C │ │ │ │ ├── FL8COP.C │ │ │ │ ├── FL8CPLY.C │ │ │ │ ├── FL8CTP.C │ │ │ │ ├── FL8DBL.C │ │ │ │ ├── FL8FL8.C │ │ │ │ ├── FL8FL8C.C │ │ │ │ ├── FL8FL8M.C │ │ │ │ ├── FL8FLTR2.C │ │ │ │ ├── FL8FT.C │ │ │ │ ├── FL8G24.C │ │ │ │ ├── FL8GFL8.C │ │ │ │ ├── FL8GPIX.C │ │ │ │ ├── FL8HFL8.C │ │ │ │ ├── FL8HLIN.C │ │ │ │ ├── FL8LF.C │ │ │ │ ├── FL8LIN.C │ │ │ │ ├── FL8LIN.H │ │ │ │ ├── FL8LL.C │ │ │ │ ├── FL8LNOP.C │ │ │ │ ├── FL8LOP.C │ │ │ │ ├── FL8LP.C │ │ │ │ ├── FL8LTP.C │ │ │ │ ├── FL8LW.C │ │ │ │ ├── FL8MONO.C │ │ │ │ ├── FL8MSCL.C │ │ │ │ ├── FL8NFT.H │ │ │ │ ├── FL8NL.C │ │ │ │ ├── FL8NS.C │ │ │ │ ├── FL8NTRP2.C │ │ │ │ ├── FL8OPL.c │ │ │ │ ├── FL8P.C │ │ │ │ ├── FL8P.H │ │ │ │ ├── FL8P24.C │ │ │ │ ├── FL8PIX.C │ │ │ │ ├── FL8PLY.C │ │ │ │ ├── FL8PNT.C │ │ │ │ ├── FL8RECT.C │ │ │ │ ├── FL8ROW.C │ │ │ │ ├── FL8RSD8.C │ │ │ │ ├── FL8S.C │ │ │ │ ├── FL8SFT.H │ │ │ │ ├── FL8SLIN.C │ │ │ │ ├── FL8SPLY.C │ │ │ │ ├── FL8SUB.C │ │ │ │ ├── FL8TF.H │ │ │ │ ├── FL8TL8.C │ │ │ │ ├── FL8TMAPDV.H │ │ │ │ ├── FL8TPL.C │ │ │ │ ├── FL8TSMAP.C │ │ │ │ ├── FL8VLIN.C │ │ │ │ ├── FL8W.C │ │ │ │ ├── FL8WCLIN.C │ │ │ │ ├── FL8WCLIN.H │ │ │ │ ├── FL8WLIN.C │ │ │ │ ├── FL8XFT.H │ │ │ │ ├── FLAT8.H │ │ │ │ └── Fl8F.C │ │ │ ├── FL8BFT.H │ │ │ ├── FL8BL.C │ │ │ ├── FL8BLDBL.C │ │ │ ├── FL8CFT.H │ │ │ ├── FL8CHFL8.C │ │ │ ├── FL8CLEAR.C │ │ │ ├── FL8CLIN.C │ │ │ ├── FL8CLIN.H │ │ │ ├── FL8CNV.C │ │ │ ├── FL8COP.C │ │ │ ├── FL8CPLY.C │ │ │ ├── FL8CTP.C │ │ │ ├── FL8DBL.C │ │ │ ├── FL8FL8.C │ │ │ ├── FL8FL8C.C │ │ │ ├── FL8FL8M.C │ │ │ ├── FL8FLTR2.C │ │ │ ├── FL8FT.C │ │ │ ├── FL8G24.C │ │ │ ├── FL8GFL8.C │ │ │ ├── FL8GPIX.C │ │ │ ├── FL8HFL8.C │ │ │ ├── FL8HLIN.C │ │ │ ├── FL8LF.C │ │ │ ├── FL8LIN.C │ │ │ ├── FL8LIN.H │ │ │ ├── FL8LL.C │ │ │ ├── FL8LNOP.C │ │ │ ├── FL8LOP.C │ │ │ ├── FL8LP.C │ │ │ ├── FL8LTP.C │ │ │ ├── FL8LW.C │ │ │ ├── FL8MONO.C │ │ │ ├── FL8MSCL.C │ │ │ ├── FL8NFT.H │ │ │ ├── FL8NL.C │ │ │ ├── FL8NS.C │ │ │ ├── FL8NTRP2.C │ │ │ ├── FL8OPL.c │ │ │ ├── FL8P.C │ │ │ ├── FL8P.H │ │ │ ├── FL8P24.C │ │ │ ├── FL8PIX.C │ │ │ ├── FL8PLY.C │ │ │ ├── FL8PNT.C │ │ │ ├── FL8RECT.C │ │ │ ├── FL8ROW.C │ │ │ ├── FL8RSD8.C │ │ │ ├── FL8S.C │ │ │ ├── FL8SFT.H │ │ │ ├── FL8SLIN.C │ │ │ ├── FL8SLIN.H │ │ │ ├── FL8SPLY.C │ │ │ ├── FL8SUB.C │ │ │ ├── FL8TF.H │ │ │ ├── FL8TL8.C │ │ │ ├── FL8TMAPDV.H │ │ │ ├── FL8TPL.C │ │ │ ├── FL8TSMAP.C │ │ │ ├── FL8VLIN.C │ │ │ ├── FL8W.C │ │ │ ├── FL8WCLIN.C │ │ │ ├── FL8WCLIN.H │ │ │ ├── FL8WLIN.C │ │ │ ├── FL8XFT.H │ │ │ ├── FLAT8.H │ │ │ └── Fl8F.C │ │ ├── FloorLoop.s │ │ ├── GR │ │ │ ├── .finf │ │ │ │ ├── GRBM.H │ │ │ │ ├── GRCBM.H │ │ │ │ ├── GRCLHBM.H │ │ │ │ ├── GRCPLY.H │ │ │ │ ├── GRD.C │ │ │ │ ├── GRD.H │ │ │ │ ├── GRDBM.H │ │ │ │ ├── GRDEV.H │ │ │ │ ├── GRGBM.H │ │ │ │ ├── GRHBM.H │ │ │ │ ├── GRILIN.C │ │ │ │ ├── GRLIN.H │ │ │ │ ├── GRMALLOC.C │ │ │ │ ├── GRMALLOC.H │ │ │ │ ├── GRNULL.C │ │ │ │ ├── GRNULL.H │ │ │ │ ├── GRP24.H │ │ │ │ ├── GRPIX.H │ │ │ │ ├── GRPLY.H │ │ │ │ ├── GRRECT.H │ │ │ │ ├── GRREND.H │ │ │ │ ├── GRS.H │ │ │ │ ├── GRSTATE.H │ │ │ │ └── GRUILIN.C │ │ │ ├── .rsrc │ │ │ │ ├── GRBM.H │ │ │ │ ├── GRCBM.H │ │ │ │ ├── GRCLHBM.H │ │ │ │ ├── GRCPLY.H │ │ │ │ ├── GRD.C │ │ │ │ ├── GRD.H │ │ │ │ ├── GRDBM.H │ │ │ │ ├── GRDEV.H │ │ │ │ ├── GRGBM.H │ │ │ │ ├── GRHBM.H │ │ │ │ ├── GRILIN.C │ │ │ │ ├── GRLIN.H │ │ │ │ ├── GRMALLOC.C │ │ │ │ ├── GRMALLOC.H │ │ │ │ ├── GRNULL.C │ │ │ │ ├── GRNULL.H │ │ │ │ ├── GRP24.H │ │ │ │ ├── GRPIX.H │ │ │ │ ├── GRPLY.H │ │ │ │ ├── GRRECT.H │ │ │ │ ├── GRREND.H │ │ │ │ ├── GRS.H │ │ │ │ ├── GRSTATE.H │ │ │ │ └── GRUILIN.C │ │ │ ├── GRBM.H │ │ │ ├── GRCBM.H │ │ │ ├── GRCLHBM.H │ │ │ ├── GRCPLY.H │ │ │ ├── GRD.C │ │ │ ├── GRD.H │ │ │ ├── GRDBM.H │ │ │ ├── GRDEV.H │ │ │ ├── GRGBM.H │ │ │ ├── GRHBM.H │ │ │ ├── GRILIN.C │ │ │ ├── GRLIN.H │ │ │ ├── GRMALLOC.C │ │ │ ├── GRMALLOC.H │ │ │ ├── GRNULL.C │ │ │ ├── GRNULL.H │ │ │ ├── GRP24.H │ │ │ ├── GRPIX.H │ │ │ ├── GRPLY.H │ │ │ ├── GRRECT.H │ │ │ ├── GRREND.H │ │ │ ├── GRS.H │ │ │ ├── GRSTATE.H │ │ │ └── GRUILIN.C │ │ ├── Gen │ │ │ ├── .finf │ │ │ │ ├── GENBOX.C │ │ │ │ ├── GENCHFL8.C │ │ │ │ ├── GENCHR.C │ │ │ │ ├── GENCIRC.C │ │ │ │ ├── GENCLIN.C │ │ │ │ ├── GENCNV.C │ │ │ │ ├── GENCWLIN.C │ │ │ │ ├── GENDISK.C │ │ │ │ ├── GENEL.C │ │ │ │ ├── GENEL.H │ │ │ │ ├── GENERAL.C │ │ │ │ ├── GENERAL.H │ │ │ │ ├── GENF24.C │ │ │ │ ├── GENFL8.C │ │ │ │ ├── GENFL8C.C │ │ │ │ ├── GENGFL8.C │ │ │ │ ├── GENHFL8.C │ │ │ │ ├── GENHLIN.C │ │ │ │ ├── GENLIN.C │ │ │ │ ├── GENMONO.C │ │ │ │ ├── GENOV.C │ │ │ │ ├── GENOV.H │ │ │ │ ├── GENPIX.C │ │ │ │ ├── GENRECT.C │ │ │ │ ├── GENRSD8.C │ │ │ │ ├── GENRSDBM.C │ │ │ │ ├── GENRSDTM.C │ │ │ │ ├── GENSLIN.C │ │ │ │ ├── GENSTR.C │ │ │ │ ├── GENTE.C │ │ │ │ ├── GENTE.H │ │ │ │ ├── GENTF.H │ │ │ │ ├── GENTL8.C │ │ │ │ ├── GENTM.C │ │ │ │ ├── GENUCHR.C │ │ │ │ ├── GENUCLIN.C │ │ │ │ ├── GENUHLIN.C │ │ │ │ ├── GENULIN.C │ │ │ │ ├── GENUSLIN.C │ │ │ │ ├── GENUSTR.C │ │ │ │ ├── GENUVLIN.C │ │ │ │ ├── GENVCPLY.C │ │ │ │ ├── GENVLIN.C │ │ │ │ ├── GENVPOLY.C │ │ │ │ ├── GENVRECT.C │ │ │ │ ├── GENWCLIN.C │ │ │ │ └── GENWLIN.C │ │ │ ├── .rsrc │ │ │ │ ├── GENBOX.C │ │ │ │ ├── GENCHFL8.C │ │ │ │ ├── GENCHR.C │ │ │ │ ├── GENCIRC.C │ │ │ │ ├── GENCLIN.C │ │ │ │ ├── GENCNV.C │ │ │ │ ├── GENCWLIN.C │ │ │ │ ├── GENDISK.C │ │ │ │ ├── GENEL.C │ │ │ │ ├── GENEL.H │ │ │ │ ├── GENERAL.C │ │ │ │ ├── GENERAL.H │ │ │ │ ├── GENF24.C │ │ │ │ ├── GENFL8.C │ │ │ │ ├── GENFL8C.C │ │ │ │ ├── GENGFL8.C │ │ │ │ ├── GENHFL8.C │ │ │ │ ├── GENHLIN.C │ │ │ │ ├── GENLIN.C │ │ │ │ ├── GENMONO.C │ │ │ │ ├── GENOV.C │ │ │ │ ├── GENOV.H │ │ │ │ ├── GENPIX.C │ │ │ │ ├── GENRECT.C │ │ │ │ ├── GENRSD8.C │ │ │ │ ├── GENRSDBM.C │ │ │ │ ├── GENRSDTM.C │ │ │ │ ├── GENSLIN.C │ │ │ │ ├── GENSTR.C │ │ │ │ ├── GENTE.C │ │ │ │ ├── GENTE.H │ │ │ │ ├── GENTF.H │ │ │ │ ├── GENTL8.C │ │ │ │ ├── GENTM.C │ │ │ │ ├── GENUCHR.C │ │ │ │ ├── GENUCLIN.C │ │ │ │ ├── GENUHLIN.C │ │ │ │ ├── GENULIN.C │ │ │ │ ├── GENUSLIN.C │ │ │ │ ├── GENUSTR.C │ │ │ │ ├── GENUVLIN.C │ │ │ │ ├── GENVCPLY.C │ │ │ │ ├── GENVLIN.C │ │ │ │ ├── GENVPOLY.C │ │ │ │ ├── GENVRECT.C │ │ │ │ ├── GENWCLIN.C │ │ │ │ └── GENWLIN.C │ │ │ ├── GENBOX.C │ │ │ ├── GENCHFL8.C │ │ │ ├── GENCHR.C │ │ │ ├── GENCIRC.C │ │ │ ├── GENCLIN.C │ │ │ ├── GENCNV.C │ │ │ ├── GENCWLIN.C │ │ │ ├── GENDISK.C │ │ │ ├── GENEL.C │ │ │ ├── GENEL.H │ │ │ ├── GENERAL.C │ │ │ ├── GENERAL.H │ │ │ ├── GENF24.C │ │ │ ├── GENFL8.C │ │ │ ├── GENFL8C.C │ │ │ ├── GENGFL8.C │ │ │ ├── GENHFL8.C │ │ │ ├── GENHLIN.C │ │ │ ├── GENLIN.C │ │ │ ├── GENMONO.C │ │ │ ├── GENOV.C │ │ │ ├── GENOV.H │ │ │ ├── GENPIX.C │ │ │ ├── GENRECT.C │ │ │ ├── GENRSD8.C │ │ │ ├── GENRSDBM.C │ │ │ ├── GENRSDTM.C │ │ │ ├── GENSLIN.C │ │ │ ├── GENSTR.C │ │ │ ├── GENTE.C │ │ │ ├── GENTE.H │ │ │ ├── GENTF.H │ │ │ ├── GENTL8.C │ │ │ ├── GENTM.C │ │ │ ├── GENUCHR.C │ │ │ ├── GENUCLIN.C │ │ │ ├── GENUHLIN.C │ │ │ ├── GENULIN.C │ │ │ ├── GENUSLIN.C │ │ │ ├── GENUSTR.C │ │ │ ├── GENUVLIN.C │ │ │ ├── GENVCPLY.C │ │ │ ├── GENVLIN.C │ │ │ ├── GENVPOLY.C │ │ │ ├── GENVRECT.C │ │ │ ├── GENWCLIN.C │ │ │ └── GENWLIN.C │ │ ├── ICANVAS.H │ │ ├── IDEVICE.H │ │ ├── IFCN.H │ │ ├── INIT.C │ │ ├── INIT.H │ │ ├── INITINT.H │ │ ├── INVTAB.C │ │ ├── INVTAB.H │ │ ├── InitMac2d.c │ │ ├── LINE.H │ │ ├── LINFCN.H │ │ ├── LINTAB.C │ │ ├── LINTAB.H │ │ ├── LINTYP.H │ │ ├── LinearLoop.s │ │ ├── MODE.C │ │ ├── MODE.H │ │ ├── MacDev.c │ │ ├── MacDev.h │ │ ├── PAL.C │ │ ├── PAL.H │ │ ├── PERMAP.C │ │ ├── PERSETUP.C │ │ ├── PERTOL.C │ │ ├── PERTOL.H │ │ ├── PERTYP.H │ │ ├── PIXFILL.C │ │ ├── PIXFILL.H │ │ ├── PIXTAB.H │ │ ├── PLYTYP.H │ │ ├── POLY.H │ │ ├── POLYINT.H │ │ ├── PermapLoop.s │ │ ├── RGB.C │ │ ├── RGB.H │ │ ├── RSD │ │ │ ├── .finf │ │ │ │ ├── RSD.H │ │ │ │ ├── RSDCVT.C │ │ │ │ ├── RSDUNPCK.ASM │ │ │ │ ├── RSDUNPCK.H │ │ │ │ └── RSDUnpack.c │ │ │ ├── .rsrc │ │ │ │ ├── RSD.H │ │ │ │ ├── RSDCVT.C │ │ │ │ ├── RSDUNPCK.ASM │ │ │ │ ├── RSDUNPCK.H │ │ │ │ └── RSDUnpack.c │ │ │ ├── RSD.H │ │ │ ├── RSDCVT.C │ │ │ ├── RSDUNPCK.ASM │ │ │ ├── RSDUNPCK.H │ │ │ └── RSDUnpack.c │ │ ├── SCRDAT.H │ │ ├── SCREEN.C │ │ ├── SCREEN.H │ │ ├── SCRMAC.H │ │ ├── SSCRN.C │ │ ├── STATE.H │ │ ├── STATUS.H │ │ ├── STR.H │ │ ├── STRNSIZ.C │ │ ├── STRSCL.C │ │ ├── STRSIZ.C │ │ ├── STRUSCL.C │ │ ├── STRWID.C │ │ ├── STRWRAP.C │ │ ├── SVGAINIT.C │ │ ├── StateStk.c │ │ ├── TABDAT.H │ │ ├── TABDRV.H │ │ ├── TEMPBM.C │ │ ├── TEMPTM.C │ │ ├── TLUCDAT.C │ │ ├── TLUCDAT.H │ │ ├── TLUCTAB.C │ │ ├── TLUCTAB.H │ │ ├── TMAPFCN.H │ │ ├── TMAPINT.H │ │ ├── TMAPS.H │ │ ├── TMAPTAB.H │ │ ├── VALLOC.C │ │ ├── VALLOC.H │ │ ├── VESA.H │ │ ├── VTAB.C │ │ ├── VTAB.H │ │ ├── WIRE.H │ │ ├── WIRPOLY.C │ │ ├── WallLitLoop1D.s │ │ ├── devtab.c │ │ └── maxmin.h │ ├── Test Source │ │ ├── .finf │ │ │ ├── SimpMain.c │ │ │ ├── SimpleMain.c │ │ │ ├── test │ │ │ └── xSimpMain.c │ │ ├── .rsrc │ │ │ ├── SimpMain.c │ │ │ ├── SimpleMain.c │ │ │ └── xSimpMain.c │ │ ├── SimpMain.c │ │ ├── SimpleMain.c │ │ ├── test │ │ │ ├── .finf │ │ │ │ ├── Full Mapper tests.c │ │ │ │ ├── circletest.c │ │ │ │ ├── font test.c │ │ │ │ ├── lighting test.c │ │ │ │ ├── lighting2 test.c │ │ │ │ ├── misc powerpc opt test │ │ │ │ ├── polytest.c │ │ │ │ └── polytest2.c │ │ │ ├── .rsrc │ │ │ │ ├── Full Mapper tests.c │ │ │ │ ├── circletest.c │ │ │ │ ├── font test.c │ │ │ │ ├── lighting test.c │ │ │ │ ├── lighting2 test.c │ │ │ │ ├── misc powerpc opt test │ │ │ │ ├── polytest.c │ │ │ │ └── polytest2.c │ │ │ ├── Full Mapper tests.c │ │ │ ├── circletest.c │ │ │ ├── font test.c │ │ │ ├── lighting test.c │ │ │ ├── lighting2 test.c │ │ │ ├── misc powerpc opt test │ │ │ ├── polytest.c │ │ │ └── polytest2.c │ │ └── xSimpMain.c │ ├── TestInitMac.c │ ├── extra.res │ ├── test.img │ ├── test.pal │ └── test.shd ├── 3D │ ├── .finf │ │ ├── 3D.make │ │ ├── 3dLib68K.¹ │ │ ├── 3dLibPPC.¹ │ │ ├── 3dLibPPC.¹ copy │ │ ├── 3dTest.make │ │ ├── 3dTest.xcoff │ │ ├── 3dTest.xlines │ │ ├── 3dTest.¹.rsrc │ │ ├── 3dTest68K.¹ │ │ ├── 3dTestPPC.¹ │ │ ├── Source │ │ ├── Tests │ │ ├── bit.dat │ │ ├── bit.dat(pc) │ │ ├── obj3d.rsrc │ │ └── pal.dat │ ├── .rsrc │ │ ├── 3D.make │ │ ├── 3dLib68K.¹ │ │ ├── 3dLibPPC.¹ │ │ ├── 3dLibPPC.¹ copy │ │ ├── 3dTest.make │ │ ├── 3dTest.¹.rsrc │ │ ├── 3dTest68K.¹ │ │ ├── 3dTestPPC.¹ │ │ ├── bit.dat │ │ ├── bit.dat(pc) │ │ └── obj3d.rsrc │ ├── 3D.make │ ├── 3dLib68K.¹ │ ├── 3dLibPPC.¹ │ ├── 3dLibPPC.¹ copy │ ├── 3dTest.make │ ├── 3dTest.xcoff │ ├── 3dTest.xlines │ ├── 3dTest.¹.rsrc │ ├── 3dTest68K.¹ │ ├── 3dTestPPC.¹ │ ├── Source │ │ ├── .finf │ │ │ ├── 3D.H │ │ │ ├── 3DINTERP.H │ │ │ ├── 3dTest.c │ │ │ ├── ALLOC.C │ │ │ ├── Bitmap.C │ │ │ ├── CLIP.C │ │ │ ├── DETAIL.C │ │ │ ├── FAUXREND.H │ │ │ ├── FOV.C │ │ │ ├── GlobalV.C │ │ │ ├── GlobalV.H │ │ │ ├── INSTANCE.C │ │ │ ├── INTERP.C │ │ │ ├── INTERP.C (orig) │ │ │ ├── LIGHT.C │ │ │ ├── MATRIX.C │ │ │ ├── POINTS.C │ │ │ ├── POLYGON.C │ │ │ ├── SLEW.C │ │ │ ├── TMAP.C │ │ │ └── VECTOR.C │ │ ├── .rsrc │ │ │ ├── 3D.H │ │ │ ├── 3DINTERP.H │ │ │ ├── 3dTest.c │ │ │ ├── ALLOC.C │ │ │ ├── Bitmap.C │ │ │ ├── CLIP.C │ │ │ ├── DETAIL.C │ │ │ ├── FAUXREND.H │ │ │ ├── FOV.C │ │ │ ├── GlobalV.C │ │ │ ├── GlobalV.H │ │ │ ├── INSTANCE.C │ │ │ ├── INTERP.C │ │ │ ├── INTERP.C (orig) │ │ │ ├── LIGHT.C │ │ │ ├── MATRIX.C │ │ │ ├── POINTS.C │ │ │ ├── POLYGON.C │ │ │ ├── SLEW.C │ │ │ ├── TMAP.C │ │ │ └── VECTOR.C │ │ ├── 3D.H │ │ ├── 3DINTERP.H │ │ ├── 3dTest.c │ │ ├── ALLOC.C │ │ ├── Bitmap.C │ │ ├── CLIP.C │ │ ├── DETAIL.C │ │ ├── FAUXREND.H │ │ ├── FOV.C │ │ ├── GlobalV.C │ │ ├── GlobalV.H │ │ ├── INSTANCE.C │ │ ├── INTERP.C │ │ ├── INTERP.C (orig) │ │ ├── LIGHT.C │ │ ├── MATRIX.C │ │ ├── POINTS.C │ │ ├── POLYGON.C │ │ ├── SLEW.C │ │ ├── TMAP.C │ │ └── VECTOR.C │ ├── Tests │ │ ├── .finf │ │ │ ├── BitmapTest.C │ │ │ ├── BoxTest.c │ │ │ ├── GenBoxTest.c │ │ │ ├── ObjTest.C │ │ │ ├── TMAPTest.C │ │ │ └── TestInitMac.c │ │ ├── .rsrc │ │ │ ├── BitmapTest.C │ │ │ ├── BoxTest.c │ │ │ ├── GenBoxTest.c │ │ │ ├── ObjTest.C │ │ │ ├── TMAPTest.C │ │ │ └── TestInitMac.c │ │ ├── BitmapTest.C │ │ ├── BoxTest.c │ │ ├── GenBoxTest.c │ │ ├── ObjTest.C │ │ ├── TMAPTest.C │ │ └── TestInitMac.c │ ├── bit.dat │ ├── bit.dat(pc) │ ├── obj3d.rsrc │ └── pal.dat ├── AFILE │ ├── .finf │ │ ├── AddSoundToMovie.µ │ │ ├── AnimConv.µ │ │ ├── MovConv.µ │ │ ├── MovConv.µ copy │ │ ├── MovieInfo.µ │ │ ├── OldAnimConv │ │ ├── OldAnimConv.µ │ │ ├── QTConv.µ │ │ └── Source │ ├── .rsrc │ │ ├── AddSoundToMovie.µ │ │ ├── AnimConv.µ │ │ ├── MovConv.µ │ │ ├── MovConv.µ copy │ │ ├── MovieInfo.µ │ │ ├── OldAnimConv │ │ ├── OldAnimConv.µ │ │ └── QTConv.µ │ ├── AddSoundToMovie.µ │ ├── AnimConv.µ │ ├── MovConv.µ │ ├── MovConv.µ copy │ ├── MovieInfo.µ │ ├── OldAnimConv │ ├── OldAnimConv.µ │ ├── QTConv.µ │ └── Source │ │ ├── .finf │ │ ├── AFILE.C │ │ ├── AFILE.H │ │ ├── AMOV.C │ │ ├── ANIMCONV.C │ │ ├── AQTM.C │ │ ├── AddSoundToMovie.c │ │ ├── CIRCBUFF.H │ │ ├── COMPOSE.C │ │ ├── COMPOSE.H │ │ ├── DumpHex.c │ │ ├── MOVIE.H │ │ ├── MOVINFO.C │ │ ├── MovConv.c │ │ ├── MovConvDiv.c │ │ ├── OldAnimConv.c │ │ ├── PalExtract.c │ │ ├── QTConv.c │ │ ├── QUIKCONV.C │ │ ├── QUIKDUMP.C │ │ ├── QUIKTIME.C │ │ ├── QUIKTIME.H │ │ ├── QUIKWRIT.C │ │ └── SubTitles.c │ │ ├── .rsrc │ │ ├── AFILE.C │ │ ├── AFILE.H │ │ ├── AMOV.C │ │ ├── ANIMCONV.C │ │ ├── AQTM.C │ │ ├── AddSoundToMovie.c │ │ ├── CIRCBUFF.H │ │ ├── COMPOSE.C │ │ ├── COMPOSE.H │ │ ├── DumpHex.c │ │ ├── MOVIE.H │ │ ├── MOVINFO.C │ │ ├── MovConv.c │ │ ├── MovConvDiv.c │ │ ├── OldAnimConv.c │ │ ├── PalExtract.c │ │ ├── QTConv.c │ │ ├── QUIKCONV.C │ │ ├── QUIKDUMP.C │ │ ├── QUIKTIME.C │ │ ├── QUIKTIME.H │ │ ├── QUIKWRIT.C │ │ └── SubTitles.c │ │ ├── AFILE.C │ │ ├── AFILE.H │ │ ├── AMOV.C │ │ ├── ANIMCONV.C │ │ ├── AQTM.C │ │ ├── AddSoundToMovie.c │ │ ├── CIRCBUFF.H │ │ ├── COMPOSE.C │ │ ├── COMPOSE.H │ │ ├── DumpHex.c │ │ ├── MOVIE.H │ │ ├── MOVINFO.C │ │ ├── MovConv.c │ │ ├── MovConvDiv.c │ │ ├── OldAnimConv.c │ │ ├── PalExtract.c │ │ ├── QTConv.c │ │ ├── QUIKCONV.C │ │ ├── QUIKDUMP.C │ │ ├── QUIKTIME.C │ │ ├── QUIKTIME.H │ │ ├── QUIKWRIT.C │ │ └── SubTitles.c ├── DSTRUCT │ ├── .finf │ │ ├── DSTRUCT.68K.µ │ │ ├── DSTRUCT.µ │ │ ├── DSTRUCT.µ copy │ │ ├── Source │ │ └── Tests │ ├── .rsrc │ │ ├── DSTRUCT.68K.µ │ │ ├── DSTRUCT.µ │ │ └── DSTRUCT.µ copy │ ├── DSTRUCT.68K.µ │ ├── DSTRUCT.µ │ ├── DSTRUCT.µ copy │ ├── Source │ │ ├── .finf │ │ │ ├── ARRAY.C │ │ │ ├── ARRAY.H │ │ │ ├── HASH.C │ │ │ ├── HASH.H │ │ │ ├── LLIST.C │ │ │ ├── LLIST.H │ │ │ ├── LLLIST.C │ │ │ ├── PQUEUE.C │ │ │ ├── PQUEUE.H │ │ │ ├── RECT.C │ │ │ ├── RECT.H │ │ │ └── SLIST.H │ │ ├── .rsrc │ │ │ ├── ARRAY.C │ │ │ ├── ARRAY.H │ │ │ ├── HASH.C │ │ │ ├── HASH.H │ │ │ ├── LLIST.C │ │ │ ├── LLIST.H │ │ │ ├── LLLIST.C │ │ │ ├── PQUEUE.C │ │ │ ├── PQUEUE.H │ │ │ ├── RECT.C │ │ │ ├── RECT.H │ │ │ └── SLIST.H │ │ ├── ARRAY.C │ │ ├── ARRAY.H │ │ ├── HASH.C │ │ ├── HASH.H │ │ ├── LLIST.C │ │ ├── LLIST.H │ │ ├── LLLIST.C │ │ ├── PQUEUE.C │ │ ├── PQUEUE.H │ │ ├── RECT.C │ │ ├── RECT.H │ │ └── SLIST.H │ └── Tests │ │ ├── .finf │ │ ├── ARRAYTST.C │ │ ├── ArrayTest.µ │ │ ├── HASHLEX.C │ │ ├── HASHLEX.LEX │ │ ├── HASHTEST.C │ │ ├── HASHTEST.H │ │ ├── HASHTEST.Y │ │ ├── HASHTOK.H │ │ ├── kcHashTest.68K.µ │ │ ├── kcHashTest.cp │ │ └── kcHashTest.µ │ │ ├── .rsrc │ │ ├── ARRAYTST.C │ │ ├── ArrayTest.µ │ │ ├── HASHLEX.C │ │ ├── HASHTEST.C │ │ ├── kcHashTest.68K.µ │ │ ├── kcHashTest.cp │ │ └── kcHashTest.µ │ │ ├── ARRAYTST.C │ │ ├── ArrayTest.µ │ │ ├── HASHLEX.C │ │ ├── HASHLEX.LEX │ │ ├── HASHTEST.C │ │ ├── HASHTEST.H │ │ ├── HASHTEST.Y │ │ ├── HASHTOK.H │ │ ├── kcHashTest.68K.µ │ │ ├── kcHashTest.cp │ │ └── kcHashTest.µ ├── EDMS │ ├── .finf │ │ ├── EDMS.68K.µ │ │ ├── EDMS.µ │ │ ├── EDMS.µ copy │ │ ├── Source │ │ └── Tests │ ├── .rsrc │ │ ├── EDMS.68K.µ │ │ ├── EDMS.µ │ │ └── EDMS.µ copy │ ├── EDMS.68K.µ │ ├── EDMS.µ │ ├── EDMS.µ copy │ ├── Source │ │ ├── .finf │ │ │ ├── COLLIDE.CC │ │ │ ├── EDMS.H │ │ │ ├── EDMS_CHK.H │ │ │ ├── EDMS_INT.H │ │ │ ├── EDMS_MOD.H │ │ │ ├── EDMS_VT.H │ │ │ ├── EXTERNS.H │ │ │ ├── GLOBALS.CC │ │ │ ├── IDOF.H │ │ │ ├── INTERFAC.CC │ │ │ ├── INTRSECT.CC │ │ │ ├── MODELS │ │ │ ├── Old EDMS.H │ │ │ ├── PHYSHAND.H │ │ │ ├── PHY_TOOL.CC │ │ │ ├── SOLITON.CC │ │ │ ├── SS_FLET.H │ │ │ └── TERRAIN.CC │ │ ├── .rsrc │ │ │ ├── COLLIDE.CC │ │ │ ├── EDMS.H │ │ │ ├── EDMS_CHK.H │ │ │ ├── EDMS_INT.H │ │ │ ├── EDMS_MOD.H │ │ │ ├── EDMS_VT.H │ │ │ ├── EXTERNS.H │ │ │ ├── GLOBALS.CC │ │ │ ├── IDOF.H │ │ │ ├── INTERFAC.CC │ │ │ ├── INTRSECT.CC │ │ │ ├── Old EDMS.H │ │ │ ├── PHYSHAND.H │ │ │ ├── PHY_TOOL.CC │ │ │ ├── SOLITON.CC │ │ │ ├── SS_FLET.H │ │ │ └── TERRAIN.CC │ │ ├── COLLIDE.CC │ │ ├── EDMS.H │ │ ├── EDMS_CHK.H │ │ ├── EDMS_INT.H │ │ ├── EDMS_MOD.H │ │ ├── EDMS_VT.H │ │ ├── EXTERNS.H │ │ ├── GLOBALS.CC │ │ ├── IDOF.H │ │ ├── INTERFAC.CC │ │ ├── INTRSECT.CC │ │ ├── MODELS │ │ │ ├── .finf │ │ │ │ ├── B.CC │ │ │ │ ├── BB.CC │ │ │ │ ├── BIPED.CC │ │ │ │ ├── BIPED.H │ │ │ │ ├── BIPFACE.CC │ │ │ │ ├── BIP_SKEL.CC │ │ │ │ ├── CR_BIPED.CC │ │ │ │ ├── DEATH.CC │ │ │ │ ├── DEATH.H │ │ │ │ ├── D_FRAME.CC │ │ │ │ ├── D_FRAME.H │ │ │ │ ├── D_F_2.CC │ │ │ │ ├── D_F_FACE.CC │ │ │ │ ├── FF_FACE.CC │ │ │ │ ├── FF_FTL.CC │ │ │ │ ├── FF_FTL.H │ │ │ │ ├── FODEATH.CC │ │ │ │ ├── FTL.CC │ │ │ │ ├── FTL.H │ │ │ │ ├── FTLFACE.CC │ │ │ │ ├── MARBFACE.CC │ │ │ │ ├── MARBLE.CC │ │ │ │ ├── MARBLE.H │ │ │ │ ├── OLD_FTL.CC │ │ │ │ ├── PELFACE.CC │ │ │ │ ├── PELGUD.CC │ │ │ │ ├── PELVIS.CC │ │ │ │ ├── PELVIS.H │ │ │ │ ├── ROBOT.CC │ │ │ │ └── ROBOT.H │ │ │ ├── .rsrc │ │ │ │ ├── B.CC │ │ │ │ ├── BB.CC │ │ │ │ ├── BIPED.CC │ │ │ │ ├── BIPED.H │ │ │ │ ├── BIPFACE.CC │ │ │ │ ├── BIP_SKEL.CC │ │ │ │ ├── CR_BIPED.CC │ │ │ │ ├── DEATH.CC │ │ │ │ ├── DEATH.H │ │ │ │ ├── D_FRAME.CC │ │ │ │ ├── D_FRAME.H │ │ │ │ ├── D_F_2.CC │ │ │ │ ├── D_F_FACE.CC │ │ │ │ ├── FF_FACE.CC │ │ │ │ ├── FF_FTL.CC │ │ │ │ ├── FODEATH.CC │ │ │ │ ├── FTL.CC │ │ │ │ ├── FTL.H │ │ │ │ ├── FTLFACE.CC │ │ │ │ ├── MARBFACE.CC │ │ │ │ ├── MARBLE.CC │ │ │ │ ├── MARBLE.H │ │ │ │ ├── PELFACE.CC │ │ │ │ ├── PELGUD.CC │ │ │ │ ├── PELVIS.CC │ │ │ │ ├── PELVIS.H │ │ │ │ ├── ROBOT.CC │ │ │ │ └── ROBOT.H │ │ │ ├── B.CC │ │ │ ├── BB.CC │ │ │ ├── BIPED.CC │ │ │ ├── BIPED.H │ │ │ ├── BIPFACE.CC │ │ │ ├── BIP_SKEL.CC │ │ │ ├── CR_BIPED.CC │ │ │ ├── DEATH.CC │ │ │ ├── DEATH.H │ │ │ ├── D_FRAME.CC │ │ │ ├── D_FRAME.H │ │ │ ├── D_F_2.CC │ │ │ ├── D_F_FACE.CC │ │ │ ├── FF_FACE.CC │ │ │ ├── FF_FTL.CC │ │ │ ├── FF_FTL.H │ │ │ ├── FODEATH.CC │ │ │ ├── FTL.CC │ │ │ ├── FTL.H │ │ │ ├── FTLFACE.CC │ │ │ ├── MARBFACE.CC │ │ │ ├── MARBLE.CC │ │ │ ├── MARBLE.H │ │ │ ├── OLD_FTL.CC │ │ │ ├── PELFACE.CC │ │ │ ├── PELGUD.CC │ │ │ ├── PELVIS.CC │ │ │ ├── PELVIS.H │ │ │ ├── ROBOT.CC │ │ │ └── ROBOT.H │ │ ├── Old EDMS.H │ │ ├── PHYSHAND.H │ │ ├── PHY_TOOL.CC │ │ ├── SOLITON.CC │ │ ├── SS_FLET.H │ │ └── TERRAIN.CC │ └── Tests │ │ ├── .finf │ │ ├── BTEST.C │ │ ├── HACKTERR.C │ │ ├── MTEST.C │ │ ├── SIMPLE.CC │ │ ├── SIMPLE.H │ │ ├── TEST_BED.CP │ │ ├── TEST_BED.H │ │ ├── TestInitMac.c │ │ ├── kcTestEDMS.68K.µ │ │ ├── kcTestEDMS.cp │ │ └── kcTestEDMS.µ │ │ ├── .rsrc │ │ ├── BTEST.C │ │ ├── HACKTERR.C │ │ ├── MTEST.C │ │ ├── SIMPLE.CC │ │ ├── SIMPLE.H │ │ ├── TEST_BED.CP │ │ ├── TEST_BED.H │ │ ├── TestInitMac.c │ │ ├── kcTestEDMS.68K.µ │ │ ├── kcTestEDMS.cp │ │ └── kcTestEDMS.µ │ │ ├── BTEST.C │ │ ├── HACKTERR.C │ │ ├── MTEST.C │ │ ├── SIMPLE.CC │ │ ├── SIMPLE.H │ │ ├── TEST_BED.CP │ │ ├── TEST_BED.H │ │ ├── TestInitMac.c │ │ ├── kcTestEDMS.68K.µ │ │ ├── kcTestEDMS.cp │ │ └── kcTestEDMS.µ ├── FIX │ ├── .finf │ │ ├── FIX.68K.µ │ │ ├── FIX.µ │ │ ├── FIX.µ copy │ │ ├── Source │ │ └── Tests │ ├── .rsrc │ │ ├── FIX.68K.µ │ │ ├── FIX.µ │ │ └── FIX.µ copy │ ├── FIX.68K.µ │ ├── FIX.µ │ ├── FIX.µ copy │ ├── Source │ │ ├── .finf │ │ │ ├── ATOFIX.C │ │ │ ├── FIX.C │ │ │ ├── FIX.H │ │ │ ├── FIX.INC │ │ │ ├── FIX24.C │ │ │ ├── FIXSPRNT.C │ │ │ ├── FIX_ASM.ASM │ │ │ ├── FIX_POW.C │ │ │ ├── FIX_SQRT.C │ │ │ ├── F_EXP.C │ │ │ ├── FixAsm Proj │ │ │ ├── FixAsm.s │ │ │ ├── FixMath.s │ │ │ ├── MakeTables.c │ │ │ ├── OTRIGTAB.H │ │ │ ├── TRIGTAB.H │ │ │ └── div64 │ │ ├── .rsrc │ │ │ ├── ATOFIX.C │ │ │ ├── FIX.C │ │ │ ├── FIX.H │ │ │ ├── FIX.INC │ │ │ ├── FIX24.C │ │ │ ├── FIXSPRNT.C │ │ │ ├── FIX_ASM.ASM │ │ │ ├── FIX_POW.C │ │ │ ├── FIX_SQRT.C │ │ │ ├── F_EXP.C │ │ │ ├── FixAsm Proj │ │ │ ├── FixAsm.s │ │ │ ├── FixMath.s │ │ │ ├── MakeTables.c │ │ │ ├── OTRIGTAB.H │ │ │ ├── TRIGTAB.H │ │ │ └── div64 │ │ ├── ATOFIX.C │ │ ├── FIX.C │ │ ├── FIX.H │ │ ├── FIX.INC │ │ ├── FIX24.C │ │ ├── FIXSPRNT.C │ │ ├── FIX_ASM.ASM │ │ ├── FIX_POW.C │ │ ├── FIX_SQRT.C │ │ ├── F_EXP.C │ │ ├── FixAsm Proj │ │ ├── FixAsm.s │ │ ├── FixMath.s │ │ ├── MakeTables.c │ │ ├── OTRIGTAB.H │ │ ├── TRIGTAB.H │ │ └── div64 │ └── Tests │ │ ├── .finf │ │ ├── FIX24TST.C │ │ ├── FixTest │ │ ├── MakeTables │ │ ├── New FixMath Code.1 │ │ ├── SqrtTest │ │ ├── TrigErr │ │ └── asmSample │ │ ├── .rsrc │ │ └── FIX24TST.C │ │ ├── FIX24TST.C │ │ ├── FixTest │ │ ├── .finf │ │ │ ├── FIXTEST.C │ │ │ ├── FixTest.68K.µ │ │ │ ├── FixTest.make │ │ │ └── FixTest.µ │ │ ├── .rsrc │ │ │ ├── FIXTEST.C │ │ │ ├── FixTest.68K.µ │ │ │ ├── FixTest.make │ │ │ └── FixTest.µ │ │ ├── FIXTEST.C │ │ ├── FixTest.68K.µ │ │ ├── FixTest.make │ │ └── FixTest.µ │ │ ├── MakeTables │ │ ├── .finf │ │ │ ├── FMAKETAB.CC │ │ │ └── MakeTables.µ │ │ ├── .rsrc │ │ │ ├── FMAKETAB.CC │ │ │ └── MakeTables.µ │ │ ├── FMAKETAB.CC │ │ └── MakeTables.µ │ │ ├── New FixMath Code.1 │ │ ├── .finf │ │ │ ├── FixMath.s │ │ │ └── TestFixDiv Ä │ │ ├── .rsrc │ │ │ └── FixMath.s │ │ ├── FixMath.s │ │ └── TestFixDiv Ä │ │ │ ├── .finf │ │ │ ├── TestFixDiv.c │ │ │ └── TestFixDiv.¹ │ │ │ ├── .rsrc │ │ │ ├── TestFixDiv.c │ │ │ └── TestFixDiv.¹ │ │ │ ├── TestFixDiv.c │ │ │ └── TestFixDiv.¹ │ │ ├── SqrtTest │ │ ├── .finf │ │ │ ├── SQRTTEST.C │ │ │ ├── SqrtTest.68K.µ │ │ │ └── SqrtTest.µ │ │ ├── .rsrc │ │ │ ├── SQRTTEST.C │ │ │ ├── SqrtTest.68K.µ │ │ │ └── SqrtTest.µ │ │ ├── SQRTTEST.C │ │ ├── SqrtTest.68K.µ │ │ └── SqrtTest.µ │ │ ├── TrigErr │ │ ├── .finf │ │ │ ├── TRIGERR.C │ │ │ ├── TrigErr.68K.µ │ │ │ ├── TrigErr.make │ │ │ └── TrigErr.µ │ │ ├── .rsrc │ │ │ ├── TRIGERR.C │ │ │ ├── TrigErr.68K.µ │ │ │ ├── TrigErr.make │ │ │ └── TrigErr.µ │ │ ├── TRIGERR.C │ │ ├── TrigErr.68K.µ │ │ ├── TrigErr.make │ │ └── TrigErr.µ │ │ └── asmSample │ │ ├── .finf │ │ ├── AsmSample ReadMe │ │ ├── AsmSample.c │ │ ├── AsmSample.make │ │ ├── AsmSample.r │ │ ├── asm.s │ │ ├── asm.µ │ │ ├── blah │ │ ├── main.c │ │ └── test.s │ │ ├── .rsrc │ │ ├── AsmSample ReadMe │ │ ├── AsmSample.c │ │ ├── AsmSample.make │ │ ├── AsmSample.r │ │ ├── asm.s │ │ ├── asm.µ │ │ ├── blah │ │ ├── main.c │ │ └── test.s │ │ ├── AsmSample ReadMe │ │ ├── AsmSample.c │ │ ├── AsmSample.make │ │ ├── AsmSample.r │ │ ├── asm.s │ │ ├── asm.µ │ │ ├── blah │ │ ├── main.c │ │ └── test.s ├── FIXPP │ ├── .finf │ │ ├── FIXPP.68K.µ │ │ ├── FIXPP.µ │ │ ├── FIXPP.µ copy │ │ ├── Source │ │ └── Tests │ ├── .rsrc │ │ ├── FIXPP.68K.µ │ │ ├── FIXPP.µ │ │ └── FIXPP.µ copy │ ├── FIXPP.68K.µ │ ├── FIXPP.µ │ ├── FIXPP.µ copy │ ├── Source │ │ ├── .finf │ │ │ ├── FIXPP.CC │ │ │ └── FIXPP.H │ │ ├── .rsrc │ │ │ ├── FIXPP.CC │ │ │ └── FIXPP.H │ │ ├── FIXPP.CC │ │ └── FIXPP.H │ └── Tests │ │ ├── .finf │ │ ├── FIXPPTST.CC │ │ ├── FixppTest.68K.µ │ │ ├── FixppTest.cc │ │ ├── FixppTest.make │ │ ├── FixppTest.µ │ │ └── Simple Fixpp │ │ ├── .rsrc │ │ ├── FIXPPTST.CC │ │ ├── FixppTest.68K.µ │ │ ├── FixppTest.cc │ │ ├── FixppTest.make │ │ └── FixppTest.µ │ │ ├── FIXPPTST.CC │ │ ├── FixppTest.68K.µ │ │ ├── FixppTest.cc │ │ ├── FixppTest.make │ │ ├── FixppTest.µ │ │ └── Simple Fixpp │ │ ├── .finf │ │ ├── SimpleFixpp.h │ │ ├── SimpleFixpp.µ │ │ ├── SimpleTest.cp │ │ ├── SimpleTest.make │ │ ├── SimpleTest.s │ │ ├── SimpleTest.¹ │ │ ├── SimpleTest2.make │ │ └── main.cp │ │ ├── .rsrc │ │ ├── SimpleFixpp.h │ │ ├── SimpleFixpp.µ │ │ ├── SimpleTest.cp │ │ ├── SimpleTest.make │ │ ├── SimpleTest.s │ │ ├── SimpleTest.¹ │ │ └── SimpleTest2.make │ │ ├── SimpleFixpp.h │ │ ├── SimpleFixpp.µ │ │ ├── SimpleTest.cp │ │ ├── SimpleTest.make │ │ ├── SimpleTest.s │ │ ├── SimpleTest.¹ │ │ ├── SimpleTest2.make │ │ └── main.cp ├── H │ ├── .finf │ │ ├── 2DRES.H │ │ ├── BASE.H │ │ ├── ERROR.H │ │ ├── TYPES.INC │ │ ├── keydefs.h │ │ └── lg_types.h │ ├── .rsrc │ │ ├── 2DRES.H │ │ ├── ERROR.H │ │ ├── keydefs.h │ │ └── lg_types.h │ ├── 2DRES.H │ ├── BASE.H │ ├── ERROR.H │ ├── TYPES.INC │ ├── keydefs.h │ └── lg_types.h ├── INPUT │ ├── .finf │ │ ├── INPUT.68K.µ │ │ ├── INPUT.µ │ │ ├── INPUT.µ copy │ │ ├── Source │ │ └── Tests │ ├── .rsrc │ │ ├── INPUT.68K.µ │ │ ├── INPUT.µ │ │ └── INPUT.µ copy │ ├── INPUT.68K.µ │ ├── INPUT.µ │ ├── INPUT.µ copy │ ├── Source │ │ ├── .finf │ │ │ ├── InputAsm Proj │ │ │ ├── InputAsm.s │ │ │ ├── KB.H │ │ │ ├── KBCOOK.C │ │ │ ├── KBCOOK.H │ │ │ ├── KBGLOB.H │ │ │ ├── MOUSE.C │ │ │ ├── MOUSE.H │ │ │ ├── MOUSEVEL.H │ │ │ └── kbMac.c │ │ ├── .rsrc │ │ │ ├── InputAsm Proj │ │ │ ├── InputAsm.s │ │ │ ├── KB.H │ │ │ ├── KBCOOK.C │ │ │ ├── KBCOOK.H │ │ │ ├── KBGLOB.H │ │ │ ├── MOUSE.C │ │ │ ├── MOUSE.H │ │ │ ├── MOUSEVEL.H │ │ │ └── kbMac.c │ │ ├── InputAsm Proj │ │ ├── InputAsm.s │ │ ├── KB.H │ │ ├── KBCOOK.C │ │ ├── KBCOOK.H │ │ ├── KBGLOB.H │ │ ├── MOUSE.C │ │ ├── MOUSE.H │ │ ├── MOUSEVEL.H │ │ └── kbMac.c │ └── Tests │ │ ├── .finf │ │ ├── HOTKEY.C │ │ ├── HOTKEY.H │ │ ├── HOTTEST.C │ │ ├── HotKeyTest.68K.µ │ │ ├── HotKeyTest.µ │ │ ├── KBTEST.C │ │ ├── MOUSETST.C │ │ └── TESTCOOK.C │ │ ├── .rsrc │ │ ├── HOTKEY.C │ │ ├── HOTKEY.H │ │ ├── HOTTEST.C │ │ ├── HotKeyTest.68K.µ │ │ ├── HotKeyTest.µ │ │ ├── KBTEST.C │ │ ├── MOUSETST.C │ │ └── TESTCOOK.C │ │ ├── HOTKEY.C │ │ ├── HOTKEY.H │ │ ├── HOTTEST.C │ │ ├── HotKeyTest.68K.µ │ │ ├── HotKeyTest.µ │ │ ├── KBTEST.C │ │ ├── MOUSETST.C │ │ └── TESTCOOK.C ├── LG │ ├── .finf │ │ ├── LG.68K.µ │ │ ├── LG.µ │ │ ├── LG.µ copy │ │ ├── Source │ │ └── Tests │ ├── .rsrc │ │ ├── LG.68K.µ │ │ ├── LG.µ │ │ └── LG.µ copy │ ├── LG.68K.µ │ ├── LG.µ │ ├── LG.µ copy │ ├── Source │ │ ├── .finf │ │ │ ├── DBG.C │ │ │ ├── DBG.H │ │ │ ├── LG.H │ │ │ ├── LGSPRNTF.C │ │ │ ├── LGSPRNTF.H │ │ │ ├── LGmem.C │ │ │ ├── MEMALL.C │ │ │ ├── MEMALL.H │ │ │ ├── STACK.C │ │ │ ├── TMPALLOC.C │ │ │ └── TMPALLOC.H │ │ ├── .rsrc │ │ │ ├── DBG.C │ │ │ ├── DBG.H │ │ │ ├── LG.H │ │ │ ├── LGSPRNTF.C │ │ │ ├── LGSPRNTF.H │ │ │ ├── LGmem.C │ │ │ ├── MEMALL.C │ │ │ ├── MEMALL.H │ │ │ ├── STACK.C │ │ │ ├── TMPALLOC.C │ │ │ └── TMPALLOC.H │ │ ├── DBG.C │ │ ├── DBG.H │ │ ├── LG.H │ │ ├── LGSPRNTF.C │ │ ├── LGSPRNTF.H │ │ ├── LGmem.C │ │ ├── MEMALL.C │ │ ├── MEMALL.H │ │ ├── STACK.C │ │ ├── TMPALLOC.C │ │ └── TMPALLOC.H │ └── Tests │ │ ├── .finf │ │ ├── STACKTST.C │ │ ├── StackTest.68K.µ │ │ └── StackTest.µ │ │ ├── .rsrc │ │ ├── STACKTST.C │ │ ├── StackTest.68K.µ │ │ └── StackTest.µ │ │ ├── STACKTST.C │ │ ├── StackTest.68K.µ │ │ └── StackTest.µ ├── PALETTE │ ├── .finf │ │ ├── PALETTE.68K.µ │ │ ├── PALETTE.µ │ │ ├── PALETTE.µ copy │ │ ├── Source │ │ └── Tests │ ├── .rsrc │ │ ├── PALETTE.68K.µ │ │ ├── PALETTE.µ │ │ └── PALETTE.µ copy │ ├── PALETTE.68K.µ │ ├── PALETTE.µ │ ├── PALETTE.µ copy │ ├── Source │ │ ├── .finf │ │ │ ├── PALETTE.C │ │ │ └── PALETTE.H │ │ ├── .rsrc │ │ │ ├── PALETTE.C │ │ │ └── PALETTE.H │ │ ├── PALETTE.C │ │ └── PALETTE.H │ └── Tests │ │ ├── .finf │ │ ├── PALTEST.C │ │ ├── PalTest.68K.µ │ │ ├── PalTest.µ │ │ └── TestInitMac.c │ │ ├── .rsrc │ │ ├── PALTEST.C │ │ ├── PalTest.68K.µ │ │ ├── PalTest.µ │ │ └── TestInitMac.c │ │ ├── PALTEST.C │ │ ├── PalTest.68K.µ │ │ ├── PalTest.µ │ │ └── TestInitMac.c ├── RES │ ├── .finf │ │ ├── RES.68K.µ │ │ ├── RES.µ │ │ ├── RES.µ copy │ │ ├── Source │ │ └── Tests │ ├── .rsrc │ │ ├── RES.68K.µ │ │ ├── RES.µ │ │ └── RES.µ copy │ ├── RES.68K.µ │ ├── RES.µ │ ├── RES.µ copy │ ├── Source │ │ ├── .finf │ │ │ ├── LZW.C │ │ │ ├── LZW.H │ │ │ ├── REFACC.C │ │ │ ├── RES.C │ │ │ ├── RES.H │ │ │ ├── RESACC.C │ │ │ ├── RESBUILD.C │ │ │ ├── RESFILE.C │ │ │ ├── RESLOAD.C │ │ │ ├── RESMAKE.C │ │ │ ├── RESTYPES.C │ │ │ ├── RESTYPES.H │ │ │ └── RES_.H │ │ ├── .rsrc │ │ │ ├── LZW.C │ │ │ ├── LZW.H │ │ │ ├── REFACC.C │ │ │ ├── RES.C │ │ │ ├── RES.H │ │ │ ├── RESACC.C │ │ │ ├── RESBUILD.C │ │ │ ├── RESFILE.C │ │ │ ├── RESLOAD.C │ │ │ ├── RESMAKE.C │ │ │ ├── RESTYPES.C │ │ │ ├── RESTYPES.H │ │ │ └── RES_.H │ │ ├── LZW.C │ │ ├── LZW.H │ │ ├── REFACC.C │ │ ├── RES.C │ │ ├── RES.H │ │ ├── RESACC.C │ │ ├── RESBUILD.C │ │ ├── RESFILE.C │ │ ├── RESLOAD.C │ │ ├── RESMAKE.C │ │ ├── RESTYPES.C │ │ ├── RESTYPES.H │ │ └── RES_.H │ └── Tests │ │ ├── .finf │ │ ├── LZW Tests │ │ ├── Purge Test │ │ ├── Res Test │ │ └── ResDump │ │ ├── LZW Tests │ │ ├── .finf │ │ │ ├── LZWTEST.C │ │ │ ├── LzwLoadRes.c │ │ │ ├── LzwLoadRes.µ │ │ │ ├── LzwMakeRes.c │ │ │ ├── LzwMakeRes.µ │ │ │ └── LzwTest.µ │ │ ├── .rsrc │ │ │ ├── LZWTEST.C │ │ │ ├── LzwLoadRes.c │ │ │ ├── LzwLoadRes.µ │ │ │ ├── LzwMakeRes.c │ │ │ ├── LzwMakeRes.µ │ │ │ └── LzwTest.µ │ │ ├── LZWTEST.C │ │ ├── LzwLoadRes.c │ │ ├── LzwLoadRes.µ │ │ ├── LzwMakeRes.c │ │ ├── LzwMakeRes.µ │ │ └── LzwTest.µ │ │ ├── Purge Test │ │ ├── .finf │ │ │ ├── PurgeTest.68K.µ │ │ │ ├── PurgeTest.cp │ │ │ └── PurgeTest.µ │ │ ├── .rsrc │ │ │ ├── PurgeTest.68K.µ │ │ │ ├── PurgeTest.cp │ │ │ └── PurgeTest.µ │ │ ├── PurgeTest.68K.µ │ │ ├── PurgeTest.cp │ │ └── PurgeTest.µ │ │ ├── Res Test │ │ ├── .finf │ │ │ ├── RESTEST.C │ │ │ ├── ResTest.68K.µ │ │ │ └── ResTest.µ │ │ ├── .rsrc │ │ │ ├── RESTEST.C │ │ │ ├── ResTest.68K.µ │ │ │ └── ResTest.µ │ │ ├── RESTEST.C │ │ ├── ResTest.68K.µ │ │ └── ResTest.µ │ │ └── ResDump │ │ ├── .finf │ │ ├── ConvertFONT.c │ │ ├── ConvertIMAGE.c │ │ ├── LZW.C │ │ ├── LZW.H │ │ ├── RES.C │ │ ├── RES.H │ │ ├── RESDUMP.C │ │ ├── RESFILE.C │ │ ├── RESTYPES.C │ │ ├── RESTYPES.H │ │ ├── RES_.H │ │ ├── ResConvert.c │ │ ├── ResConvert.µ │ │ └── ResDumpPC.µ │ │ ├── .rsrc │ │ ├── ConvertFONT.c │ │ ├── ConvertIMAGE.c │ │ ├── LZW.C │ │ ├── LZW.H │ │ ├── RES.C │ │ ├── RES.H │ │ ├── RESDUMP.C │ │ ├── RESFILE.C │ │ ├── RESTYPES.C │ │ ├── RESTYPES.H │ │ ├── RES_.H │ │ ├── ResConvert.c │ │ ├── ResConvert.µ │ │ └── ResDumpPC.µ │ │ ├── ConvertFONT.c │ │ ├── ConvertIMAGE.c │ │ ├── LZW.C │ │ ├── LZW.H │ │ ├── RES.C │ │ ├── RES.H │ │ ├── RESDUMP.C │ │ ├── RESFILE.C │ │ ├── RESTYPES.C │ │ ├── RESTYPES.H │ │ ├── RES_.H │ │ ├── ResConvert.c │ │ ├── ResConvert.µ │ │ └── ResDumpPC.µ ├── RND │ ├── .finf │ │ ├── RND.68K.µ │ │ ├── RND.µ │ │ ├── RND.µ copy │ │ ├── Source │ │ └── Tests │ ├── .rsrc │ │ ├── RND.68K.µ │ │ ├── RND.µ │ │ └── RND.µ copy │ ├── RND.68K.µ │ ├── RND.µ │ ├── RND.µ copy │ ├── Source │ │ ├── .finf │ │ │ ├── RND.C │ │ │ ├── RND.H │ │ │ ├── RndAsm Proj │ │ │ └── RndAsm.s │ │ ├── .rsrc │ │ │ ├── RND.C │ │ │ ├── RND.H │ │ │ ├── RndAsm Proj │ │ │ └── RndAsm.s │ │ ├── RND.C │ │ ├── RND.H │ │ ├── RndAsm Proj │ │ └── RndAsm.s │ └── Tests │ │ ├── .finf │ │ ├── RNDTEST.C │ │ ├── RndTest.68K.µ │ │ └── RndTest.µ │ │ ├── .rsrc │ │ ├── RNDTEST.C │ │ ├── RndTest.68K.µ │ │ └── RndTest.µ │ │ ├── RNDTEST.C │ │ ├── RndTest.68K.µ │ │ └── RndTest.µ ├── SND │ ├── .finf │ │ ├── SND.68K.µ │ │ ├── SND.µ │ │ ├── SND.µ copy │ │ ├── Source │ │ └── Tests │ ├── .rsrc │ │ ├── SND.68K.µ │ │ ├── SND.µ │ │ └── SND.µ copy │ ├── SND.68K.µ │ ├── SND.µ │ ├── SND.µ copy │ ├── Source │ │ ├── .finf │ │ │ ├── DIGI.H │ │ │ ├── DIG_INIT.C │ │ │ ├── DIG_OPS.C │ │ │ ├── LGSNDX.H │ │ │ ├── MASTER.C │ │ │ ├── MIDI.H │ │ │ ├── MID_INIT.C │ │ │ ├── MID_OPS.C │ │ │ └── SND_UTIL.C │ │ ├── .rsrc │ │ │ ├── DIGI.H │ │ │ ├── DIG_INIT.C │ │ │ ├── DIG_OPS.C │ │ │ ├── LGSNDX.H │ │ │ ├── MASTER.C │ │ │ ├── MIDI.H │ │ │ ├── MID_INIT.C │ │ │ ├── MID_OPS.C │ │ │ └── SND_UTIL.C │ │ ├── DIGI.H │ │ ├── DIG_INIT.C │ │ ├── DIG_OPS.C │ │ ├── LGSNDX.H │ │ ├── MASTER.C │ │ ├── MIDI.H │ │ ├── MID_INIT.C │ │ ├── MID_OPS.C │ │ └── SND_UTIL.C │ └── Tests │ │ ├── .finf │ │ ├── MidiTest.68K.µ │ │ ├── MidiTest.c │ │ ├── MidiTest.µ │ │ ├── SNDTEST.C │ │ ├── SndCaps.68K.µ │ │ ├── SndCaps.c │ │ ├── SndCaps.µ │ │ ├── SndTest.68K.µ │ │ └── SndTest.µ │ │ ├── .rsrc │ │ ├── MidiTest.68K.µ │ │ ├── MidiTest.c │ │ ├── MidiTest.µ │ │ ├── SNDTEST.C │ │ ├── SndCaps.68K.µ │ │ ├── SndCaps.c │ │ ├── SndCaps.µ │ │ ├── SndTest.68K.µ │ │ └── SndTest.µ │ │ ├── MidiTest.68K.µ │ │ ├── MidiTest.c │ │ ├── MidiTest.µ │ │ ├── SNDTEST.C │ │ ├── SndCaps.68K.µ │ │ ├── SndCaps.c │ │ ├── SndCaps.µ │ │ ├── SndTest.68K.µ │ │ └── SndTest.µ ├── UI │ ├── .finf │ │ ├── Source │ │ ├── Tests │ │ ├── UI.68K.µ │ │ ├── UI.µ │ │ └── UI.µ copy │ ├── .rsrc │ │ ├── UI.68K.µ │ │ ├── UI.µ │ │ └── UI.µ copy │ ├── Source │ │ ├── .finf │ │ │ ├── BARRYKEY.H │ │ │ ├── BUTARRAY.C │ │ │ ├── BUTARRAY.H │ │ │ ├── CURDAT.H │ │ │ ├── CURDRW.C │ │ │ ├── CURSORS.C │ │ │ ├── CURSORS.H │ │ │ ├── CURTYP.H │ │ │ ├── EVENT.C │ │ │ ├── EVENT.H │ │ │ ├── FAKEFONT.H │ │ │ ├── GADGETS.C │ │ │ ├── GADGETS.H │ │ │ ├── HOTKEY.C │ │ │ ├── HOTKEY.H │ │ │ ├── MENU.C │ │ │ ├── MENU.H │ │ │ ├── MONOFONT.C │ │ │ ├── MONOFONT.H │ │ │ ├── PLAIN.C │ │ │ ├── PLAIN.H │ │ │ ├── PUSHBUTT.C │ │ │ ├── PUSHBUTT.H │ │ │ ├── QBOXGADG.C │ │ │ ├── QBOXGADG.H │ │ │ ├── REALFONT.C │ │ │ ├── REGION.C │ │ │ ├── REGION.H │ │ │ ├── RESGADG.H │ │ │ ├── SLAB.C │ │ │ ├── SLAB.H │ │ │ ├── SLIDER.C │ │ │ ├── SLIDER.H │ │ │ ├── TEXTGADG.C │ │ │ ├── TEXTGADG.H │ │ │ ├── TEXTTOOL.C │ │ │ ├── TEXTTOOL.H │ │ │ ├── TNG.C │ │ │ ├── TNG.H │ │ │ ├── TNGAPP.H │ │ │ ├── TNGBARRY.C │ │ │ ├── TNGBARRY.H │ │ │ ├── TNGFONT.C │ │ │ ├── TNGFONT.H │ │ │ ├── TNGMENU.C │ │ │ ├── TNGMENU.H │ │ │ ├── TNGPLAIN.C │ │ │ ├── TNGPLAIN.H │ │ │ ├── TNGPUSHB.C │ │ │ ├── TNGPUSHB.H │ │ │ ├── TNGQBOX.C │ │ │ ├── TNGQBOX.H │ │ │ ├── TNGSLIDR.C │ │ │ ├── TNGSLIDR.H │ │ │ ├── TNGTEMP.C │ │ │ ├── TNGTEMP.H │ │ │ ├── TNGTEXTG.C │ │ │ ├── TNGTEXTG.H │ │ │ ├── UIRES.C │ │ │ ├── UIRES.H │ │ │ ├── VMOUSE.C │ │ │ └── VMOUSE.H │ │ ├── .rsrc │ │ │ ├── BARRYKEY.H │ │ │ ├── BUTARRAY.C │ │ │ ├── BUTARRAY.H │ │ │ ├── CURDAT.H │ │ │ ├── CURDRW.C │ │ │ ├── CURSORS.C │ │ │ ├── CURSORS.H │ │ │ ├── CURTYP.H │ │ │ ├── EVENT.C │ │ │ ├── EVENT.H │ │ │ ├── FAKEFONT.H │ │ │ ├── GADGETS.C │ │ │ ├── GADGETS.H │ │ │ ├── HOTKEY.C │ │ │ ├── HOTKEY.H │ │ │ ├── MENU.C │ │ │ ├── MENU.H │ │ │ ├── MONOFONT.C │ │ │ ├── PLAIN.C │ │ │ ├── PLAIN.H │ │ │ ├── PUSHBUTT.C │ │ │ ├── PUSHBUTT.H │ │ │ ├── QBOXGADG.C │ │ │ ├── QBOXGADG.H │ │ │ ├── REALFONT.C │ │ │ ├── REGION.C │ │ │ ├── REGION.H │ │ │ ├── SLAB.C │ │ │ ├── SLAB.H │ │ │ ├── SLIDER.C │ │ │ ├── SLIDER.H │ │ │ ├── TEXTGADG.C │ │ │ ├── TEXTGADG.H │ │ │ ├── TEXTTOOL.C │ │ │ ├── TEXTTOOL.H │ │ │ ├── TNG.C │ │ │ ├── TNG.H │ │ │ ├── TNGAPP.H │ │ │ ├── TNGBARRY.C │ │ │ ├── TNGBARRY.H │ │ │ ├── TNGFONT.C │ │ │ ├── TNGFONT.H │ │ │ ├── TNGMENU.C │ │ │ ├── TNGMENU.H │ │ │ ├── TNGPLAIN.C │ │ │ ├── TNGPLAIN.H │ │ │ ├── TNGPUSHB.C │ │ │ ├── TNGPUSHB.H │ │ │ ├── TNGQBOX.C │ │ │ ├── TNGQBOX.H │ │ │ ├── TNGSLIDR.C │ │ │ ├── TNGSLIDR.H │ │ │ ├── TNGTEMP.C │ │ │ ├── TNGTEMP.H │ │ │ ├── TNGTEXTG.C │ │ │ ├── TNGTEXTG.H │ │ │ ├── UIRES.C │ │ │ ├── UIRES.H │ │ │ ├── VMOUSE.C │ │ │ └── VMOUSE.H │ │ ├── BARRYKEY.H │ │ ├── BUTARRAY.C │ │ ├── BUTARRAY.H │ │ ├── CURDAT.H │ │ ├── CURDRW.C │ │ ├── CURSORS.C │ │ ├── CURSORS.H │ │ ├── CURTYP.H │ │ ├── EVENT.C │ │ ├── EVENT.H │ │ ├── FAKEFONT.H │ │ ├── GADGETS.C │ │ ├── GADGETS.H │ │ ├── HOTKEY.C │ │ ├── HOTKEY.H │ │ ├── MENU.C │ │ ├── MENU.H │ │ ├── MONOFONT.C │ │ ├── MONOFONT.H │ │ ├── PLAIN.C │ │ ├── PLAIN.H │ │ ├── PUSHBUTT.C │ │ ├── PUSHBUTT.H │ │ ├── QBOXGADG.C │ │ ├── QBOXGADG.H │ │ ├── REALFONT.C │ │ ├── REGION.C │ │ ├── REGION.H │ │ ├── RESGADG.H │ │ ├── SLAB.C │ │ ├── SLAB.H │ │ ├── SLIDER.C │ │ ├── SLIDER.H │ │ ├── TEXTGADG.C │ │ ├── TEXTGADG.H │ │ ├── TEXTTOOL.C │ │ ├── TEXTTOOL.H │ │ ├── TNG.C │ │ ├── TNG.H │ │ ├── TNGAPP.H │ │ ├── TNGBARRY.C │ │ ├── TNGBARRY.H │ │ ├── TNGFONT.C │ │ ├── TNGFONT.H │ │ ├── TNGMENU.C │ │ ├── TNGMENU.H │ │ ├── TNGPLAIN.C │ │ ├── TNGPLAIN.H │ │ ├── TNGPUSHB.C │ │ ├── TNGPUSHB.H │ │ ├── TNGQBOX.C │ │ ├── TNGQBOX.H │ │ ├── TNGSLIDR.C │ │ ├── TNGSLIDR.H │ │ ├── TNGTEMP.C │ │ ├── TNGTEMP.H │ │ ├── TNGTEXTG.C │ │ ├── TNGTEXTG.H │ │ ├── UIRES.C │ │ ├── UIRES.H │ │ ├── VMOUSE.C │ │ └── VMOUSE.H │ ├── Tests │ │ ├── .finf │ │ │ ├── DATA │ │ │ ├── HOTTEST.C │ │ │ ├── UITEST.C │ │ │ ├── UITest.68K.µ │ │ │ └── UITest.µ │ │ ├── .rsrc │ │ │ ├── HOTTEST.C │ │ │ ├── UITEST.C │ │ │ ├── UITest.68K.µ │ │ │ └── UITest.µ │ │ ├── DATA │ │ │ ├── .finf │ │ │ │ ├── GAMESCR.H │ │ │ │ ├── RESGADG.H │ │ │ │ └── RESGUI.H │ │ │ ├── .rsrc │ │ │ │ ├── GAMESCR.H │ │ │ │ ├── RESGADG.H │ │ │ │ └── RESGUI.H │ │ │ ├── GAMESCR.H │ │ │ ├── RESGADG.H │ │ │ └── RESGUI.H │ │ ├── HOTTEST.C │ │ ├── UITEST.C │ │ ├── UITest.68K.µ │ │ └── UITest.µ │ ├── UI.68K.µ │ ├── UI.µ │ └── UI.µ copy └── VOX │ ├── .finf │ ├── Source │ ├── Tests │ ├── VOX.68K.µ │ ├── VOX.µ │ └── VOX.µ copy │ ├── .rsrc │ ├── VOX.68K.µ │ ├── VOX.µ │ └── VOX.µ copy │ ├── Source │ ├── .finf │ │ ├── VOX.H │ │ ├── VOX2D.C │ │ ├── VOX3D.C │ │ └── VOXINIT.C │ ├── .rsrc │ │ ├── VOX.H │ │ ├── VOX2D.C │ │ ├── VOX3D.C │ │ └── VOXINIT.C │ ├── VOX.H │ ├── VOX2D.C │ ├── VOX3D.C │ └── VOXINIT.C │ ├── Tests │ ├── .finf │ │ ├── VoxTest.68K.µ │ │ ├── VoxTest.c │ │ └── VoxlTest.µ │ ├── .rsrc │ │ ├── VoxTest.68K.µ │ │ ├── VoxTest.c │ │ └── VoxlTest.µ │ ├── VoxTest.68K.µ │ ├── VoxTest.c │ └── VoxlTest.µ │ ├── VOX.68K.µ │ ├── VOX.µ │ └── VOX.µ copy ├── Mac Src ├── .finf │ ├── AEHandlers.c │ ├── AEHandlers.h │ ├── Credits.c │ ├── DialogHelpers.c │ ├── DialogHelpers.h │ ├── InitMac.c │ ├── InitMac.h │ ├── MacTune.c │ ├── MacTune.h │ ├── MoviePlay.c │ ├── MoviePlay.h │ ├── Prefs.c │ ├── Prefs.h │ ├── Shock.c │ ├── Shock.h │ ├── Shock.µ.rsrc │ ├── ShockBitmap.c │ ├── ShockBitmap.h │ ├── ShockDialogs.c │ ├── ShockDialogs.h │ ├── ShockHelp.c │ ├── ShockHelp.h │ ├── ShockHelp.rsrc │ ├── Test.rsrc │ ├── Tests.c │ └── Tests.h ├── .rsrc │ ├── AEHandlers.c │ ├── AEHandlers.h │ ├── Credits.c │ ├── DialogHelpers.c │ ├── DialogHelpers.h │ ├── InitMac.c │ ├── InitMac.h │ ├── MacTune.c │ ├── MacTune.h │ ├── MoviePlay.c │ ├── MoviePlay.h │ ├── Prefs.c │ ├── Prefs.h │ ├── Shock.c │ ├── Shock.h │ ├── Shock.µ.rsrc │ ├── ShockBitmap.c │ ├── ShockBitmap.h │ ├── ShockDialogs.c │ ├── ShockDialogs.h │ ├── ShockHelp.c │ ├── ShockHelp.h │ ├── ShockHelp.rsrc │ ├── Test.rsrc │ ├── Tests.c │ └── Tests.h ├── AEHandlers.c ├── AEHandlers.h ├── Credits.c ├── DialogHelpers.c ├── DialogHelpers.h ├── InitMac.c ├── InitMac.h ├── MacTune.c ├── MacTune.h ├── MoviePlay.c ├── MoviePlay.h ├── Prefs.c ├── Prefs.h ├── Shock.c ├── Shock.h ├── Shock.µ.rsrc ├── ShockBitmap.c ├── ShockBitmap.h ├── ShockDialogs.c ├── ShockDialogs.h ├── ShockHelp.c ├── ShockHelp.h ├── ShockHelp.rsrc ├── Test.rsrc ├── Tests.c └── Tests.h ├── Shock Build Notes ├── Shock.µ └── Shock.µ copy /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/.gitignore -------------------------------------------------------------------------------- /COPYING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/COPYING.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/README.md -------------------------------------------------------------------------------- /ShockMac.sit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac.sit -------------------------------------------------------------------------------- /ShockMac/.finf/Game Src: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/.finf/Game Src -------------------------------------------------------------------------------- /ShockMac/.finf/Icon%0D: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/.finf/Icon%0D -------------------------------------------------------------------------------- /ShockMac/.finf/LIB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/.finf/LIB -------------------------------------------------------------------------------- /ShockMac/.finf/Libraries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/.finf/Libraries -------------------------------------------------------------------------------- /ShockMac/.finf/Mac Src: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/.finf/Mac Src -------------------------------------------------------------------------------- /ShockMac/.finf/Shock Build Notes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/.finf/Shock Build Notes -------------------------------------------------------------------------------- /ShockMac/.finf/Shock.µ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/.finf/Shock.µ -------------------------------------------------------------------------------- /ShockMac/.finf/Shock.µ copy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/.finf/Shock.µ copy -------------------------------------------------------------------------------- /ShockMac/.rsrc/Icon%0D: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/.rsrc/Icon%0D -------------------------------------------------------------------------------- /ShockMac/.rsrc/Shock Build Notes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/.rsrc/Shock Build Notes -------------------------------------------------------------------------------- /ShockMac/.rsrc/Shock.µ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/.rsrc/Shock.µ -------------------------------------------------------------------------------- /ShockMac/.rsrc/Shock.µ copy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/.rsrc/Shock.µ copy -------------------------------------------------------------------------------- /ShockMac/Game Src/.finf/AI.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.finf/AI.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.finf/AIRUPT.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.finf/AIRUPT.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.finf/AMAP.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.finf/AMAP.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.finf/AMAPLOOP.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.finf/AMAPLOOP.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.finf/AMMOMFD.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.finf/AMMOMFD.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.finf/AUDIOLOG.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.finf/AUDIOLOG.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.finf/AUTOMAP.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.finf/AUTOMAP.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.finf/BARK.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.finf/BARK.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.finf/BIOHELP.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.finf/BIOHELP.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.finf/CARDMFD.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.finf/CARDMFD.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.finf/CITRES.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.finf/CITRES.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.finf/COMBAT.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.finf/COMBAT.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.finf/CONE.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.finf/CONE.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.finf/CRITERR.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.finf/CRITERR.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.finf/CYBER.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.finf/CYBER.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.finf/CYBERMFD.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.finf/CYBERMFD.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.finf/CYBMEM.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.finf/CYBMEM.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.finf/CYBRND.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.finf/CYBRND.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.finf/ClearCache.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.finf/ClearCache.s -------------------------------------------------------------------------------- /ShockMac/Game Src/.finf/DAMAGE.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.finf/DAMAGE.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.finf/DIGIFX.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.finf/DIGIFX.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.finf/DRUGS.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.finf/DRUGS.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.finf/EFFECT.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.finf/EFFECT.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.finf/EMAIL.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.finf/EMAIL.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.finf/FACEOBJ.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.finf/FACEOBJ.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.finf/FIXTRMFD.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.finf/FIXTRMFD.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.finf/FRCAMERA.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.finf/FRCAMERA.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.finf/FRCLIP.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.finf/FRCLIP.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.finf/FRCOMPIL.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.finf/FRCOMPIL.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.finf/FRMAIN.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.finf/FRMAIN.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.finf/FROBJ.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.finf/FROBJ.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.finf/FROSLEW.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.finf/FROSLEW.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.finf/FRPIPE.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.finf/FRPIPE.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.finf/FRPTS.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.finf/FRPTS.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.finf/FRSETUP.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.finf/FRSETUP.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.finf/FRTABLES.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.finf/FRTABLES.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.finf/FRTERR.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.finf/FRTERR.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.finf/FRUTIL.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.finf/FRUTIL.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.finf/FULLAMAP.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.finf/FULLAMAP.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.finf/FULLSCRN.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.finf/FULLSCRN.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.finf/FrUtils.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.finf/FrUtils.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.finf/GAMELOOP.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.finf/GAMELOOP.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.finf/GAMEOBJ.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.finf/GAMEOBJ.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.finf/GAMEREND.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.finf/GAMEREND.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.finf/GAMESORT.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.finf/GAMESORT.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.finf/GAMESTRN.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.finf/GAMESTRN.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.finf/GAMESYS.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.finf/GAMESYS.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.finf/GAMETIME.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.finf/GAMETIME.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.finf/GAMEWRAP.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.finf/GAMEWRAP.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.finf/GEARMFD.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.finf/GEARMFD.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.finf/GR2SS.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.finf/GR2SS.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.finf/GRENADES.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.finf/GRENADES.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.finf/HAND.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.finf/HAND.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.finf/HFLIP.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.finf/HFLIP.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.finf/HKEYFUNC.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.finf/HKEYFUNC.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.finf/HUD.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.finf/HUD.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.finf/HUDOBJ.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.finf/HUDOBJ.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.finf/Headers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.finf/Headers -------------------------------------------------------------------------------- /ShockMac/Game Src/.finf/INIT.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.finf/INIT.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.finf/INPUT.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.finf/INPUT.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.finf/INVENT.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.finf/INVENT.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.finf/LEANMETR.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.finf/LEANMETR.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.finf/MAINLOOP.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.finf/MAINLOOP.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.finf/MAP.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.finf/MAP.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.finf/MFDFUNC.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.finf/MFDFUNC.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.finf/MFDGADG.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.finf/MFDGADG.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.finf/MFDGAMES.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.finf/MFDGAMES.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.finf/MFDGUMP.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.finf/MFDGUMP.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.finf/MFDPANEL.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.finf/MFDPANEL.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.finf/MINIMAX.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.finf/MINIMAX.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.finf/MLIMBS.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.finf/MLIMBS.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.finf/MOVEKEYS.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.finf/MOVEKEYS.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.finf/MUSICAI.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.finf/MUSICAI.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.finf/NEWAI.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.finf/NEWAI.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.finf/NEWMFD.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.finf/NEWMFD.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.finf/OBJAPP.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.finf/OBJAPP.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.finf/OBJECTS.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.finf/OBJECTS.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.finf/OBJLOAD.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.finf/OBJLOAD.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.finf/OBJPROP.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.finf/OBJPROP.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.finf/OBJSIM.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.finf/OBJSIM.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.finf/OBJUSE.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.finf/OBJUSE.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.finf/OLH.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.finf/OLH.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.finf/OLHSCAN.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.finf/OLHSCAN.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.finf/PALFX.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.finf/PALFX.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.finf/PATHFIND.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.finf/PATHFIND.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.finf/PHYSICS.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.finf/PHYSICS.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.finf/PLAYER.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.finf/PLAYER.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.finf/PLOTWARE.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.finf/PLOTWARE.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.finf/POPUPS.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.finf/POPUPS.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.finf/RENDER.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.finf/RENDER.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.finf/RENDTOOL.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.finf/RENDTOOL.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.finf/SAVELOAD.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.finf/SAVELOAD.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.finf/SCHEDULE.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.finf/SCHEDULE.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.finf/SCREEN.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.finf/SCREEN.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.finf/SETUP.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.finf/SETUP.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.finf/SHODAN.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.finf/SHODAN.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.finf/SIDEICON.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.finf/SIDEICON.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.finf/SNDCALL.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.finf/SNDCALL.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.finf/STAR.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.finf/STAR.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.finf/STATICS.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.finf/STATICS.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.finf/STATUS.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.finf/STATUS.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.finf/TARGET.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.finf/TARGET.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.finf/TEXTMAPS.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.finf/TEXTMAPS.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.finf/TFDIRECT.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.finf/TFDIRECT.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.finf/TFUTIL.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.finf/TFUTIL.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.finf/TOOLS.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.finf/TOOLS.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.finf/TRIGGER.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.finf/TRIGGER.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.finf/VIEW360.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.finf/VIEW360.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.finf/VIEWHELP.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.finf/VIEWHELP.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.finf/VITALS.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.finf/VITALS.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.finf/VMAIL.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.finf/VMAIL.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.finf/WARES.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.finf/WARES.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.finf/WEAPONS.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.finf/WEAPONS.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.finf/WRAPPER.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.finf/WRAPPER.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.finf/game.rsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.finf/game.rsrc -------------------------------------------------------------------------------- /ShockMac/Game Src/.rsrc/AI.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.rsrc/AI.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.rsrc/AIRUPT.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.rsrc/AIRUPT.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.rsrc/AMAP.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.rsrc/AMAP.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.rsrc/AMAPLOOP.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.rsrc/AMAPLOOP.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.rsrc/AMMOMFD.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.rsrc/AMMOMFD.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.rsrc/AUDIOLOG.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.rsrc/AUDIOLOG.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.rsrc/AUTOMAP.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.rsrc/AUTOMAP.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.rsrc/BARK.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.rsrc/BARK.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.rsrc/BIOHELP.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.rsrc/BIOHELP.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.rsrc/CARDMFD.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.rsrc/CARDMFD.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.rsrc/CITRES.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.rsrc/CITRES.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.rsrc/COMBAT.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.rsrc/COMBAT.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.rsrc/CONE.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.rsrc/CONE.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.rsrc/CRITERR.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.rsrc/CRITERR.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.rsrc/CYBER.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.rsrc/CYBER.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.rsrc/CYBERMFD.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.rsrc/CYBERMFD.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.rsrc/CYBMEM.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.rsrc/CYBMEM.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.rsrc/CYBRND.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.rsrc/CYBRND.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.rsrc/ClearCache.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.rsrc/ClearCache.s -------------------------------------------------------------------------------- /ShockMac/Game Src/.rsrc/DAMAGE.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.rsrc/DAMAGE.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.rsrc/DIGIFX.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.rsrc/DIGIFX.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.rsrc/DRUGS.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.rsrc/DRUGS.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.rsrc/EFFECT.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.rsrc/EFFECT.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.rsrc/EMAIL.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.rsrc/EMAIL.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.rsrc/FACEOBJ.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.rsrc/FACEOBJ.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.rsrc/FIXTRMFD.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.rsrc/FIXTRMFD.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.rsrc/FRCAMERA.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.rsrc/FRCAMERA.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.rsrc/FRCLIP.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.rsrc/FRCLIP.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.rsrc/FRCOMPIL.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.rsrc/FRCOMPIL.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.rsrc/FRMAIN.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.rsrc/FRMAIN.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.rsrc/FROBJ.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.rsrc/FROBJ.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.rsrc/FROSLEW.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.rsrc/FROSLEW.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.rsrc/FRPIPE.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.rsrc/FRPIPE.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.rsrc/FRPTS.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.rsrc/FRPTS.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.rsrc/FRSETUP.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.rsrc/FRSETUP.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.rsrc/FRTABLES.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.rsrc/FRTABLES.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.rsrc/FRTERR.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.rsrc/FRTERR.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.rsrc/FRUTIL.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.rsrc/FRUTIL.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.rsrc/FULLAMAP.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.rsrc/FULLAMAP.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.rsrc/FULLSCRN.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.rsrc/FULLSCRN.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.rsrc/FrUtils.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.rsrc/FrUtils.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.rsrc/GAMELOOP.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.rsrc/GAMELOOP.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.rsrc/GAMEOBJ.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.rsrc/GAMEOBJ.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.rsrc/GAMEREND.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.rsrc/GAMEREND.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.rsrc/GAMESORT.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.rsrc/GAMESORT.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.rsrc/GAMESTRN.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.rsrc/GAMESTRN.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.rsrc/GAMESYS.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.rsrc/GAMESYS.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.rsrc/GAMETIME.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.rsrc/GAMETIME.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.rsrc/GAMEWRAP.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.rsrc/GAMEWRAP.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.rsrc/GEARMFD.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.rsrc/GEARMFD.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.rsrc/GR2SS.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.rsrc/GR2SS.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.rsrc/GRENADES.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.rsrc/GRENADES.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.rsrc/HAND.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.rsrc/HAND.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.rsrc/HFLIP.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.rsrc/HFLIP.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.rsrc/HKEYFUNC.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.rsrc/HKEYFUNC.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.rsrc/HUD.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.rsrc/HUD.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.rsrc/HUDOBJ.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.rsrc/HUDOBJ.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.rsrc/INIT.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.rsrc/INIT.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.rsrc/INPUT.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.rsrc/INPUT.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.rsrc/INVENT.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.rsrc/INVENT.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.rsrc/LEANMETR.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.rsrc/LEANMETR.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.rsrc/MAINLOOP.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.rsrc/MAINLOOP.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.rsrc/MAP.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.rsrc/MAP.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.rsrc/MFDFUNC.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.rsrc/MFDFUNC.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.rsrc/MFDGADG.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.rsrc/MFDGADG.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.rsrc/MFDGAMES.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.rsrc/MFDGAMES.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.rsrc/MFDGUMP.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.rsrc/MFDGUMP.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.rsrc/MFDPANEL.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.rsrc/MFDPANEL.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.rsrc/MINIMAX.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.rsrc/MINIMAX.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.rsrc/MLIMBS.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.rsrc/MLIMBS.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.rsrc/MOVEKEYS.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.rsrc/MOVEKEYS.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.rsrc/MUSICAI.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.rsrc/MUSICAI.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.rsrc/NEWAI.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.rsrc/NEWAI.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.rsrc/NEWMFD.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.rsrc/NEWMFD.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.rsrc/OBJAPP.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.rsrc/OBJAPP.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.rsrc/OBJECTS.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.rsrc/OBJECTS.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.rsrc/OBJLOAD.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.rsrc/OBJLOAD.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.rsrc/OBJPROP.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.rsrc/OBJPROP.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.rsrc/OBJSIM.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.rsrc/OBJSIM.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.rsrc/OBJUSE.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.rsrc/OBJUSE.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.rsrc/OLH.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.rsrc/OLH.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.rsrc/OLHSCAN.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.rsrc/OLHSCAN.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.rsrc/PALFX.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.rsrc/PALFX.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.rsrc/PATHFIND.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.rsrc/PATHFIND.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.rsrc/PHYSICS.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.rsrc/PHYSICS.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.rsrc/PLAYER.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.rsrc/PLAYER.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.rsrc/PLOTWARE.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.rsrc/PLOTWARE.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.rsrc/POPUPS.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.rsrc/POPUPS.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.rsrc/RENDER.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.rsrc/RENDER.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.rsrc/RENDTOOL.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.rsrc/RENDTOOL.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.rsrc/SAVELOAD.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.rsrc/SAVELOAD.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.rsrc/SCHEDULE.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.rsrc/SCHEDULE.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.rsrc/SCREEN.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.rsrc/SCREEN.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.rsrc/SETUP.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.rsrc/SETUP.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.rsrc/SHODAN.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.rsrc/SHODAN.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.rsrc/SIDEICON.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.rsrc/SIDEICON.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.rsrc/SNDCALL.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.rsrc/SNDCALL.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.rsrc/STAR.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.rsrc/STAR.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.rsrc/STATICS.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.rsrc/STATICS.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.rsrc/STATUS.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.rsrc/STATUS.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.rsrc/TARGET.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.rsrc/TARGET.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.rsrc/TEXTMAPS.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.rsrc/TEXTMAPS.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.rsrc/TFDIRECT.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.rsrc/TFDIRECT.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.rsrc/TFUTIL.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.rsrc/TFUTIL.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.rsrc/TOOLS.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.rsrc/TOOLS.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.rsrc/TRIGGER.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.rsrc/TRIGGER.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.rsrc/VIEW360.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.rsrc/VIEW360.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.rsrc/VIEWHELP.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.rsrc/VIEWHELP.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.rsrc/VITALS.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.rsrc/VITALS.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.rsrc/VMAIL.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.rsrc/VMAIL.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.rsrc/WARES.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.rsrc/WARES.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.rsrc/WEAPONS.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.rsrc/WEAPONS.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.rsrc/WRAPPER.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.rsrc/WRAPPER.C -------------------------------------------------------------------------------- /ShockMac/Game Src/.rsrc/game.rsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/.rsrc/game.rsrc -------------------------------------------------------------------------------- /ShockMac/Game Src/AI.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/AI.C -------------------------------------------------------------------------------- /ShockMac/Game Src/AIRUPT.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/AIRUPT.C -------------------------------------------------------------------------------- /ShockMac/Game Src/AMAP.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/AMAP.C -------------------------------------------------------------------------------- /ShockMac/Game Src/AMAPLOOP.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/AMAPLOOP.C -------------------------------------------------------------------------------- /ShockMac/Game Src/AMMOMFD.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/AMMOMFD.C -------------------------------------------------------------------------------- /ShockMac/Game Src/AUDIOLOG.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/AUDIOLOG.C -------------------------------------------------------------------------------- /ShockMac/Game Src/AUTOMAP.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/AUTOMAP.C -------------------------------------------------------------------------------- /ShockMac/Game Src/BARK.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/BARK.C -------------------------------------------------------------------------------- /ShockMac/Game Src/BIOHELP.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/BIOHELP.C -------------------------------------------------------------------------------- /ShockMac/Game Src/BlitLarge Proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/BlitLarge Proj -------------------------------------------------------------------------------- /ShockMac/Game Src/BlitLargeAlign.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/BlitLargeAlign.s -------------------------------------------------------------------------------- /ShockMac/Game Src/CARDMFD.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/CARDMFD.C -------------------------------------------------------------------------------- /ShockMac/Game Src/CITRES.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/CITRES.C -------------------------------------------------------------------------------- /ShockMac/Game Src/COMBAT.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/COMBAT.C -------------------------------------------------------------------------------- /ShockMac/Game Src/CONE.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/CONE.C -------------------------------------------------------------------------------- /ShockMac/Game Src/CRITERR.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/CRITERR.C -------------------------------------------------------------------------------- /ShockMac/Game Src/CYBER.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/CYBER.C -------------------------------------------------------------------------------- /ShockMac/Game Src/CYBERMFD.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/CYBERMFD.C -------------------------------------------------------------------------------- /ShockMac/Game Src/CYBMEM.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/CYBMEM.C -------------------------------------------------------------------------------- /ShockMac/Game Src/CYBRND.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/CYBRND.C -------------------------------------------------------------------------------- /ShockMac/Game Src/ClearCache.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/ClearCache.s -------------------------------------------------------------------------------- /ShockMac/Game Src/DAMAGE.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/DAMAGE.C -------------------------------------------------------------------------------- /ShockMac/Game Src/DIGIFX.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/DIGIFX.C -------------------------------------------------------------------------------- /ShockMac/Game Src/DRUGS.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/DRUGS.C -------------------------------------------------------------------------------- /ShockMac/Game Src/EFFECT.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/EFFECT.C -------------------------------------------------------------------------------- /ShockMac/Game Src/EMAIL.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/EMAIL.C -------------------------------------------------------------------------------- /ShockMac/Game Src/FACEOBJ.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/FACEOBJ.C -------------------------------------------------------------------------------- /ShockMac/Game Src/FIXTRMFD.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/FIXTRMFD.C -------------------------------------------------------------------------------- /ShockMac/Game Src/FRCAMERA.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/FRCAMERA.C -------------------------------------------------------------------------------- /ShockMac/Game Src/FRCLIP.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/FRCLIP.C -------------------------------------------------------------------------------- /ShockMac/Game Src/FRCOMPIL.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/FRCOMPIL.C -------------------------------------------------------------------------------- /ShockMac/Game Src/FRMAIN.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/FRMAIN.C -------------------------------------------------------------------------------- /ShockMac/Game Src/FROBJ.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/FROBJ.C -------------------------------------------------------------------------------- /ShockMac/Game Src/FROSLEW.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/FROSLEW.C -------------------------------------------------------------------------------- /ShockMac/Game Src/FRPIPE.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/FRPIPE.C -------------------------------------------------------------------------------- /ShockMac/Game Src/FRPTS.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/FRPTS.C -------------------------------------------------------------------------------- /ShockMac/Game Src/FRSETUP.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/FRSETUP.C -------------------------------------------------------------------------------- /ShockMac/Game Src/FRTABLES.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/FRTABLES.C -------------------------------------------------------------------------------- /ShockMac/Game Src/FRTERR.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/FRTERR.C -------------------------------------------------------------------------------- /ShockMac/Game Src/FRUTIL.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/FRUTIL.C -------------------------------------------------------------------------------- /ShockMac/Game Src/FULLAMAP.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/FULLAMAP.C -------------------------------------------------------------------------------- /ShockMac/Game Src/FULLSCRN.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/FULLSCRN.C -------------------------------------------------------------------------------- /ShockMac/Game Src/FrUtils.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/FrUtils.C -------------------------------------------------------------------------------- /ShockMac/Game Src/GAMELOOP.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/GAMELOOP.C -------------------------------------------------------------------------------- /ShockMac/Game Src/GAMEOBJ.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/GAMEOBJ.C -------------------------------------------------------------------------------- /ShockMac/Game Src/GAMEREND.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/GAMEREND.C -------------------------------------------------------------------------------- /ShockMac/Game Src/GAMESORT.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/GAMESORT.C -------------------------------------------------------------------------------- /ShockMac/Game Src/GAMESTRN.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/GAMESTRN.C -------------------------------------------------------------------------------- /ShockMac/Game Src/GAMESYS.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/GAMESYS.C -------------------------------------------------------------------------------- /ShockMac/Game Src/GAMETIME.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/GAMETIME.C -------------------------------------------------------------------------------- /ShockMac/Game Src/GAMEWRAP.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/GAMEWRAP.C -------------------------------------------------------------------------------- /ShockMac/Game Src/GEARMFD.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/GEARMFD.C -------------------------------------------------------------------------------- /ShockMac/Game Src/GR2SS.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/GR2SS.C -------------------------------------------------------------------------------- /ShockMac/Game Src/GRENADES.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/GRENADES.C -------------------------------------------------------------------------------- /ShockMac/Game Src/HAND.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/HAND.C -------------------------------------------------------------------------------- /ShockMac/Game Src/HFLIP.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/HFLIP.C -------------------------------------------------------------------------------- /ShockMac/Game Src/HKEYFUNC.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/HKEYFUNC.C -------------------------------------------------------------------------------- /ShockMac/Game Src/HUD.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/HUD.C -------------------------------------------------------------------------------- /ShockMac/Game Src/HUDOBJ.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/HUDOBJ.C -------------------------------------------------------------------------------- /ShockMac/Game Src/Headers/.finf/AI.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/Headers/.finf/AI.H -------------------------------------------------------------------------------- /ShockMac/Game Src/Headers/.finf/HUD.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/Headers/.finf/HUD.H -------------------------------------------------------------------------------- /ShockMac/Game Src/Headers/.finf/ICE.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/Headers/.finf/ICE.H -------------------------------------------------------------------------------- /ShockMac/Game Src/Headers/.finf/MAP.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/Headers/.finf/MAP.H -------------------------------------------------------------------------------- /ShockMac/Game Src/Headers/.rsrc/AI.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/Headers/.rsrc/AI.H -------------------------------------------------------------------------------- /ShockMac/Game Src/Headers/.rsrc/HUD.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/Headers/.rsrc/HUD.H -------------------------------------------------------------------------------- /ShockMac/Game Src/Headers/.rsrc/ICE.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/Headers/.rsrc/ICE.H -------------------------------------------------------------------------------- /ShockMac/Game Src/Headers/.rsrc/MAP.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/Headers/.rsrc/MAP.H -------------------------------------------------------------------------------- /ShockMac/Game Src/Headers/AI.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/Headers/AI.H -------------------------------------------------------------------------------- /ShockMac/Game Src/Headers/AIFLAGS.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/Headers/AIFLAGS.H -------------------------------------------------------------------------------- /ShockMac/Game Src/Headers/AMAP.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/Headers/AMAP.H -------------------------------------------------------------------------------- /ShockMac/Game Src/Headers/AMAPLOOP.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/Headers/AMAPLOOP.H -------------------------------------------------------------------------------- /ShockMac/Game Src/Headers/AUDIOLOG.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/Headers/AUDIOLOG.H -------------------------------------------------------------------------------- /ShockMac/Game Src/Headers/AUTOMAP.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/Headers/AUTOMAP.H -------------------------------------------------------------------------------- /ShockMac/Game Src/Headers/BARK.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/Headers/BARK.H -------------------------------------------------------------------------------- /ShockMac/Game Src/Headers/BIOTRAX.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/Headers/BIOTRAX.H -------------------------------------------------------------------------------- /ShockMac/Game Src/Headers/CACHETEX.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/Headers/CACHETEX.H -------------------------------------------------------------------------------- /ShockMac/Game Src/Headers/CANVCHEK.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/Headers/CANVCHEK.H -------------------------------------------------------------------------------- /ShockMac/Game Src/Headers/CIT2D.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/Headers/CIT2D.H -------------------------------------------------------------------------------- /ShockMac/Game Src/Headers/CITALOG.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/Headers/CITALOG.H -------------------------------------------------------------------------------- /ShockMac/Game Src/Headers/CITBARK.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/Headers/CITBARK.H -------------------------------------------------------------------------------- /ShockMac/Game Src/Headers/CITMAT.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/Headers/CITMAT.H -------------------------------------------------------------------------------- /ShockMac/Game Src/Headers/CITRES.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/Headers/CITRES.H -------------------------------------------------------------------------------- /ShockMac/Game Src/Headers/COLORS.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/Headers/COLORS.H -------------------------------------------------------------------------------- /ShockMac/Game Src/Headers/COMBAT.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/Headers/COMBAT.H -------------------------------------------------------------------------------- /ShockMac/Game Src/Headers/CONE.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/Headers/CONE.H -------------------------------------------------------------------------------- /ShockMac/Game Src/Headers/CRITERR.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/Headers/CRITERR.H -------------------------------------------------------------------------------- /ShockMac/Game Src/Headers/CYBER.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/Headers/CYBER.H -------------------------------------------------------------------------------- /ShockMac/Game Src/Headers/CYBMEM.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/Headers/CYBMEM.H -------------------------------------------------------------------------------- /ShockMac/Game Src/Headers/CYBRLOOP.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/Headers/CYBRLOOP.H -------------------------------------------------------------------------------- /ShockMac/Game Src/Headers/CYBRND.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/Headers/CYBRND.H -------------------------------------------------------------------------------- /ShockMac/Game Src/Headers/CYBSTRNG.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/Headers/CYBSTRNG.H -------------------------------------------------------------------------------- /ShockMac/Game Src/Headers/DAMAGE.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/Headers/DAMAGE.H -------------------------------------------------------------------------------- /ShockMac/Game Src/Headers/DIFFQ.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/Headers/DIFFQ.H -------------------------------------------------------------------------------- /ShockMac/Game Src/Headers/DIRAC.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/Headers/DIRAC.H -------------------------------------------------------------------------------- /ShockMac/Game Src/Headers/DOORPARM.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/Headers/DOORPARM.H -------------------------------------------------------------------------------- /ShockMac/Game Src/Headers/DRUGS.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/Headers/DRUGS.H -------------------------------------------------------------------------------- /ShockMac/Game Src/Headers/DYNMEM.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/Headers/DYNMEM.H -------------------------------------------------------------------------------- /ShockMac/Game Src/Headers/EDITLOOP.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/Headers/EDITLOOP.H -------------------------------------------------------------------------------- /ShockMac/Game Src/Headers/EFFECT.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/Headers/EFFECT.H -------------------------------------------------------------------------------- /ShockMac/Game Src/Headers/EMAILBIT.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/Headers/EMAILBIT.H -------------------------------------------------------------------------------- /ShockMac/Game Src/Headers/FAKETIME.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/Headers/FAKETIME.H -------------------------------------------------------------------------------- /ShockMac/Game Src/Headers/FATIGUE.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/Headers/FATIGUE.H -------------------------------------------------------------------------------- /ShockMac/Game Src/Headers/FAUXRINT.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/Headers/FAUXRINT.H -------------------------------------------------------------------------------- /ShockMac/Game Src/Headers/FR3D.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/Headers/FR3D.H -------------------------------------------------------------------------------- /ShockMac/Game Src/Headers/FRAMER8.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/Headers/FRAMER8.H -------------------------------------------------------------------------------- /ShockMac/Game Src/Headers/FRCAMERA.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/Headers/FRCAMERA.H -------------------------------------------------------------------------------- /ShockMac/Game Src/Headers/FRCTXT.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/Headers/FRCTXT.H -------------------------------------------------------------------------------- /ShockMac/Game Src/Headers/FREDGE.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/Headers/FREDGE.H -------------------------------------------------------------------------------- /ShockMac/Game Src/Headers/FRFLAGS.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/Headers/FRFLAGS.H -------------------------------------------------------------------------------- /ShockMac/Game Src/Headers/FRINTERN.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/Headers/FRINTERN.H -------------------------------------------------------------------------------- /ShockMac/Game Src/Headers/FROSLEW.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/Headers/FROSLEW.H -------------------------------------------------------------------------------- /ShockMac/Game Src/Headers/FRPARAMS.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/Headers/FRPARAMS.H -------------------------------------------------------------------------------- /ShockMac/Game Src/Headers/FRPROTOX.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/Headers/FRPROTOX.H -------------------------------------------------------------------------------- /ShockMac/Game Src/Headers/FRQUAD.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/Headers/FRQUAD.H -------------------------------------------------------------------------------- /ShockMac/Game Src/Headers/FRSHIPM.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/Headers/FRSHIPM.H -------------------------------------------------------------------------------- /ShockMac/Game Src/Headers/FRSPANS.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/Headers/FRSPANS.H -------------------------------------------------------------------------------- /ShockMac/Game Src/Headers/FRSUBCLP.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/Headers/FRSUBCLP.H -------------------------------------------------------------------------------- /ShockMac/Game Src/Headers/FRTABLES.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/Headers/FRTABLES.H -------------------------------------------------------------------------------- /ShockMac/Game Src/Headers/FRTYPES.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/Headers/FRTYPES.H -------------------------------------------------------------------------------- /ShockMac/Game Src/Headers/FRTYPESX.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/Headers/FRTYPESX.H -------------------------------------------------------------------------------- /ShockMac/Game Src/Headers/FRWORLD.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/Headers/FRWORLD.H -------------------------------------------------------------------------------- /ShockMac/Game Src/Headers/FULLSCRN.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/Headers/FULLSCRN.H -------------------------------------------------------------------------------- /ShockMac/Game Src/Headers/FrUtils.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/Headers/FrUtils.H -------------------------------------------------------------------------------- /ShockMac/Game Src/Headers/GAMELOOP.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/Headers/GAMELOOP.H -------------------------------------------------------------------------------- /ShockMac/Game Src/Headers/GAMEOBJ.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/Headers/GAMEOBJ.H -------------------------------------------------------------------------------- /ShockMac/Game Src/Headers/GAMEPAL.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/Headers/GAMEPAL.H -------------------------------------------------------------------------------- /ShockMac/Game Src/Headers/GAMEREND.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/Headers/GAMEREND.H -------------------------------------------------------------------------------- /ShockMac/Game Src/Headers/GAMESCR.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/Headers/GAMESCR.H -------------------------------------------------------------------------------- /ShockMac/Game Src/Headers/GAMESORT.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/Headers/GAMESORT.H -------------------------------------------------------------------------------- /ShockMac/Game Src/Headers/GAMESTRN.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/Headers/GAMESTRN.H -------------------------------------------------------------------------------- /ShockMac/Game Src/Headers/GAMESYS.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/Headers/GAMESYS.H -------------------------------------------------------------------------------- /ShockMac/Game Src/Headers/GAMETIME.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/Headers/GAMETIME.H -------------------------------------------------------------------------------- /ShockMac/Game Src/Headers/GAMEWRAP.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/Headers/GAMEWRAP.H -------------------------------------------------------------------------------- /ShockMac/Game Src/Headers/GETTMAPS.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/Headers/GETTMAPS.H -------------------------------------------------------------------------------- /ShockMac/Game Src/Headers/GR2SS.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/Headers/GR2SS.H -------------------------------------------------------------------------------- /ShockMac/Game Src/Headers/GRENADES.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/Headers/GRENADES.H -------------------------------------------------------------------------------- /ShockMac/Game Src/Headers/HAND.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/Headers/HAND.H -------------------------------------------------------------------------------- /ShockMac/Game Src/Headers/HANDART.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/Headers/HANDART.H -------------------------------------------------------------------------------- /ShockMac/Game Src/Headers/HKEYFUNC.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/Headers/HKEYFUNC.H -------------------------------------------------------------------------------- /ShockMac/Game Src/Headers/HUD.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/Headers/HUD.H -------------------------------------------------------------------------------- /ShockMac/Game Src/Headers/HUDOBJ.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/Headers/HUDOBJ.H -------------------------------------------------------------------------------- /ShockMac/Game Src/Headers/ICE.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/Headers/ICE.H -------------------------------------------------------------------------------- /ShockMac/Game Src/Headers/INIT.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/Headers/INIT.H -------------------------------------------------------------------------------- /ShockMac/Game Src/Headers/INPUT.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/Headers/INPUT.H -------------------------------------------------------------------------------- /ShockMac/Game Src/Headers/INVDIMS.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/Headers/INVDIMS.H -------------------------------------------------------------------------------- /ShockMac/Game Src/Headers/INVENT.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/Headers/INVENT.H -------------------------------------------------------------------------------- /ShockMac/Game Src/Headers/INVPAGES.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/Headers/INVPAGES.H -------------------------------------------------------------------------------- /ShockMac/Game Src/Headers/LOOPS.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/Headers/LOOPS.H -------------------------------------------------------------------------------- /ShockMac/Game Src/Headers/LVLDATA.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/Headers/LVLDATA.H -------------------------------------------------------------------------------- /ShockMac/Game Src/Headers/MAINLOOP.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/Headers/MAINLOOP.H -------------------------------------------------------------------------------- /ShockMac/Game Src/Headers/MAP.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/Headers/MAP.H -------------------------------------------------------------------------------- /ShockMac/Game Src/Headers/MAPCOUNT.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/Headers/MAPCOUNT.H -------------------------------------------------------------------------------- /ShockMac/Game Src/Headers/MAPFLAGS.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/Headers/MAPFLAGS.H -------------------------------------------------------------------------------- /ShockMac/Game Src/Headers/MAPNORM.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/Headers/MAPNORM.H -------------------------------------------------------------------------------- /ShockMac/Game Src/Headers/MFDART.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/Headers/MFDART.H -------------------------------------------------------------------------------- /ShockMac/Game Src/Headers/MFDDIMS.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/Headers/MFDDIMS.H -------------------------------------------------------------------------------- /ShockMac/Game Src/Headers/MFDEXT.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/Headers/MFDEXT.H -------------------------------------------------------------------------------- /ShockMac/Game Src/Headers/MFDGADG.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/Headers/MFDGADG.H -------------------------------------------------------------------------------- /ShockMac/Game Src/Headers/MFDGAMES.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/Headers/MFDGAMES.H -------------------------------------------------------------------------------- /ShockMac/Game Src/Headers/MFDINT.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/Headers/MFDINT.H -------------------------------------------------------------------------------- /ShockMac/Game Src/Headers/MFDPANEL.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/Headers/MFDPANEL.H -------------------------------------------------------------------------------- /ShockMac/Game Src/Headers/MINIMAX.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/Headers/MINIMAX.H -------------------------------------------------------------------------------- /ShockMac/Game Src/Headers/MISCQVAR.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/Headers/MISCQVAR.H -------------------------------------------------------------------------------- /ShockMac/Game Src/Headers/MLIMBS.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/Headers/MLIMBS.H -------------------------------------------------------------------------------- /ShockMac/Game Src/Headers/MODELS.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/Headers/MODELS.H -------------------------------------------------------------------------------- /ShockMac/Game Src/Headers/MODTEXT.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/Headers/MODTEXT.H -------------------------------------------------------------------------------- /ShockMac/Game Src/Headers/MUSICAI.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/Headers/MUSICAI.H -------------------------------------------------------------------------------- /ShockMac/Game Src/Headers/NEWMFD.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/Headers/NEWMFD.H -------------------------------------------------------------------------------- /ShockMac/Game Src/Headers/OBJ3D.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/Headers/OBJ3D.H -------------------------------------------------------------------------------- /ShockMac/Game Src/Headers/OBJAPP.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/Headers/OBJAPP.H -------------------------------------------------------------------------------- /ShockMac/Game Src/Headers/OBJART.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/Headers/OBJART.H -------------------------------------------------------------------------------- /ShockMac/Game Src/Headers/OBJART2.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/Headers/OBJART2.H -------------------------------------------------------------------------------- /ShockMac/Game Src/Headers/OBJART3.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/Headers/OBJART3.H -------------------------------------------------------------------------------- /ShockMac/Game Src/Headers/OBJBIT.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/Headers/OBJBIT.H -------------------------------------------------------------------------------- /ShockMac/Game Src/Headers/OBJCLASS.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/Headers/OBJCLASS.H -------------------------------------------------------------------------------- /ShockMac/Game Src/Headers/OBJCRIT.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/Headers/OBJCRIT.H -------------------------------------------------------------------------------- /ShockMac/Game Src/Headers/OBJECTS.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/Headers/OBJECTS.H -------------------------------------------------------------------------------- /ShockMac/Game Src/Headers/OBJGAME.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/Headers/OBJGAME.H -------------------------------------------------------------------------------- /ShockMac/Game Src/Headers/OBJLOAD.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/Headers/OBJLOAD.H -------------------------------------------------------------------------------- /ShockMac/Game Src/Headers/OBJMODE.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/Headers/OBJMODE.H -------------------------------------------------------------------------------- /ShockMac/Game Src/Headers/OBJPROP.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/Headers/OBJPROP.H -------------------------------------------------------------------------------- /ShockMac/Game Src/Headers/OBJSIM.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/Headers/OBJSIM.H -------------------------------------------------------------------------------- /ShockMac/Game Src/Headers/OBJSTUFF.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/Headers/OBJSTUFF.H -------------------------------------------------------------------------------- /ShockMac/Game Src/Headers/OBJUSE.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/Headers/OBJUSE.H -------------------------------------------------------------------------------- /ShockMac/Game Src/Headers/OBJVER.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/Headers/OBJVER.H -------------------------------------------------------------------------------- /ShockMac/Game Src/Headers/OBJWAREZ.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/Headers/OBJWAREZ.H -------------------------------------------------------------------------------- /ShockMac/Game Src/Headers/OBJWPN.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/Headers/OBJWPN.H -------------------------------------------------------------------------------- /ShockMac/Game Src/Headers/OLHEXT.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/Headers/OLHEXT.H -------------------------------------------------------------------------------- /ShockMac/Game Src/Headers/OLHINT.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/Headers/OLHINT.H -------------------------------------------------------------------------------- /ShockMac/Game Src/Headers/OTRIP.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/Headers/OTRIP.H -------------------------------------------------------------------------------- /ShockMac/Game Src/Headers/PALFX.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/Headers/PALFX.H -------------------------------------------------------------------------------- /ShockMac/Game Src/Headers/PATHFIND.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/Headers/PATHFIND.H -------------------------------------------------------------------------------- /ShockMac/Game Src/Headers/PHYSICS.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/Headers/PHYSICS.H -------------------------------------------------------------------------------- /ShockMac/Game Src/Headers/PHYSUNIT.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/Headers/PHYSUNIT.H -------------------------------------------------------------------------------- /ShockMac/Game Src/Headers/PLAYER.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/Headers/PLAYER.H -------------------------------------------------------------------------------- /ShockMac/Game Src/Headers/POPUPS.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/Headers/POPUPS.H -------------------------------------------------------------------------------- /ShockMac/Game Src/Headers/RCOLORS.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/Headers/RCOLORS.H -------------------------------------------------------------------------------- /ShockMac/Game Src/Headers/REFSTUF.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/Headers/REFSTUF.H -------------------------------------------------------------------------------- /ShockMac/Game Src/Headers/RENDER.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/Headers/RENDER.H -------------------------------------------------------------------------------- /ShockMac/Game Src/Headers/RENDFX.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/Headers/RENDFX.H -------------------------------------------------------------------------------- /ShockMac/Game Src/Headers/RENDTOOL.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/Headers/RENDTOOL.H -------------------------------------------------------------------------------- /ShockMac/Game Src/Headers/SAFEEDMS.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/Headers/SAFEEDMS.H -------------------------------------------------------------------------------- /ShockMac/Game Src/Headers/SAVELOAD.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/Headers/SAVELOAD.H -------------------------------------------------------------------------------- /ShockMac/Game Src/Headers/SCHEDTYP.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/Headers/SCHEDTYP.H -------------------------------------------------------------------------------- /ShockMac/Game Src/Headers/SCHEDULE.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/Headers/SCHEDULE.H -------------------------------------------------------------------------------- /ShockMac/Game Src/Headers/SCREEN.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/Headers/SCREEN.H -------------------------------------------------------------------------------- /ShockMac/Game Src/Headers/SETPLOOP.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/Headers/SETPLOOP.H -------------------------------------------------------------------------------- /ShockMac/Game Src/Headers/SETUP.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/Headers/SETUP.H -------------------------------------------------------------------------------- /ShockMac/Game Src/Headers/SFXLIST.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/Headers/SFXLIST.H -------------------------------------------------------------------------------- /ShockMac/Game Src/Headers/SHODAN.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/Headers/SHODAN.H -------------------------------------------------------------------------------- /ShockMac/Game Src/Headers/SIDEART.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/Headers/SIDEART.H -------------------------------------------------------------------------------- /ShockMac/Game Src/Headers/SIDEICON.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/Headers/SIDEICON.H -------------------------------------------------------------------------------- /ShockMac/Game Src/Headers/SOFTDEF.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/Headers/SOFTDEF.H -------------------------------------------------------------------------------- /ShockMac/Game Src/Headers/SPLASFRN.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/Headers/SPLASFRN.H -------------------------------------------------------------------------------- /ShockMac/Game Src/Headers/SPLASGER.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/Headers/SPLASGER.H -------------------------------------------------------------------------------- /ShockMac/Game Src/Headers/SPLASH.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/Headers/SPLASH.H -------------------------------------------------------------------------------- /ShockMac/Game Src/Headers/SPLSHPAL.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/Headers/SPLSHPAL.H -------------------------------------------------------------------------------- /ShockMac/Game Src/Headers/SS_FLET.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/Headers/SS_FLET.H -------------------------------------------------------------------------------- /ShockMac/Game Src/Headers/STAR.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/Headers/STAR.H -------------------------------------------------------------------------------- /ShockMac/Game Src/Headers/STATICS.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/Headers/STATICS.H -------------------------------------------------------------------------------- /ShockMac/Game Src/Headers/STATUS.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/Headers/STATUS.H -------------------------------------------------------------------------------- /ShockMac/Game Src/Headers/STRWRAP.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/Headers/STRWRAP.H -------------------------------------------------------------------------------- /ShockMac/Game Src/Headers/SVGACURS.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/Headers/SVGACURS.H -------------------------------------------------------------------------------- /ShockMac/Game Src/Headers/TARGET.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/Headers/TARGET.H -------------------------------------------------------------------------------- /ShockMac/Game Src/Headers/TEXTMAPS.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/Headers/TEXTMAPS.H -------------------------------------------------------------------------------- /ShockMac/Game Src/Headers/TEXTURE.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/Headers/TEXTURE.H -------------------------------------------------------------------------------- /ShockMac/Game Src/Headers/TFDIRECT.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/Headers/TFDIRECT.H -------------------------------------------------------------------------------- /ShockMac/Game Src/Headers/TILECAM.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/Headers/TILECAM.H -------------------------------------------------------------------------------- /ShockMac/Game Src/Headers/TILEMAP.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/Headers/TILEMAP.H -------------------------------------------------------------------------------- /ShockMac/Game Src/Headers/TILENAME.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/Headers/TILENAME.H -------------------------------------------------------------------------------- /ShockMac/Game Src/Headers/TOOLS.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/Headers/TOOLS.H -------------------------------------------------------------------------------- /ShockMac/Game Src/Headers/TPOLYS.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/Headers/TPOLYS.H -------------------------------------------------------------------------------- /ShockMac/Game Src/Headers/TREASURE.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/Headers/TREASURE.H -------------------------------------------------------------------------------- /ShockMac/Game Src/Headers/TRIGGER.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/Headers/TRIGGER.H -------------------------------------------------------------------------------- /ShockMac/Game Src/Headers/VERIFY.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/Headers/VERIFY.H -------------------------------------------------------------------------------- /ShockMac/Game Src/Headers/VERSION.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/Headers/VERSION.H -------------------------------------------------------------------------------- /ShockMac/Game Src/Headers/VIEW360.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/Headers/VIEW360.H -------------------------------------------------------------------------------- /ShockMac/Game Src/Headers/VISIBLE.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/Headers/VISIBLE.H -------------------------------------------------------------------------------- /ShockMac/Game Src/Headers/VMAIL.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/Headers/VMAIL.H -------------------------------------------------------------------------------- /ShockMac/Game Src/Headers/WARES.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/Headers/WARES.H -------------------------------------------------------------------------------- /ShockMac/Game Src/Headers/WEAPONS.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/Headers/WEAPONS.H -------------------------------------------------------------------------------- /ShockMac/Game Src/Headers/WRAPPER.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/Headers/WRAPPER.H -------------------------------------------------------------------------------- /ShockMac/Game Src/INIT.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/INIT.C -------------------------------------------------------------------------------- /ShockMac/Game Src/INPUT.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/INPUT.C -------------------------------------------------------------------------------- /ShockMac/Game Src/INVENT.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/INVENT.C -------------------------------------------------------------------------------- /ShockMac/Game Src/LEANMETR.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/LEANMETR.C -------------------------------------------------------------------------------- /ShockMac/Game Src/MAINLOOP.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/MAINLOOP.C -------------------------------------------------------------------------------- /ShockMac/Game Src/MAP.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/MAP.C -------------------------------------------------------------------------------- /ShockMac/Game Src/MFDFUNC.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/MFDFUNC.C -------------------------------------------------------------------------------- /ShockMac/Game Src/MFDGADG.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/MFDGADG.C -------------------------------------------------------------------------------- /ShockMac/Game Src/MFDGAMES.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/MFDGAMES.C -------------------------------------------------------------------------------- /ShockMac/Game Src/MFDGUMP.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/MFDGUMP.C -------------------------------------------------------------------------------- /ShockMac/Game Src/MFDPANEL.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/MFDPANEL.C -------------------------------------------------------------------------------- /ShockMac/Game Src/MINIMAX.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/MINIMAX.C -------------------------------------------------------------------------------- /ShockMac/Game Src/MLIMBS.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/MLIMBS.C -------------------------------------------------------------------------------- /ShockMac/Game Src/MOVEKEYS.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/MOVEKEYS.C -------------------------------------------------------------------------------- /ShockMac/Game Src/MUSICAI.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/MUSICAI.C -------------------------------------------------------------------------------- /ShockMac/Game Src/NEWAI.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/NEWAI.C -------------------------------------------------------------------------------- /ShockMac/Game Src/NEWMFD.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/NEWMFD.C -------------------------------------------------------------------------------- /ShockMac/Game Src/OBJAPP.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/OBJAPP.C -------------------------------------------------------------------------------- /ShockMac/Game Src/OBJECTS.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/OBJECTS.C -------------------------------------------------------------------------------- /ShockMac/Game Src/OBJLOAD.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/OBJLOAD.C -------------------------------------------------------------------------------- /ShockMac/Game Src/OBJPROP.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/OBJPROP.C -------------------------------------------------------------------------------- /ShockMac/Game Src/OBJSIM.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/OBJSIM.C -------------------------------------------------------------------------------- /ShockMac/Game Src/OBJUSE.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/OBJUSE.C -------------------------------------------------------------------------------- /ShockMac/Game Src/OLH.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/OLH.C -------------------------------------------------------------------------------- /ShockMac/Game Src/OLHSCAN.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/OLHSCAN.C -------------------------------------------------------------------------------- /ShockMac/Game Src/PALFX.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/PALFX.C -------------------------------------------------------------------------------- /ShockMac/Game Src/PATHFIND.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/PATHFIND.C -------------------------------------------------------------------------------- /ShockMac/Game Src/PHYSICS.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/PHYSICS.C -------------------------------------------------------------------------------- /ShockMac/Game Src/PLAYER.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/PLAYER.C -------------------------------------------------------------------------------- /ShockMac/Game Src/PLOTWARE.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/PLOTWARE.C -------------------------------------------------------------------------------- /ShockMac/Game Src/POPUPS.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/POPUPS.C -------------------------------------------------------------------------------- /ShockMac/Game Src/RENDER.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/RENDER.C -------------------------------------------------------------------------------- /ShockMac/Game Src/RENDTOOL.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/RENDTOOL.C -------------------------------------------------------------------------------- /ShockMac/Game Src/SAVELOAD.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/SAVELOAD.C -------------------------------------------------------------------------------- /ShockMac/Game Src/SCHEDULE.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/SCHEDULE.C -------------------------------------------------------------------------------- /ShockMac/Game Src/SCREEN.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/SCREEN.C -------------------------------------------------------------------------------- /ShockMac/Game Src/SETUP.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/SETUP.C -------------------------------------------------------------------------------- /ShockMac/Game Src/SHODAN.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/SHODAN.C -------------------------------------------------------------------------------- /ShockMac/Game Src/SIDEICON.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/SIDEICON.C -------------------------------------------------------------------------------- /ShockMac/Game Src/SNDCALL.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/SNDCALL.C -------------------------------------------------------------------------------- /ShockMac/Game Src/STAR.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/STAR.C -------------------------------------------------------------------------------- /ShockMac/Game Src/STATICS.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/STATICS.C -------------------------------------------------------------------------------- /ShockMac/Game Src/STATUS.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/STATUS.C -------------------------------------------------------------------------------- /ShockMac/Game Src/TARGET.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/TARGET.C -------------------------------------------------------------------------------- /ShockMac/Game Src/TEXTMAPS.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/TEXTMAPS.C -------------------------------------------------------------------------------- /ShockMac/Game Src/TFDIRECT.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/TFDIRECT.C -------------------------------------------------------------------------------- /ShockMac/Game Src/TFUTIL.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/TFUTIL.C -------------------------------------------------------------------------------- /ShockMac/Game Src/TOOLS.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/TOOLS.C -------------------------------------------------------------------------------- /ShockMac/Game Src/TRIGGER.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/TRIGGER.C -------------------------------------------------------------------------------- /ShockMac/Game Src/VIEW360.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/VIEW360.C -------------------------------------------------------------------------------- /ShockMac/Game Src/VIEWHELP.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/VIEWHELP.C -------------------------------------------------------------------------------- /ShockMac/Game Src/VITALS.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/VITALS.C -------------------------------------------------------------------------------- /ShockMac/Game Src/VMAIL.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/VMAIL.C -------------------------------------------------------------------------------- /ShockMac/Game Src/WARES.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/WARES.C -------------------------------------------------------------------------------- /ShockMac/Game Src/WEAPONS.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/WEAPONS.C -------------------------------------------------------------------------------- /ShockMac/Game Src/WRAPPER.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Game Src/WRAPPER.C -------------------------------------------------------------------------------- /ShockMac/Game Src/game.rsrc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ShockMac/Icon%0D: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ShockMac/LIB/.finf/LGHeaders.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/LIB/.finf/LGHeaders.c -------------------------------------------------------------------------------- /ShockMac/LIB/.finf/LGHeadersPPC++: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/LIB/.finf/LGHeadersPPC++ -------------------------------------------------------------------------------- /ShockMac/LIB/.finf/LGHeadersPPC.µ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/LIB/.finf/LGHeadersPPC.µ -------------------------------------------------------------------------------- /ShockMac/LIB/.finf/MacHeaders.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/LIB/.finf/MacHeaders.c -------------------------------------------------------------------------------- /ShockMac/LIB/.rsrc/LGHeaders.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/LIB/.rsrc/LGHeaders.c -------------------------------------------------------------------------------- /ShockMac/LIB/.rsrc/LGHeadersPPC.µ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/LIB/.rsrc/LGHeadersPPC.µ -------------------------------------------------------------------------------- /ShockMac/LIB/.rsrc/MacHeaders.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/LIB/.rsrc/MacHeaders.c -------------------------------------------------------------------------------- /ShockMac/LIB/LGHeaders.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/LIB/LGHeaders.c -------------------------------------------------------------------------------- /ShockMac/LIB/LGHeadersPPC++: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/LIB/LGHeadersPPC++ -------------------------------------------------------------------------------- /ShockMac/LIB/LGHeadersPPC.µ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/LIB/LGHeadersPPC.µ -------------------------------------------------------------------------------- /ShockMac/LIB/LGHeadersPPC.µ copy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/LIB/LGHeadersPPC.µ copy -------------------------------------------------------------------------------- /ShockMac/LIB/MacHeaders.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/LIB/MacHeaders.c -------------------------------------------------------------------------------- /ShockMac/Libraries/.finf/2D: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/.finf/2D -------------------------------------------------------------------------------- /ShockMac/Libraries/.finf/3D: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/.finf/3D -------------------------------------------------------------------------------- /ShockMac/Libraries/.finf/AFILE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/.finf/AFILE -------------------------------------------------------------------------------- /ShockMac/Libraries/.finf/DSTRUCT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/.finf/DSTRUCT -------------------------------------------------------------------------------- /ShockMac/Libraries/.finf/EDMS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/.finf/EDMS -------------------------------------------------------------------------------- /ShockMac/Libraries/.finf/FIX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/.finf/FIX -------------------------------------------------------------------------------- /ShockMac/Libraries/.finf/FIXPP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/.finf/FIXPP -------------------------------------------------------------------------------- /ShockMac/Libraries/.finf/H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/.finf/H -------------------------------------------------------------------------------- /ShockMac/Libraries/.finf/INPUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/.finf/INPUT -------------------------------------------------------------------------------- /ShockMac/Libraries/.finf/LG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/.finf/LG -------------------------------------------------------------------------------- /ShockMac/Libraries/.finf/PALETTE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/.finf/PALETTE -------------------------------------------------------------------------------- /ShockMac/Libraries/.finf/RES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/.finf/RES -------------------------------------------------------------------------------- /ShockMac/Libraries/.finf/RND: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/.finf/RND -------------------------------------------------------------------------------- /ShockMac/Libraries/.finf/SND: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/.finf/SND -------------------------------------------------------------------------------- /ShockMac/Libraries/.finf/UI: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/.finf/UI -------------------------------------------------------------------------------- /ShockMac/Libraries/.finf/VOX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/.finf/VOX -------------------------------------------------------------------------------- /ShockMac/Libraries/2D/.finf/2D.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/2D/.finf/2D.make -------------------------------------------------------------------------------- /ShockMac/Libraries/2D/.finf/Source: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/2D/.finf/Source -------------------------------------------------------------------------------- /ShockMac/Libraries/2D/.finf/extra.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/2D/.finf/extra.res -------------------------------------------------------------------------------- /ShockMac/Libraries/2D/.finf/test.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/2D/.finf/test.img -------------------------------------------------------------------------------- /ShockMac/Libraries/2D/.finf/test.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/2D/.finf/test.pal -------------------------------------------------------------------------------- /ShockMac/Libraries/2D/.finf/test.shd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/2D/.finf/test.shd -------------------------------------------------------------------------------- /ShockMac/Libraries/2D/.rsrc/2D.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/2D/.rsrc/2D.make -------------------------------------------------------------------------------- /ShockMac/Libraries/2D/.rsrc/extra.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/2D/.rsrc/extra.res -------------------------------------------------------------------------------- /ShockMac/Libraries/2D/2D.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/2D/2D.make -------------------------------------------------------------------------------- /ShockMac/Libraries/2D/2dLib68K.¹: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/2D/2dLib68K.¹ -------------------------------------------------------------------------------- /ShockMac/Libraries/2D/2dLibPPC.¹: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/2D/2dLibPPC.¹ -------------------------------------------------------------------------------- /ShockMac/Libraries/2D/2dLibPPC.¹ copy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/2D/2dLibPPC.¹ copy -------------------------------------------------------------------------------- /ShockMac/Libraries/2D/2dTest.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/2D/2dTest.make -------------------------------------------------------------------------------- /ShockMac/Libraries/2D/2dTest.¹.rsrc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ShockMac/Libraries/2D/2dTest68K.¹: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/2D/2dTest68K.¹ -------------------------------------------------------------------------------- /ShockMac/Libraries/2D/2dTestPPC.¹: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/2D/2dTestPPC.¹ -------------------------------------------------------------------------------- /ShockMac/Libraries/2D/Simple2d68K.¹: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/2D/Simple2d68K.¹ -------------------------------------------------------------------------------- /ShockMac/Libraries/2D/Simple2dPPC.¹: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/2D/Simple2dPPC.¹ -------------------------------------------------------------------------------- /ShockMac/Libraries/2D/Source/.finf/GR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/2D/Source/.finf/GR -------------------------------------------------------------------------------- /ShockMac/Libraries/2D/Source/2D.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/2D/Source/2D.H -------------------------------------------------------------------------------- /ShockMac/Libraries/2D/Source/2dDiv.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/2D/Source/2dDiv.H -------------------------------------------------------------------------------- /ShockMac/Libraries/2D/Source/2dTest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/2D/Source/2dTest.c -------------------------------------------------------------------------------- /ShockMac/Libraries/2D/Source/BIT.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/2D/Source/BIT.C -------------------------------------------------------------------------------- /ShockMac/Libraries/2D/Source/BIT.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/2D/Source/BIT.H -------------------------------------------------------------------------------- /ShockMac/Libraries/2D/Source/BITMAP.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/2D/Source/BITMAP.C -------------------------------------------------------------------------------- /ShockMac/Libraries/2D/Source/BITMAP.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/2D/Source/BITMAP.H -------------------------------------------------------------------------------- /ShockMac/Libraries/2D/Source/BLEND.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/2D/Source/BLEND.C -------------------------------------------------------------------------------- /ShockMac/Libraries/2D/Source/BLEND.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/2D/Source/BLEND.H -------------------------------------------------------------------------------- /ShockMac/Libraries/2D/Source/BLNCON.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/2D/Source/BLNCON.H -------------------------------------------------------------------------------- /ShockMac/Libraries/2D/Source/BLNDAT.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/2D/Source/BLNDAT.H -------------------------------------------------------------------------------- /ShockMac/Libraries/2D/Source/BLNFCN.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/2D/Source/BLNFCN.H -------------------------------------------------------------------------------- /ShockMac/Libraries/2D/Source/BUFFER.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/2D/Source/BUFFER.C -------------------------------------------------------------------------------- /ShockMac/Libraries/2D/Source/BUFFER.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/2D/Source/BUFFER.H -------------------------------------------------------------------------------- /ShockMac/Libraries/2D/Source/CANVAS.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/2D/Source/CANVAS.C -------------------------------------------------------------------------------- /ShockMac/Libraries/2D/Source/CANVAS.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/2D/Source/CANVAS.H -------------------------------------------------------------------------------- /ShockMac/Libraries/2D/Source/CHAIN.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/2D/Source/CHAIN.C -------------------------------------------------------------------------------- /ShockMac/Libraries/2D/Source/CHAIN.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/2D/Source/CHAIN.H -------------------------------------------------------------------------------- /ShockMac/Libraries/2D/Source/CHR.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/2D/Source/CHR.H -------------------------------------------------------------------------------- /ShockMac/Libraries/2D/Source/CHRSIZ.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/2D/Source/CHRSIZ.C -------------------------------------------------------------------------------- /ShockMac/Libraries/2D/Source/CHRWID.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/2D/Source/CHRWID.C -------------------------------------------------------------------------------- /ShockMac/Libraries/2D/Source/CLOSE.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/2D/Source/CLOSE.C -------------------------------------------------------------------------------- /ShockMac/Libraries/2D/Source/CLOSE.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/2D/Source/CLOSE.H -------------------------------------------------------------------------------- /ShockMac/Libraries/2D/Source/CNVDAT.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/2D/Source/CNVDAT.H -------------------------------------------------------------------------------- /ShockMac/Libraries/2D/Source/CNVDRV.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/2D/Source/CNVDRV.H -------------------------------------------------------------------------------- /ShockMac/Libraries/2D/Source/CNVTAB.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/2D/Source/CNVTAB.C -------------------------------------------------------------------------------- /ShockMac/Libraries/2D/Source/CNVTAB.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/2D/Source/CNVTAB.H -------------------------------------------------------------------------------- /ShockMac/Libraries/2D/Source/CTXMAC.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/2D/Source/CTXMAC.H -------------------------------------------------------------------------------- /ShockMac/Libraries/2D/Source/DETECT.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/2D/Source/DETECT.C -------------------------------------------------------------------------------- /ShockMac/Libraries/2D/Source/DETECT.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/2D/Source/DETECT.H -------------------------------------------------------------------------------- /ShockMac/Libraries/2D/Source/DEVTAB.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/2D/Source/DEVTAB.H -------------------------------------------------------------------------------- /ShockMac/Libraries/2D/Source/FCNTAB.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/2D/Source/FCNTAB.C -------------------------------------------------------------------------------- /ShockMac/Libraries/2D/Source/FCNTAB.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/2D/Source/FCNTAB.H -------------------------------------------------------------------------------- /ShockMac/Libraries/2D/Source/FILL.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/2D/Source/FILL.H -------------------------------------------------------------------------------- /ShockMac/Libraries/2D/Source/GR/GRD.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/2D/Source/GR/GRD.C -------------------------------------------------------------------------------- /ShockMac/Libraries/2D/Source/GR/GRD.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/2D/Source/GR/GRD.H -------------------------------------------------------------------------------- /ShockMac/Libraries/2D/Source/GR/GRS.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/2D/Source/GR/GRS.H -------------------------------------------------------------------------------- /ShockMac/Libraries/2D/Source/IFCN.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/2D/Source/IFCN.H -------------------------------------------------------------------------------- /ShockMac/Libraries/2D/Source/INIT.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/2D/Source/INIT.C -------------------------------------------------------------------------------- /ShockMac/Libraries/2D/Source/INIT.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/2D/Source/INIT.H -------------------------------------------------------------------------------- /ShockMac/Libraries/2D/Source/INVTAB.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/2D/Source/INVTAB.C -------------------------------------------------------------------------------- /ShockMac/Libraries/2D/Source/INVTAB.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/2D/Source/INVTAB.H -------------------------------------------------------------------------------- /ShockMac/Libraries/2D/Source/LINE.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/2D/Source/LINE.H -------------------------------------------------------------------------------- /ShockMac/Libraries/2D/Source/LINFCN.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/2D/Source/LINFCN.H -------------------------------------------------------------------------------- /ShockMac/Libraries/2D/Source/LINTAB.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/2D/Source/LINTAB.C -------------------------------------------------------------------------------- /ShockMac/Libraries/2D/Source/LINTAB.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/2D/Source/LINTAB.H -------------------------------------------------------------------------------- /ShockMac/Libraries/2D/Source/LINTYP.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/2D/Source/LINTYP.H -------------------------------------------------------------------------------- /ShockMac/Libraries/2D/Source/MODE.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/2D/Source/MODE.C -------------------------------------------------------------------------------- /ShockMac/Libraries/2D/Source/MODE.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/2D/Source/MODE.H -------------------------------------------------------------------------------- /ShockMac/Libraries/2D/Source/MacDev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/2D/Source/MacDev.c -------------------------------------------------------------------------------- /ShockMac/Libraries/2D/Source/MacDev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/2D/Source/MacDev.h -------------------------------------------------------------------------------- /ShockMac/Libraries/2D/Source/PAL.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/2D/Source/PAL.C -------------------------------------------------------------------------------- /ShockMac/Libraries/2D/Source/PAL.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/2D/Source/PAL.H -------------------------------------------------------------------------------- /ShockMac/Libraries/2D/Source/PERMAP.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/2D/Source/PERMAP.C -------------------------------------------------------------------------------- /ShockMac/Libraries/2D/Source/PERTOL.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/2D/Source/PERTOL.C -------------------------------------------------------------------------------- /ShockMac/Libraries/2D/Source/PERTOL.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/2D/Source/PERTOL.H -------------------------------------------------------------------------------- /ShockMac/Libraries/2D/Source/PERTYP.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/2D/Source/PERTYP.H -------------------------------------------------------------------------------- /ShockMac/Libraries/2D/Source/PIXTAB.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/2D/Source/PIXTAB.H -------------------------------------------------------------------------------- /ShockMac/Libraries/2D/Source/PLYTYP.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/2D/Source/PLYTYP.H -------------------------------------------------------------------------------- /ShockMac/Libraries/2D/Source/POLY.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/2D/Source/POLY.H -------------------------------------------------------------------------------- /ShockMac/Libraries/2D/Source/RGB.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/2D/Source/RGB.C -------------------------------------------------------------------------------- /ShockMac/Libraries/2D/Source/RGB.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/2D/Source/RGB.H -------------------------------------------------------------------------------- /ShockMac/Libraries/2D/Source/RSD/RSDUNPCK.ASM: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ShockMac/Libraries/2D/Source/SCRDAT.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/2D/Source/SCRDAT.H -------------------------------------------------------------------------------- /ShockMac/Libraries/2D/Source/SCREEN.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/2D/Source/SCREEN.C -------------------------------------------------------------------------------- /ShockMac/Libraries/2D/Source/SCREEN.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/2D/Source/SCREEN.H -------------------------------------------------------------------------------- /ShockMac/Libraries/2D/Source/SCRMAC.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/2D/Source/SCRMAC.H -------------------------------------------------------------------------------- /ShockMac/Libraries/2D/Source/SSCRN.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/2D/Source/SSCRN.C -------------------------------------------------------------------------------- /ShockMac/Libraries/2D/Source/STATE.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/2D/Source/STATE.H -------------------------------------------------------------------------------- /ShockMac/Libraries/2D/Source/STATUS.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/2D/Source/STATUS.H -------------------------------------------------------------------------------- /ShockMac/Libraries/2D/Source/STR.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/2D/Source/STR.H -------------------------------------------------------------------------------- /ShockMac/Libraries/2D/Source/STRSCL.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/2D/Source/STRSCL.C -------------------------------------------------------------------------------- /ShockMac/Libraries/2D/Source/STRSIZ.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/2D/Source/STRSIZ.C -------------------------------------------------------------------------------- /ShockMac/Libraries/2D/Source/STRWID.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/2D/Source/STRWID.C -------------------------------------------------------------------------------- /ShockMac/Libraries/2D/Source/TABDAT.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/2D/Source/TABDAT.H -------------------------------------------------------------------------------- /ShockMac/Libraries/2D/Source/TABDRV.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/2D/Source/TABDRV.H -------------------------------------------------------------------------------- /ShockMac/Libraries/2D/Source/TEMPBM.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/2D/Source/TEMPBM.C -------------------------------------------------------------------------------- /ShockMac/Libraries/2D/Source/TEMPTM.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/2D/Source/TEMPTM.C -------------------------------------------------------------------------------- /ShockMac/Libraries/2D/Source/TMAPS.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/2D/Source/TMAPS.H -------------------------------------------------------------------------------- /ShockMac/Libraries/2D/Source/VALLOC.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/2D/Source/VALLOC.C -------------------------------------------------------------------------------- /ShockMac/Libraries/2D/Source/VALLOC.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/2D/Source/VALLOC.H -------------------------------------------------------------------------------- /ShockMac/Libraries/2D/Source/VESA.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/2D/Source/VESA.H -------------------------------------------------------------------------------- /ShockMac/Libraries/2D/Source/VTAB.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/2D/Source/VTAB.C -------------------------------------------------------------------------------- /ShockMac/Libraries/2D/Source/VTAB.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/2D/Source/VTAB.H -------------------------------------------------------------------------------- /ShockMac/Libraries/2D/Source/WIRE.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/2D/Source/WIRE.H -------------------------------------------------------------------------------- /ShockMac/Libraries/2D/Source/devtab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/2D/Source/devtab.c -------------------------------------------------------------------------------- /ShockMac/Libraries/2D/Source/maxmin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/2D/Source/maxmin.h -------------------------------------------------------------------------------- /ShockMac/Libraries/2D/TestInitMac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/2D/TestInitMac.c -------------------------------------------------------------------------------- /ShockMac/Libraries/2D/extra.res: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ShockMac/Libraries/2D/test.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/2D/test.img -------------------------------------------------------------------------------- /ShockMac/Libraries/2D/test.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/2D/test.pal -------------------------------------------------------------------------------- /ShockMac/Libraries/2D/test.shd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/2D/test.shd -------------------------------------------------------------------------------- /ShockMac/Libraries/3D/.finf/3D.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/3D/.finf/3D.make -------------------------------------------------------------------------------- /ShockMac/Libraries/3D/.finf/Source: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/3D/.finf/Source -------------------------------------------------------------------------------- /ShockMac/Libraries/3D/.finf/Tests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/3D/.finf/Tests -------------------------------------------------------------------------------- /ShockMac/Libraries/3D/.finf/bit.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/3D/.finf/bit.dat -------------------------------------------------------------------------------- /ShockMac/Libraries/3D/.finf/pal.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/3D/.finf/pal.dat -------------------------------------------------------------------------------- /ShockMac/Libraries/3D/.rsrc/3D.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/3D/.rsrc/3D.make -------------------------------------------------------------------------------- /ShockMac/Libraries/3D/.rsrc/bit.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/3D/.rsrc/bit.dat -------------------------------------------------------------------------------- /ShockMac/Libraries/3D/3D.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/3D/3D.make -------------------------------------------------------------------------------- /ShockMac/Libraries/3D/3dLib68K.¹: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/3D/3dLib68K.¹ -------------------------------------------------------------------------------- /ShockMac/Libraries/3D/3dLibPPC.¹: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/3D/3dLibPPC.¹ -------------------------------------------------------------------------------- /ShockMac/Libraries/3D/3dLibPPC.¹ copy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/3D/3dLibPPC.¹ copy -------------------------------------------------------------------------------- /ShockMac/Libraries/3D/3dTest.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/3D/3dTest.make -------------------------------------------------------------------------------- /ShockMac/Libraries/3D/3dTest.xcoff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/3D/3dTest.xcoff -------------------------------------------------------------------------------- /ShockMac/Libraries/3D/3dTest.xlines: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/3D/3dTest.xlines -------------------------------------------------------------------------------- /ShockMac/Libraries/3D/3dTest.¹.rsrc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ShockMac/Libraries/3D/3dTest68K.¹: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/3D/3dTest68K.¹ -------------------------------------------------------------------------------- /ShockMac/Libraries/3D/3dTestPPC.¹: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/3D/3dTestPPC.¹ -------------------------------------------------------------------------------- /ShockMac/Libraries/3D/Source/3D.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/3D/Source/3D.H -------------------------------------------------------------------------------- /ShockMac/Libraries/3D/Source/3dTest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/3D/Source/3dTest.c -------------------------------------------------------------------------------- /ShockMac/Libraries/3D/Source/ALLOC.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/3D/Source/ALLOC.C -------------------------------------------------------------------------------- /ShockMac/Libraries/3D/Source/Bitmap.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/3D/Source/Bitmap.C -------------------------------------------------------------------------------- /ShockMac/Libraries/3D/Source/CLIP.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/3D/Source/CLIP.C -------------------------------------------------------------------------------- /ShockMac/Libraries/3D/Source/DETAIL.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/3D/Source/DETAIL.C -------------------------------------------------------------------------------- /ShockMac/Libraries/3D/Source/FOV.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/3D/Source/FOV.C -------------------------------------------------------------------------------- /ShockMac/Libraries/3D/Source/INTERP.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/3D/Source/INTERP.C -------------------------------------------------------------------------------- /ShockMac/Libraries/3D/Source/LIGHT.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/3D/Source/LIGHT.C -------------------------------------------------------------------------------- /ShockMac/Libraries/3D/Source/MATRIX.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/3D/Source/MATRIX.C -------------------------------------------------------------------------------- /ShockMac/Libraries/3D/Source/POINTS.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/3D/Source/POINTS.C -------------------------------------------------------------------------------- /ShockMac/Libraries/3D/Source/SLEW.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/3D/Source/SLEW.C -------------------------------------------------------------------------------- /ShockMac/Libraries/3D/Source/TMAP.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/3D/Source/TMAP.C -------------------------------------------------------------------------------- /ShockMac/Libraries/3D/Source/VECTOR.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/3D/Source/VECTOR.C -------------------------------------------------------------------------------- /ShockMac/Libraries/3D/Tests/BoxTest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/3D/Tests/BoxTest.c -------------------------------------------------------------------------------- /ShockMac/Libraries/3D/Tests/ObjTest.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/3D/Tests/ObjTest.C -------------------------------------------------------------------------------- /ShockMac/Libraries/3D/bit.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/3D/bit.dat -------------------------------------------------------------------------------- /ShockMac/Libraries/3D/bit.dat(pc): -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/3D/bit.dat(pc) -------------------------------------------------------------------------------- /ShockMac/Libraries/3D/obj3d.rsrc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ShockMac/Libraries/3D/pal.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/3D/pal.dat -------------------------------------------------------------------------------- /ShockMac/Libraries/AFILE/.finf/Source: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/AFILE/.finf/Source -------------------------------------------------------------------------------- /ShockMac/Libraries/AFILE/AnimConv.µ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/AFILE/AnimConv.µ -------------------------------------------------------------------------------- /ShockMac/Libraries/AFILE/MovConv.µ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/AFILE/MovConv.µ -------------------------------------------------------------------------------- /ShockMac/Libraries/AFILE/MovieInfo.µ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/AFILE/MovieInfo.µ -------------------------------------------------------------------------------- /ShockMac/Libraries/AFILE/OldAnimConv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/AFILE/OldAnimConv -------------------------------------------------------------------------------- /ShockMac/Libraries/AFILE/QTConv.µ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/AFILE/QTConv.µ -------------------------------------------------------------------------------- /ShockMac/Libraries/DSTRUCT/DSTRUCT.µ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/DSTRUCT/DSTRUCT.µ -------------------------------------------------------------------------------- /ShockMac/Libraries/EDMS/.finf/EDMS.µ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/EDMS/.finf/EDMS.µ -------------------------------------------------------------------------------- /ShockMac/Libraries/EDMS/.finf/Source: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/EDMS/.finf/Source -------------------------------------------------------------------------------- /ShockMac/Libraries/EDMS/.finf/Tests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/EDMS/.finf/Tests -------------------------------------------------------------------------------- /ShockMac/Libraries/EDMS/.rsrc/EDMS.µ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/EDMS/.rsrc/EDMS.µ -------------------------------------------------------------------------------- /ShockMac/Libraries/EDMS/EDMS.68K.µ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/EDMS/EDMS.68K.µ -------------------------------------------------------------------------------- /ShockMac/Libraries/EDMS/EDMS.µ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/EDMS/EDMS.µ -------------------------------------------------------------------------------- /ShockMac/Libraries/FIX/.finf/FIX.µ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/FIX/.finf/FIX.µ -------------------------------------------------------------------------------- /ShockMac/Libraries/FIX/.finf/Tests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/FIX/.finf/Tests -------------------------------------------------------------------------------- /ShockMac/Libraries/FIX/.rsrc/FIX.µ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/FIX/.rsrc/FIX.µ -------------------------------------------------------------------------------- /ShockMac/Libraries/FIX/FIX.68K.µ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/FIX/FIX.68K.µ -------------------------------------------------------------------------------- /ShockMac/Libraries/FIX/FIX.µ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/FIX/FIX.µ -------------------------------------------------------------------------------- /ShockMac/Libraries/FIX/FIX.µ copy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/FIX/FIX.µ copy -------------------------------------------------------------------------------- /ShockMac/Libraries/FIX/Tests/asmSample/main.c: -------------------------------------------------------------------------------- 1 | 2 | 3 | main() 4 | { 5 | PPC_ASM_TEST(); 6 | } 7 | -------------------------------------------------------------------------------- /ShockMac/Libraries/FIXPP/FIXPP.µ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/FIXPP/FIXPP.µ -------------------------------------------------------------------------------- /ShockMac/Libraries/H/.finf/2DRES.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/H/.finf/2DRES.H -------------------------------------------------------------------------------- /ShockMac/Libraries/H/.finf/BASE.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/H/.finf/BASE.H -------------------------------------------------------------------------------- /ShockMac/Libraries/H/.finf/ERROR.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/H/.finf/ERROR.H -------------------------------------------------------------------------------- /ShockMac/Libraries/H/.rsrc/2DRES.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/H/.rsrc/2DRES.H -------------------------------------------------------------------------------- /ShockMac/Libraries/H/.rsrc/ERROR.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/H/.rsrc/ERROR.H -------------------------------------------------------------------------------- /ShockMac/Libraries/H/2DRES.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/H/2DRES.H -------------------------------------------------------------------------------- /ShockMac/Libraries/H/BASE.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/H/BASE.H -------------------------------------------------------------------------------- /ShockMac/Libraries/H/ERROR.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/H/ERROR.H -------------------------------------------------------------------------------- /ShockMac/Libraries/H/TYPES.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/H/TYPES.INC -------------------------------------------------------------------------------- /ShockMac/Libraries/H/keydefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/H/keydefs.h -------------------------------------------------------------------------------- /ShockMac/Libraries/H/lg_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/H/lg_types.h -------------------------------------------------------------------------------- /ShockMac/Libraries/INPUT/INPUT.µ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/INPUT/INPUT.µ -------------------------------------------------------------------------------- /ShockMac/Libraries/LG/.finf/LG.µ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/LG/.finf/LG.µ -------------------------------------------------------------------------------- /ShockMac/Libraries/LG/.finf/Source: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/LG/.finf/Source -------------------------------------------------------------------------------- /ShockMac/Libraries/LG/.finf/Tests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/LG/.finf/Tests -------------------------------------------------------------------------------- /ShockMac/Libraries/LG/.rsrc/LG.µ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/LG/.rsrc/LG.µ -------------------------------------------------------------------------------- /ShockMac/Libraries/LG/LG.68K.µ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/LG/LG.68K.µ -------------------------------------------------------------------------------- /ShockMac/Libraries/LG/LG.µ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/LG/LG.µ -------------------------------------------------------------------------------- /ShockMac/Libraries/LG/LG.µ copy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/LG/LG.µ copy -------------------------------------------------------------------------------- /ShockMac/Libraries/LG/Source/DBG.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/LG/Source/DBG.C -------------------------------------------------------------------------------- /ShockMac/Libraries/LG/Source/DBG.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/LG/Source/DBG.H -------------------------------------------------------------------------------- /ShockMac/Libraries/LG/Source/LG.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/LG/Source/LG.H -------------------------------------------------------------------------------- /ShockMac/Libraries/RES/.finf/RES.µ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/RES/.finf/RES.µ -------------------------------------------------------------------------------- /ShockMac/Libraries/RES/.finf/Tests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/RES/.finf/Tests -------------------------------------------------------------------------------- /ShockMac/Libraries/RES/.rsrc/RES.µ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/RES/.rsrc/RES.µ -------------------------------------------------------------------------------- /ShockMac/Libraries/RES/RES.68K.µ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/RES/RES.68K.µ -------------------------------------------------------------------------------- /ShockMac/Libraries/RES/RES.µ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/RES/RES.µ -------------------------------------------------------------------------------- /ShockMac/Libraries/RES/RES.µ copy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/RES/RES.µ copy -------------------------------------------------------------------------------- /ShockMac/Libraries/RND/.finf/RND.µ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/RND/.finf/RND.µ -------------------------------------------------------------------------------- /ShockMac/Libraries/RND/.finf/Tests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/RND/.finf/Tests -------------------------------------------------------------------------------- /ShockMac/Libraries/RND/.rsrc/RND.µ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/RND/.rsrc/RND.µ -------------------------------------------------------------------------------- /ShockMac/Libraries/RND/RND.68K.µ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/RND/RND.68K.µ -------------------------------------------------------------------------------- /ShockMac/Libraries/RND/RND.µ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/RND/RND.µ -------------------------------------------------------------------------------- /ShockMac/Libraries/RND/RND.µ copy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/RND/RND.µ copy -------------------------------------------------------------------------------- /ShockMac/Libraries/SND/.finf/SND.µ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/SND/.finf/SND.µ -------------------------------------------------------------------------------- /ShockMac/Libraries/SND/.finf/Tests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/SND/.finf/Tests -------------------------------------------------------------------------------- /ShockMac/Libraries/SND/.rsrc/SND.µ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/SND/.rsrc/SND.µ -------------------------------------------------------------------------------- /ShockMac/Libraries/SND/SND.68K.µ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/SND/SND.68K.µ -------------------------------------------------------------------------------- /ShockMac/Libraries/SND/SND.µ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/SND/SND.µ -------------------------------------------------------------------------------- /ShockMac/Libraries/SND/SND.µ copy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/SND/SND.µ copy -------------------------------------------------------------------------------- /ShockMac/Libraries/UI/.finf/Source: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/UI/.finf/Source -------------------------------------------------------------------------------- /ShockMac/Libraries/UI/.finf/Tests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/UI/.finf/Tests -------------------------------------------------------------------------------- /ShockMac/Libraries/UI/.finf/UI.µ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/UI/.finf/UI.µ -------------------------------------------------------------------------------- /ShockMac/Libraries/UI/.rsrc/UI.µ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/UI/.rsrc/UI.µ -------------------------------------------------------------------------------- /ShockMac/Libraries/UI/Source/TNG.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/UI/Source/TNG.C -------------------------------------------------------------------------------- /ShockMac/Libraries/UI/Source/TNG.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/UI/Source/TNG.H -------------------------------------------------------------------------------- /ShockMac/Libraries/UI/UI.68K.µ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/UI/UI.68K.µ -------------------------------------------------------------------------------- /ShockMac/Libraries/UI/UI.µ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/UI/UI.µ -------------------------------------------------------------------------------- /ShockMac/Libraries/UI/UI.µ copy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/UI/UI.µ copy -------------------------------------------------------------------------------- /ShockMac/Libraries/VOX/.finf/Tests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/VOX/.finf/Tests -------------------------------------------------------------------------------- /ShockMac/Libraries/VOX/.finf/VOX.µ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/VOX/.finf/VOX.µ -------------------------------------------------------------------------------- /ShockMac/Libraries/VOX/.rsrc/VOX.µ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/VOX/.rsrc/VOX.µ -------------------------------------------------------------------------------- /ShockMac/Libraries/VOX/VOX.68K.µ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/VOX/VOX.68K.µ -------------------------------------------------------------------------------- /ShockMac/Libraries/VOX/VOX.µ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/VOX/VOX.µ -------------------------------------------------------------------------------- /ShockMac/Libraries/VOX/VOX.µ copy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Libraries/VOX/VOX.µ copy -------------------------------------------------------------------------------- /ShockMac/Mac Src/.finf/Credits.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Mac Src/.finf/Credits.c -------------------------------------------------------------------------------- /ShockMac/Mac Src/.finf/InitMac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Mac Src/.finf/InitMac.c -------------------------------------------------------------------------------- /ShockMac/Mac Src/.finf/InitMac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Mac Src/.finf/InitMac.h -------------------------------------------------------------------------------- /ShockMac/Mac Src/.finf/MacTune.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Mac Src/.finf/MacTune.c -------------------------------------------------------------------------------- /ShockMac/Mac Src/.finf/MacTune.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Mac Src/.finf/MacTune.h -------------------------------------------------------------------------------- /ShockMac/Mac Src/.finf/MoviePlay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Mac Src/.finf/MoviePlay.c -------------------------------------------------------------------------------- /ShockMac/Mac Src/.finf/MoviePlay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Mac Src/.finf/MoviePlay.h -------------------------------------------------------------------------------- /ShockMac/Mac Src/.finf/Prefs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Mac Src/.finf/Prefs.c -------------------------------------------------------------------------------- /ShockMac/Mac Src/.finf/Prefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Mac Src/.finf/Prefs.h -------------------------------------------------------------------------------- /ShockMac/Mac Src/.finf/Shock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Mac Src/.finf/Shock.c -------------------------------------------------------------------------------- /ShockMac/Mac Src/.finf/Shock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Mac Src/.finf/Shock.h -------------------------------------------------------------------------------- /ShockMac/Mac Src/.finf/ShockHelp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Mac Src/.finf/ShockHelp.c -------------------------------------------------------------------------------- /ShockMac/Mac Src/.finf/ShockHelp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Mac Src/.finf/ShockHelp.h -------------------------------------------------------------------------------- /ShockMac/Mac Src/.finf/Test.rsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Mac Src/.finf/Test.rsrc -------------------------------------------------------------------------------- /ShockMac/Mac Src/.finf/Tests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Mac Src/.finf/Tests.c -------------------------------------------------------------------------------- /ShockMac/Mac Src/.finf/Tests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Mac Src/.finf/Tests.h -------------------------------------------------------------------------------- /ShockMac/Mac Src/.rsrc/Credits.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Mac Src/.rsrc/Credits.c -------------------------------------------------------------------------------- /ShockMac/Mac Src/.rsrc/InitMac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Mac Src/.rsrc/InitMac.c -------------------------------------------------------------------------------- /ShockMac/Mac Src/.rsrc/InitMac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Mac Src/.rsrc/InitMac.h -------------------------------------------------------------------------------- /ShockMac/Mac Src/.rsrc/MacTune.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Mac Src/.rsrc/MacTune.c -------------------------------------------------------------------------------- /ShockMac/Mac Src/.rsrc/MacTune.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Mac Src/.rsrc/MacTune.h -------------------------------------------------------------------------------- /ShockMac/Mac Src/.rsrc/MoviePlay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Mac Src/.rsrc/MoviePlay.c -------------------------------------------------------------------------------- /ShockMac/Mac Src/.rsrc/MoviePlay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Mac Src/.rsrc/MoviePlay.h -------------------------------------------------------------------------------- /ShockMac/Mac Src/.rsrc/Prefs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Mac Src/.rsrc/Prefs.c -------------------------------------------------------------------------------- /ShockMac/Mac Src/.rsrc/Prefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Mac Src/.rsrc/Prefs.h -------------------------------------------------------------------------------- /ShockMac/Mac Src/.rsrc/Shock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Mac Src/.rsrc/Shock.c -------------------------------------------------------------------------------- /ShockMac/Mac Src/.rsrc/Shock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Mac Src/.rsrc/Shock.h -------------------------------------------------------------------------------- /ShockMac/Mac Src/.rsrc/ShockHelp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Mac Src/.rsrc/ShockHelp.c -------------------------------------------------------------------------------- /ShockMac/Mac Src/.rsrc/ShockHelp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Mac Src/.rsrc/ShockHelp.h -------------------------------------------------------------------------------- /ShockMac/Mac Src/.rsrc/Test.rsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Mac Src/.rsrc/Test.rsrc -------------------------------------------------------------------------------- /ShockMac/Mac Src/.rsrc/Tests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Mac Src/.rsrc/Tests.c -------------------------------------------------------------------------------- /ShockMac/Mac Src/.rsrc/Tests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Mac Src/.rsrc/Tests.h -------------------------------------------------------------------------------- /ShockMac/Mac Src/AEHandlers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Mac Src/AEHandlers.c -------------------------------------------------------------------------------- /ShockMac/Mac Src/AEHandlers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Mac Src/AEHandlers.h -------------------------------------------------------------------------------- /ShockMac/Mac Src/Credits.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Mac Src/Credits.c -------------------------------------------------------------------------------- /ShockMac/Mac Src/DialogHelpers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Mac Src/DialogHelpers.c -------------------------------------------------------------------------------- /ShockMac/Mac Src/DialogHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Mac Src/DialogHelpers.h -------------------------------------------------------------------------------- /ShockMac/Mac Src/InitMac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Mac Src/InitMac.c -------------------------------------------------------------------------------- /ShockMac/Mac Src/InitMac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Mac Src/InitMac.h -------------------------------------------------------------------------------- /ShockMac/Mac Src/MacTune.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Mac Src/MacTune.c -------------------------------------------------------------------------------- /ShockMac/Mac Src/MacTune.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Mac Src/MacTune.h -------------------------------------------------------------------------------- /ShockMac/Mac Src/MoviePlay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Mac Src/MoviePlay.c -------------------------------------------------------------------------------- /ShockMac/Mac Src/MoviePlay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Mac Src/MoviePlay.h -------------------------------------------------------------------------------- /ShockMac/Mac Src/Prefs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Mac Src/Prefs.c -------------------------------------------------------------------------------- /ShockMac/Mac Src/Prefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Mac Src/Prefs.h -------------------------------------------------------------------------------- /ShockMac/Mac Src/Shock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Mac Src/Shock.c -------------------------------------------------------------------------------- /ShockMac/Mac Src/Shock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Mac Src/Shock.h -------------------------------------------------------------------------------- /ShockMac/Mac Src/Shock.µ.rsrc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ShockMac/Mac Src/ShockBitmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Mac Src/ShockBitmap.c -------------------------------------------------------------------------------- /ShockMac/Mac Src/ShockBitmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Mac Src/ShockBitmap.h -------------------------------------------------------------------------------- /ShockMac/Mac Src/ShockDialogs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Mac Src/ShockDialogs.c -------------------------------------------------------------------------------- /ShockMac/Mac Src/ShockDialogs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Mac Src/ShockDialogs.h -------------------------------------------------------------------------------- /ShockMac/Mac Src/ShockHelp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Mac Src/ShockHelp.c -------------------------------------------------------------------------------- /ShockMac/Mac Src/ShockHelp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Mac Src/ShockHelp.h -------------------------------------------------------------------------------- /ShockMac/Mac Src/ShockHelp.rsrc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ShockMac/Mac Src/Test.rsrc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ShockMac/Mac Src/Tests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Mac Src/Tests.c -------------------------------------------------------------------------------- /ShockMac/Mac Src/Tests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Mac Src/Tests.h -------------------------------------------------------------------------------- /ShockMac/Shock Build Notes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Shock Build Notes -------------------------------------------------------------------------------- /ShockMac/Shock.µ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Shock.µ -------------------------------------------------------------------------------- /ShockMac/Shock.µ copy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToxicFrog/shockmac/HEAD/ShockMac/Shock.µ copy --------------------------------------------------------------------------------