├── .gitignore ├── .gitmodules ├── CMakeLists.txt ├── Data ├── Game │ └── GameConfig.bin ├── Music │ └── Hyper.ogg ├── SoundFX │ ├── Global │ │ ├── FlickyFlee.wav │ │ └── JetGlide.wav │ ├── Logos │ │ └── SHCSplash.wav │ └── Stage │ │ ├── BeamImpact.wav │ │ ├── Impact2.wav │ │ └── Impact5.wav ├── Sprites │ ├── Global │ │ ├── HyperSparkle.bin │ │ ├── HyperSparkle.gif │ │ ├── RaySparkle.bin │ │ ├── RaySparkle.gif │ │ ├── Shockwave.bin │ │ ├── Shockwave.gif │ │ ├── SuperFlicky.bin │ │ └── SuperFlicky.gif │ ├── HPZ │ │ ├── Cutscene.gif │ │ ├── Emerald.bin │ │ ├── Sparkles.bin │ │ ├── SuperEmeralds.gif │ │ └── WarpBeam.bin │ ├── Logos │ │ ├── Splash.bin │ │ └── Splash.gif │ ├── Special │ │ ├── ResultsSE.bin │ │ └── ResultsSE.gif │ └── UI │ │ ├── SaveSelectSE.bin │ │ └── SaveSelectSE.gif └── Stages │ └── HPZ │ ├── 16x16Tiles.gif │ ├── Scene1.bin │ ├── StageConfig.bin │ └── TileConfig.bin ├── LICENSE ├── MANUAL.md ├── README.md ├── images ├── 1.png ├── 2.png ├── 3.png └── icon.png ├── mod.ini └── src ├── build.sh ├── hypermania ├── All.c ├── HyperManiaLink.c ├── HyperManiaLink.h ├── HyperManiaVariables.c ├── HyperManiaVariables.h ├── Mania │ ├── All.h │ ├── BSS │ │ └── BSS_Setup.h │ ├── CPZ │ │ ├── AmoebaDroid.h │ │ ├── Bubbler.h │ │ ├── CPZSetup.h │ │ ├── CaterkillerJr.h │ │ ├── Grabber.h │ │ └── Spiny.h │ ├── Common │ │ └── CollapsingPlatform.h │ ├── Cutscene │ │ └── FXFade.h │ ├── ERZ │ │ ├── ERZStart.h │ │ ├── PhantomEgg.h │ │ ├── PhantomMystic.h │ │ └── PhantomShinobi.h │ ├── FBZ │ │ ├── BigSqueeze.h │ │ ├── Blaster.h │ │ ├── Clucker.h │ │ ├── FBZTrash.h │ │ └── Technosqueek.h │ ├── GHZ │ │ ├── Batbrain.h │ │ ├── BuzzBomber.h │ │ ├── Chopper.h │ │ ├── Crabmeat.h │ │ ├── DDWrecker.h │ │ ├── DERobot.h │ │ ├── Motobug.h │ │ ├── Newtron.h │ │ └── Splats.h │ ├── Global │ │ ├── Animals.h │ │ ├── Camera.h │ │ ├── Debris.h │ │ ├── Explosion.h │ │ ├── HUD.h │ │ ├── ImageTrail.h │ │ ├── InvincibleStars.h │ │ ├── ItemBox.h │ │ ├── Music.h │ │ ├── PauseMenu.h │ │ ├── Player.h │ │ ├── Ring.h │ │ ├── SaveGame.h │ │ ├── ScoreBonus.h │ │ ├── SpecialRing.h │ │ └── Zone.h │ ├── HCZ │ │ ├── Blastoid.h │ │ ├── Buggernaut.h │ │ ├── HCZSetup.h │ │ ├── Jawz.h │ │ ├── Jellygnite.h │ │ ├── LaundroMobile.h │ │ ├── MegaChopper.h │ │ ├── Pointdexter.h │ │ └── TurboSpiker.h │ ├── LRZ │ │ ├── Drillerdroid.h │ │ ├── DrillerdroidO.h │ │ ├── Fireworm.h │ │ ├── HPZEmerald.h │ │ ├── HeavyKing.h │ │ ├── HeavyRider.h │ │ ├── Rexon.h │ │ ├── RockDrill.h │ │ └── Toxomister.h │ ├── MMZ │ │ ├── EggPistonsMKII.h │ │ ├── FarPlane.h │ │ ├── Gachapandora.h │ │ ├── MechaBu.h │ │ ├── PlaneSeeSaw.h │ │ ├── PohBee.h │ │ └── Scarab.h │ ├── MSZ │ │ ├── Armadiloid.h │ │ ├── Bumpalo.h │ │ ├── Cactula.h │ │ ├── DBTower.h │ │ ├── Hatterkiller.h │ │ ├── HeavyMystic.h │ │ ├── Rattlekiller.h │ │ ├── RollerMKII.h │ │ ├── UberCaterkiller.h │ │ └── Vultron.h │ ├── Menu │ │ ├── LevelSelect.h │ │ └── UISaveSlot.h │ ├── OOZ │ │ ├── Aquis.h │ │ ├── MegaOctus.h │ │ ├── MeterDroid.h │ │ ├── OOZSetup.h │ │ ├── Octus.h │ │ └── Sol.h │ ├── PGZ │ │ ├── Dragonfly.h │ │ ├── HeavyShinobi.h │ │ ├── IceBomba.h │ │ ├── JuggleSaw.h │ │ ├── Shiversaw.h │ │ └── Woodrow.h │ ├── SPZ │ │ ├── Canista.h │ │ ├── MicDrop.h │ │ ├── Shutterbug.h │ │ ├── Tubinaut.h │ │ └── WeatherMobile.h │ ├── SSZ │ │ ├── Dango.h │ │ ├── GigaMetal.h │ │ ├── Hotaru.h │ │ ├── HotaruHiWatt.h │ │ ├── HotaruMKII.h │ │ ├── Kabasira.h │ │ ├── Kanabun.h │ │ └── MetalSonic.h │ ├── TMZ │ │ ├── BallHog.h │ │ ├── CrimsonEye.h │ │ ├── FlasherMKII.h │ │ ├── SentryBug.h │ │ └── TurboTurtle.h │ └── UFO │ │ ├── SpecialClear.h │ │ ├── UFO_Player.h │ │ └── UFO_Setup.h ├── ModConfig.h ├── ModFunctions.c ├── ModFunctions.h ├── STRUCTURE ├── dllmain.c ├── link │ ├── All.h │ ├── BSS │ │ ├── BSS_Setup.c │ │ └── BSS_Setup.h │ ├── CPZ │ │ ├── AmoebaDroid.c │ │ ├── AmoebaDroid.h │ │ ├── Bubbler.c │ │ ├── Bubbler.h │ │ ├── CPZSetup.c │ │ ├── CPZSetup.h │ │ ├── CaterkillerJr.c │ │ ├── CaterkillerJr.h │ │ ├── Grabber.c │ │ ├── Grabber.h │ │ ├── Spiny.c │ │ └── Spiny.h │ ├── Common │ │ ├── CollapsingPlatform.c │ │ └── CollapsingPlatform.h │ ├── Cutscene │ │ ├── FXFade.c │ │ └── FXFade.h │ ├── ERZ │ │ ├── ERZStart.c │ │ ├── ERZStart.h │ │ ├── PhantomEgg.c │ │ ├── PhantomEgg.h │ │ ├── PhantomMystic.c │ │ ├── PhantomMystic.h │ │ ├── PhantomShinobi.c │ │ └── PhantomShinobi.h │ ├── Enemy.c │ ├── Enemy.h │ ├── FBZ │ │ ├── BigSqueeze.c │ │ ├── BigSqueeze.h │ │ ├── Blaster.c │ │ ├── Blaster.h │ │ ├── Clucker.c │ │ ├── Clucker.h │ │ ├── FBZTrash.c │ │ ├── FBZTrash.h │ │ ├── Technosqueek.c │ │ └── Technosqueek.h │ ├── GHZ │ │ ├── Batbrain.c │ │ ├── Batbrain.h │ │ ├── BuzzBomber.c │ │ ├── BuzzBomber.h │ │ ├── Chopper.c │ │ ├── Chopper.h │ │ ├── Crabmeat.c │ │ ├── Crabmeat.h │ │ ├── DDWrecker.c │ │ ├── DDWrecker.h │ │ ├── DERobot.c │ │ ├── DERobot.h │ │ ├── Motobug.c │ │ ├── Motobug.h │ │ ├── Newtron.c │ │ ├── Newtron.h │ │ ├── Splats.c │ │ └── Splats.h │ ├── Global │ │ ├── Animals.c │ │ ├── Animals.h │ │ ├── Camera.c │ │ ├── Camera.h │ │ ├── Explosion.c │ │ ├── Explosion.h │ │ ├── InvincibleStars.c │ │ ├── InvincibleStars.h │ │ ├── ItemBox.c │ │ ├── ItemBox.h │ │ ├── Music.c │ │ ├── Music.h │ │ ├── PauseMenu.c │ │ ├── PauseMenu.h │ │ ├── Ring.c │ │ ├── Ring.h │ │ ├── SaveGame.c │ │ ├── SaveGame.h │ │ ├── ScoreBonus.c │ │ ├── ScoreBonus.h │ │ ├── Zone.c │ │ └── Zone.h │ ├── HCZ │ │ ├── Blastoid.c │ │ ├── Blastoid.h │ │ ├── Buggernaut.c │ │ ├── Buggernaut.h │ │ ├── HCZSetup.c │ │ ├── HCZSetup.h │ │ ├── Jawz.c │ │ ├── Jawz.h │ │ ├── Jellygnite.c │ │ ├── Jellygnite.h │ │ ├── LaundroMobile.c │ │ ├── LaundroMobile.h │ │ ├── MegaChopper.c │ │ ├── MegaChopper.h │ │ ├── Pointdexter.c │ │ ├── Pointdexter.h │ │ ├── TurboSpiker.c │ │ └── TurboSpiker.h │ ├── LRZ │ │ ├── Drillerdroid.c │ │ ├── Drillerdroid.h │ │ ├── DrillerdroidO.c │ │ ├── DrillerdroidO.h │ │ ├── Fireworm.c │ │ ├── Fireworm.h │ │ ├── HeavyKing.c │ │ ├── HeavyKing.h │ │ ├── HeavyRider.c │ │ ├── HeavyRider.h │ │ ├── Rexon.c │ │ ├── Rexon.h │ │ ├── RockDrill.c │ │ ├── RockDrill.h │ │ ├── Toxomister.c │ │ └── Toxomister.h │ ├── MMZ │ │ ├── EggPistonsMKII.c │ │ ├── EggPistonsMKII.h │ │ ├── FarPlane.c │ │ ├── FarPlane.h │ │ ├── Gachapandora.c │ │ ├── Gachapandora.h │ │ ├── MechaBu.c │ │ ├── MechaBu.h │ │ ├── PohBee.c │ │ ├── PohBee.h │ │ ├── Scarab.c │ │ └── Scarab.h │ ├── MSZ │ │ ├── Armadiloid.c │ │ ├── Armadiloid.h │ │ ├── Bumpalo.c │ │ ├── Bumpalo.h │ │ ├── Cactula.c │ │ ├── Cactula.h │ │ ├── DBTower.c │ │ ├── DBTower.h │ │ ├── Hatterkiller.c │ │ ├── Hatterkiller.h │ │ ├── HeavyMystic.c │ │ ├── HeavyMystic.h │ │ ├── Rattlekiller.c │ │ ├── Rattlekiller.h │ │ ├── RollerMKII.c │ │ ├── RollerMKII.h │ │ ├── UberCaterkiller.c │ │ ├── UberCaterkiller.h │ │ ├── Vultron.c │ │ └── Vultron.h │ ├── OOZ │ │ ├── Aquis.c │ │ ├── Aquis.h │ │ ├── MegaOctus.c │ │ ├── MegaOctus.h │ │ ├── MeterDroid.c │ │ ├── MeterDroid.h │ │ ├── OOZSetup.c │ │ ├── OOZSetup.h │ │ ├── Octus.c │ │ ├── Octus.h │ │ ├── Sol.c │ │ └── Sol.h │ ├── PGZ │ │ ├── Dragonfly.c │ │ ├── Dragonfly.h │ │ ├── HeavyShinobi.c │ │ ├── HeavyShinobi.h │ │ ├── IceBomba.c │ │ ├── IceBomba.h │ │ ├── JuggleSaw.c │ │ ├── JuggleSaw.h │ │ ├── Shiversaw.c │ │ ├── Shiversaw.h │ │ ├── Woodrow.c │ │ └── Woodrow.h │ ├── SPZ │ │ ├── Canista.c │ │ ├── Canista.h │ │ ├── MicDrop.c │ │ ├── MicDrop.h │ │ ├── Shutterbug.c │ │ ├── Shutterbug.h │ │ ├── Tubinaut.c │ │ ├── Tubinaut.h │ │ ├── WeatherMobile.c │ │ └── WeatherMobile.h │ ├── SSZ │ │ ├── Dango.c │ │ ├── Dango.h │ │ ├── GigaMetal.c │ │ ├── GigaMetal.h │ │ ├── Hotaru.c │ │ ├── Hotaru.h │ │ ├── HotaruHiWatt.c │ │ ├── HotaruHiWatt.h │ │ ├── HotaruMKII.c │ │ ├── HotaruMKII.h │ │ ├── Kabasira.c │ │ ├── Kabasira.h │ │ ├── Kanabun.c │ │ ├── Kanabun.h │ │ ├── MetalSonic.c │ │ └── MetalSonic.h │ └── TMZ │ │ ├── BallHog.c │ │ ├── BallHog.h │ │ ├── CrimsonEye.c │ │ ├── CrimsonEye.h │ │ ├── FlasherMKII.c │ │ ├── FlasherMKII.h │ │ ├── SentryBug.c │ │ ├── SentryBug.h │ │ ├── TurboTurtle.c │ │ └── TurboTurtle.h ├── mod │ ├── All.h │ ├── Global │ │ ├── Debris.c │ │ ├── Debris.h │ │ ├── HUD.c │ │ ├── HUD.h │ │ ├── ImageTrail.c │ │ ├── ImageTrail.h │ │ ├── Player.c │ │ ├── Player.h │ │ ├── SpecialRing.c │ │ └── SpecialRing.h │ ├── LRZ │ │ ├── HPZEmerald.c │ │ └── HPZEmerald.h │ ├── MMZ │ │ ├── PlaneSeeSaw.c │ │ └── PlaneSeeSaw.h │ ├── Menu │ │ ├── LevelSelect.c │ │ ├── LevelSelect.h │ │ ├── UISaveSlot.c │ │ └── UISaveSlot.h │ └── UFO │ │ ├── SpecialClear.c │ │ ├── SpecialClear.h │ │ ├── UFO_Player.c │ │ ├── UFO_Player.h │ │ ├── UFO_Setup.c │ │ └── UFO_Setup.h └── new │ ├── All.h │ ├── Global │ ├── HyperStars.c │ ├── HyperStars.h │ ├── JetGlideEffect.c │ ├── JetGlideEffect.h │ ├── SuperFlicky.c │ └── SuperFlicky.h │ └── HPZ │ ├── HPZBeam.c │ ├── HPZBeam.h │ ├── HPZIntro.c │ ├── HPZIntro.h │ ├── HPZSetup.c │ └── HPZSetup.h ├── makereleases.sh ├── release-files ├── Data │ └── Game │ │ └── Game.xml ├── HyperManiaSaveData.bin ├── Logos │ ├── Scene1.bin │ └── StageConfig.bin ├── SHCmod.ini └── modSettings.ini └── run.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/.gitmodules -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /Data/Game/GameConfig.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/Data/Game/GameConfig.bin -------------------------------------------------------------------------------- /Data/Music/Hyper.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/Data/Music/Hyper.ogg -------------------------------------------------------------------------------- /Data/SoundFX/Global/FlickyFlee.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/Data/SoundFX/Global/FlickyFlee.wav -------------------------------------------------------------------------------- /Data/SoundFX/Global/JetGlide.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/Data/SoundFX/Global/JetGlide.wav -------------------------------------------------------------------------------- /Data/SoundFX/Logos/SHCSplash.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/Data/SoundFX/Logos/SHCSplash.wav -------------------------------------------------------------------------------- /Data/SoundFX/Stage/BeamImpact.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/Data/SoundFX/Stage/BeamImpact.wav -------------------------------------------------------------------------------- /Data/SoundFX/Stage/Impact2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/Data/SoundFX/Stage/Impact2.wav -------------------------------------------------------------------------------- /Data/SoundFX/Stage/Impact5.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/Data/SoundFX/Stage/Impact5.wav -------------------------------------------------------------------------------- /Data/Sprites/Global/HyperSparkle.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/Data/Sprites/Global/HyperSparkle.bin -------------------------------------------------------------------------------- /Data/Sprites/Global/HyperSparkle.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/Data/Sprites/Global/HyperSparkle.gif -------------------------------------------------------------------------------- /Data/Sprites/Global/RaySparkle.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/Data/Sprites/Global/RaySparkle.bin -------------------------------------------------------------------------------- /Data/Sprites/Global/RaySparkle.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/Data/Sprites/Global/RaySparkle.gif -------------------------------------------------------------------------------- /Data/Sprites/Global/Shockwave.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/Data/Sprites/Global/Shockwave.bin -------------------------------------------------------------------------------- /Data/Sprites/Global/Shockwave.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/Data/Sprites/Global/Shockwave.gif -------------------------------------------------------------------------------- /Data/Sprites/Global/SuperFlicky.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/Data/Sprites/Global/SuperFlicky.bin -------------------------------------------------------------------------------- /Data/Sprites/Global/SuperFlicky.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/Data/Sprites/Global/SuperFlicky.gif -------------------------------------------------------------------------------- /Data/Sprites/HPZ/Cutscene.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/Data/Sprites/HPZ/Cutscene.gif -------------------------------------------------------------------------------- /Data/Sprites/HPZ/Emerald.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/Data/Sprites/HPZ/Emerald.bin -------------------------------------------------------------------------------- /Data/Sprites/HPZ/Sparkles.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/Data/Sprites/HPZ/Sparkles.bin -------------------------------------------------------------------------------- /Data/Sprites/HPZ/SuperEmeralds.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/Data/Sprites/HPZ/SuperEmeralds.gif -------------------------------------------------------------------------------- /Data/Sprites/HPZ/WarpBeam.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/Data/Sprites/HPZ/WarpBeam.bin -------------------------------------------------------------------------------- /Data/Sprites/Logos/Splash.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/Data/Sprites/Logos/Splash.bin -------------------------------------------------------------------------------- /Data/Sprites/Logos/Splash.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/Data/Sprites/Logos/Splash.gif -------------------------------------------------------------------------------- /Data/Sprites/Special/ResultsSE.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/Data/Sprites/Special/ResultsSE.bin -------------------------------------------------------------------------------- /Data/Sprites/Special/ResultsSE.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/Data/Sprites/Special/ResultsSE.gif -------------------------------------------------------------------------------- /Data/Sprites/UI/SaveSelectSE.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/Data/Sprites/UI/SaveSelectSE.bin -------------------------------------------------------------------------------- /Data/Sprites/UI/SaveSelectSE.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/Data/Sprites/UI/SaveSelectSE.gif -------------------------------------------------------------------------------- /Data/Stages/HPZ/16x16Tiles.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/Data/Stages/HPZ/16x16Tiles.gif -------------------------------------------------------------------------------- /Data/Stages/HPZ/Scene1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/Data/Stages/HPZ/Scene1.bin -------------------------------------------------------------------------------- /Data/Stages/HPZ/StageConfig.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/Data/Stages/HPZ/StageConfig.bin -------------------------------------------------------------------------------- /Data/Stages/HPZ/TileConfig.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/Data/Stages/HPZ/TileConfig.bin -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/LICENSE -------------------------------------------------------------------------------- /MANUAL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/MANUAL.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/README.md -------------------------------------------------------------------------------- /images/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/images/1.png -------------------------------------------------------------------------------- /images/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/images/2.png -------------------------------------------------------------------------------- /images/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/images/3.png -------------------------------------------------------------------------------- /images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/images/icon.png -------------------------------------------------------------------------------- /mod.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/mod.ini -------------------------------------------------------------------------------- /src/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/build.sh -------------------------------------------------------------------------------- /src/hypermania/All.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/All.c -------------------------------------------------------------------------------- /src/hypermania/HyperManiaLink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/HyperManiaLink.c -------------------------------------------------------------------------------- /src/hypermania/HyperManiaLink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/HyperManiaLink.h -------------------------------------------------------------------------------- /src/hypermania/HyperManiaVariables.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/HyperManiaVariables.c -------------------------------------------------------------------------------- /src/hypermania/HyperManiaVariables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/HyperManiaVariables.h -------------------------------------------------------------------------------- /src/hypermania/Mania/All.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/Mania/All.h -------------------------------------------------------------------------------- /src/hypermania/Mania/BSS/BSS_Setup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/Mania/BSS/BSS_Setup.h -------------------------------------------------------------------------------- /src/hypermania/Mania/CPZ/AmoebaDroid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/Mania/CPZ/AmoebaDroid.h -------------------------------------------------------------------------------- /src/hypermania/Mania/CPZ/Bubbler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/Mania/CPZ/Bubbler.h -------------------------------------------------------------------------------- /src/hypermania/Mania/CPZ/CPZSetup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/Mania/CPZ/CPZSetup.h -------------------------------------------------------------------------------- /src/hypermania/Mania/CPZ/CaterkillerJr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/Mania/CPZ/CaterkillerJr.h -------------------------------------------------------------------------------- /src/hypermania/Mania/CPZ/Grabber.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/Mania/CPZ/Grabber.h -------------------------------------------------------------------------------- /src/hypermania/Mania/CPZ/Spiny.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/Mania/CPZ/Spiny.h -------------------------------------------------------------------------------- /src/hypermania/Mania/Common/CollapsingPlatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/Mania/Common/CollapsingPlatform.h -------------------------------------------------------------------------------- /src/hypermania/Mania/Cutscene/FXFade.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/Mania/Cutscene/FXFade.h -------------------------------------------------------------------------------- /src/hypermania/Mania/ERZ/ERZStart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/Mania/ERZ/ERZStart.h -------------------------------------------------------------------------------- /src/hypermania/Mania/ERZ/PhantomEgg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/Mania/ERZ/PhantomEgg.h -------------------------------------------------------------------------------- /src/hypermania/Mania/ERZ/PhantomMystic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/Mania/ERZ/PhantomMystic.h -------------------------------------------------------------------------------- /src/hypermania/Mania/ERZ/PhantomShinobi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/Mania/ERZ/PhantomShinobi.h -------------------------------------------------------------------------------- /src/hypermania/Mania/FBZ/BigSqueeze.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/Mania/FBZ/BigSqueeze.h -------------------------------------------------------------------------------- /src/hypermania/Mania/FBZ/Blaster.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/Mania/FBZ/Blaster.h -------------------------------------------------------------------------------- /src/hypermania/Mania/FBZ/Clucker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/Mania/FBZ/Clucker.h -------------------------------------------------------------------------------- /src/hypermania/Mania/FBZ/FBZTrash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/Mania/FBZ/FBZTrash.h -------------------------------------------------------------------------------- /src/hypermania/Mania/FBZ/Technosqueek.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/Mania/FBZ/Technosqueek.h -------------------------------------------------------------------------------- /src/hypermania/Mania/GHZ/Batbrain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/Mania/GHZ/Batbrain.h -------------------------------------------------------------------------------- /src/hypermania/Mania/GHZ/BuzzBomber.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/Mania/GHZ/BuzzBomber.h -------------------------------------------------------------------------------- /src/hypermania/Mania/GHZ/Chopper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/Mania/GHZ/Chopper.h -------------------------------------------------------------------------------- /src/hypermania/Mania/GHZ/Crabmeat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/Mania/GHZ/Crabmeat.h -------------------------------------------------------------------------------- /src/hypermania/Mania/GHZ/DDWrecker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/Mania/GHZ/DDWrecker.h -------------------------------------------------------------------------------- /src/hypermania/Mania/GHZ/DERobot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/Mania/GHZ/DERobot.h -------------------------------------------------------------------------------- /src/hypermania/Mania/GHZ/Motobug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/Mania/GHZ/Motobug.h -------------------------------------------------------------------------------- /src/hypermania/Mania/GHZ/Newtron.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/Mania/GHZ/Newtron.h -------------------------------------------------------------------------------- /src/hypermania/Mania/GHZ/Splats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/Mania/GHZ/Splats.h -------------------------------------------------------------------------------- /src/hypermania/Mania/Global/Animals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/Mania/Global/Animals.h -------------------------------------------------------------------------------- /src/hypermania/Mania/Global/Camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/Mania/Global/Camera.h -------------------------------------------------------------------------------- /src/hypermania/Mania/Global/Debris.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/Mania/Global/Debris.h -------------------------------------------------------------------------------- /src/hypermania/Mania/Global/Explosion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/Mania/Global/Explosion.h -------------------------------------------------------------------------------- /src/hypermania/Mania/Global/HUD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/Mania/Global/HUD.h -------------------------------------------------------------------------------- /src/hypermania/Mania/Global/ImageTrail.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/Mania/Global/ImageTrail.h -------------------------------------------------------------------------------- /src/hypermania/Mania/Global/InvincibleStars.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/Mania/Global/InvincibleStars.h -------------------------------------------------------------------------------- /src/hypermania/Mania/Global/ItemBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/Mania/Global/ItemBox.h -------------------------------------------------------------------------------- /src/hypermania/Mania/Global/Music.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/Mania/Global/Music.h -------------------------------------------------------------------------------- /src/hypermania/Mania/Global/PauseMenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/Mania/Global/PauseMenu.h -------------------------------------------------------------------------------- /src/hypermania/Mania/Global/Player.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/Mania/Global/Player.h -------------------------------------------------------------------------------- /src/hypermania/Mania/Global/Ring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/Mania/Global/Ring.h -------------------------------------------------------------------------------- /src/hypermania/Mania/Global/SaveGame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/Mania/Global/SaveGame.h -------------------------------------------------------------------------------- /src/hypermania/Mania/Global/ScoreBonus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/Mania/Global/ScoreBonus.h -------------------------------------------------------------------------------- /src/hypermania/Mania/Global/SpecialRing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/Mania/Global/SpecialRing.h -------------------------------------------------------------------------------- /src/hypermania/Mania/Global/Zone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/Mania/Global/Zone.h -------------------------------------------------------------------------------- /src/hypermania/Mania/HCZ/Blastoid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/Mania/HCZ/Blastoid.h -------------------------------------------------------------------------------- /src/hypermania/Mania/HCZ/Buggernaut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/Mania/HCZ/Buggernaut.h -------------------------------------------------------------------------------- /src/hypermania/Mania/HCZ/HCZSetup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/Mania/HCZ/HCZSetup.h -------------------------------------------------------------------------------- /src/hypermania/Mania/HCZ/Jawz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/Mania/HCZ/Jawz.h -------------------------------------------------------------------------------- /src/hypermania/Mania/HCZ/Jellygnite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/Mania/HCZ/Jellygnite.h -------------------------------------------------------------------------------- /src/hypermania/Mania/HCZ/LaundroMobile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/Mania/HCZ/LaundroMobile.h -------------------------------------------------------------------------------- /src/hypermania/Mania/HCZ/MegaChopper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/Mania/HCZ/MegaChopper.h -------------------------------------------------------------------------------- /src/hypermania/Mania/HCZ/Pointdexter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/Mania/HCZ/Pointdexter.h -------------------------------------------------------------------------------- /src/hypermania/Mania/HCZ/TurboSpiker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/Mania/HCZ/TurboSpiker.h -------------------------------------------------------------------------------- /src/hypermania/Mania/LRZ/Drillerdroid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/Mania/LRZ/Drillerdroid.h -------------------------------------------------------------------------------- /src/hypermania/Mania/LRZ/DrillerdroidO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/Mania/LRZ/DrillerdroidO.h -------------------------------------------------------------------------------- /src/hypermania/Mania/LRZ/Fireworm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/Mania/LRZ/Fireworm.h -------------------------------------------------------------------------------- /src/hypermania/Mania/LRZ/HPZEmerald.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/Mania/LRZ/HPZEmerald.h -------------------------------------------------------------------------------- /src/hypermania/Mania/LRZ/HeavyKing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/Mania/LRZ/HeavyKing.h -------------------------------------------------------------------------------- /src/hypermania/Mania/LRZ/HeavyRider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/Mania/LRZ/HeavyRider.h -------------------------------------------------------------------------------- /src/hypermania/Mania/LRZ/Rexon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/Mania/LRZ/Rexon.h -------------------------------------------------------------------------------- /src/hypermania/Mania/LRZ/RockDrill.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/Mania/LRZ/RockDrill.h -------------------------------------------------------------------------------- /src/hypermania/Mania/LRZ/Toxomister.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/Mania/LRZ/Toxomister.h -------------------------------------------------------------------------------- /src/hypermania/Mania/MMZ/EggPistonsMKII.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/Mania/MMZ/EggPistonsMKII.h -------------------------------------------------------------------------------- /src/hypermania/Mania/MMZ/FarPlane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/Mania/MMZ/FarPlane.h -------------------------------------------------------------------------------- /src/hypermania/Mania/MMZ/Gachapandora.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/Mania/MMZ/Gachapandora.h -------------------------------------------------------------------------------- /src/hypermania/Mania/MMZ/MechaBu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/Mania/MMZ/MechaBu.h -------------------------------------------------------------------------------- /src/hypermania/Mania/MMZ/PlaneSeeSaw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/Mania/MMZ/PlaneSeeSaw.h -------------------------------------------------------------------------------- /src/hypermania/Mania/MMZ/PohBee.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/Mania/MMZ/PohBee.h -------------------------------------------------------------------------------- /src/hypermania/Mania/MMZ/Scarab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/Mania/MMZ/Scarab.h -------------------------------------------------------------------------------- /src/hypermania/Mania/MSZ/Armadiloid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/Mania/MSZ/Armadiloid.h -------------------------------------------------------------------------------- /src/hypermania/Mania/MSZ/Bumpalo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/Mania/MSZ/Bumpalo.h -------------------------------------------------------------------------------- /src/hypermania/Mania/MSZ/Cactula.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/Mania/MSZ/Cactula.h -------------------------------------------------------------------------------- /src/hypermania/Mania/MSZ/DBTower.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/Mania/MSZ/DBTower.h -------------------------------------------------------------------------------- /src/hypermania/Mania/MSZ/Hatterkiller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/Mania/MSZ/Hatterkiller.h -------------------------------------------------------------------------------- /src/hypermania/Mania/MSZ/HeavyMystic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/Mania/MSZ/HeavyMystic.h -------------------------------------------------------------------------------- /src/hypermania/Mania/MSZ/Rattlekiller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/Mania/MSZ/Rattlekiller.h -------------------------------------------------------------------------------- /src/hypermania/Mania/MSZ/RollerMKII.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/Mania/MSZ/RollerMKII.h -------------------------------------------------------------------------------- /src/hypermania/Mania/MSZ/UberCaterkiller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/Mania/MSZ/UberCaterkiller.h -------------------------------------------------------------------------------- /src/hypermania/Mania/MSZ/Vultron.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/Mania/MSZ/Vultron.h -------------------------------------------------------------------------------- /src/hypermania/Mania/Menu/LevelSelect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/Mania/Menu/LevelSelect.h -------------------------------------------------------------------------------- /src/hypermania/Mania/Menu/UISaveSlot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/Mania/Menu/UISaveSlot.h -------------------------------------------------------------------------------- /src/hypermania/Mania/OOZ/Aquis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/Mania/OOZ/Aquis.h -------------------------------------------------------------------------------- /src/hypermania/Mania/OOZ/MegaOctus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/Mania/OOZ/MegaOctus.h -------------------------------------------------------------------------------- /src/hypermania/Mania/OOZ/MeterDroid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/Mania/OOZ/MeterDroid.h -------------------------------------------------------------------------------- /src/hypermania/Mania/OOZ/OOZSetup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/Mania/OOZ/OOZSetup.h -------------------------------------------------------------------------------- /src/hypermania/Mania/OOZ/Octus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/Mania/OOZ/Octus.h -------------------------------------------------------------------------------- /src/hypermania/Mania/OOZ/Sol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/Mania/OOZ/Sol.h -------------------------------------------------------------------------------- /src/hypermania/Mania/PGZ/Dragonfly.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/Mania/PGZ/Dragonfly.h -------------------------------------------------------------------------------- /src/hypermania/Mania/PGZ/HeavyShinobi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/Mania/PGZ/HeavyShinobi.h -------------------------------------------------------------------------------- /src/hypermania/Mania/PGZ/IceBomba.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/Mania/PGZ/IceBomba.h -------------------------------------------------------------------------------- /src/hypermania/Mania/PGZ/JuggleSaw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/Mania/PGZ/JuggleSaw.h -------------------------------------------------------------------------------- /src/hypermania/Mania/PGZ/Shiversaw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/Mania/PGZ/Shiversaw.h -------------------------------------------------------------------------------- /src/hypermania/Mania/PGZ/Woodrow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/Mania/PGZ/Woodrow.h -------------------------------------------------------------------------------- /src/hypermania/Mania/SPZ/Canista.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/Mania/SPZ/Canista.h -------------------------------------------------------------------------------- /src/hypermania/Mania/SPZ/MicDrop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/Mania/SPZ/MicDrop.h -------------------------------------------------------------------------------- /src/hypermania/Mania/SPZ/Shutterbug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/Mania/SPZ/Shutterbug.h -------------------------------------------------------------------------------- /src/hypermania/Mania/SPZ/Tubinaut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/Mania/SPZ/Tubinaut.h -------------------------------------------------------------------------------- /src/hypermania/Mania/SPZ/WeatherMobile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/Mania/SPZ/WeatherMobile.h -------------------------------------------------------------------------------- /src/hypermania/Mania/SSZ/Dango.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/Mania/SSZ/Dango.h -------------------------------------------------------------------------------- /src/hypermania/Mania/SSZ/GigaMetal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/Mania/SSZ/GigaMetal.h -------------------------------------------------------------------------------- /src/hypermania/Mania/SSZ/Hotaru.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/Mania/SSZ/Hotaru.h -------------------------------------------------------------------------------- /src/hypermania/Mania/SSZ/HotaruHiWatt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/Mania/SSZ/HotaruHiWatt.h -------------------------------------------------------------------------------- /src/hypermania/Mania/SSZ/HotaruMKII.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/Mania/SSZ/HotaruMKII.h -------------------------------------------------------------------------------- /src/hypermania/Mania/SSZ/Kabasira.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/Mania/SSZ/Kabasira.h -------------------------------------------------------------------------------- /src/hypermania/Mania/SSZ/Kanabun.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/Mania/SSZ/Kanabun.h -------------------------------------------------------------------------------- /src/hypermania/Mania/SSZ/MetalSonic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/Mania/SSZ/MetalSonic.h -------------------------------------------------------------------------------- /src/hypermania/Mania/TMZ/BallHog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/Mania/TMZ/BallHog.h -------------------------------------------------------------------------------- /src/hypermania/Mania/TMZ/CrimsonEye.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/Mania/TMZ/CrimsonEye.h -------------------------------------------------------------------------------- /src/hypermania/Mania/TMZ/FlasherMKII.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/Mania/TMZ/FlasherMKII.h -------------------------------------------------------------------------------- /src/hypermania/Mania/TMZ/SentryBug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/Mania/TMZ/SentryBug.h -------------------------------------------------------------------------------- /src/hypermania/Mania/TMZ/TurboTurtle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/Mania/TMZ/TurboTurtle.h -------------------------------------------------------------------------------- /src/hypermania/Mania/UFO/SpecialClear.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/Mania/UFO/SpecialClear.h -------------------------------------------------------------------------------- /src/hypermania/Mania/UFO/UFO_Player.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/Mania/UFO/UFO_Player.h -------------------------------------------------------------------------------- /src/hypermania/Mania/UFO/UFO_Setup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/Mania/UFO/UFO_Setup.h -------------------------------------------------------------------------------- /src/hypermania/ModConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/ModConfig.h -------------------------------------------------------------------------------- /src/hypermania/ModFunctions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/ModFunctions.c -------------------------------------------------------------------------------- /src/hypermania/ModFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/ModFunctions.h -------------------------------------------------------------------------------- /src/hypermania/STRUCTURE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/STRUCTURE -------------------------------------------------------------------------------- /src/hypermania/dllmain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/dllmain.c -------------------------------------------------------------------------------- /src/hypermania/link/All.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/All.h -------------------------------------------------------------------------------- /src/hypermania/link/BSS/BSS_Setup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/BSS/BSS_Setup.c -------------------------------------------------------------------------------- /src/hypermania/link/BSS/BSS_Setup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/BSS/BSS_Setup.h -------------------------------------------------------------------------------- /src/hypermania/link/CPZ/AmoebaDroid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/CPZ/AmoebaDroid.c -------------------------------------------------------------------------------- /src/hypermania/link/CPZ/AmoebaDroid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/CPZ/AmoebaDroid.h -------------------------------------------------------------------------------- /src/hypermania/link/CPZ/Bubbler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/CPZ/Bubbler.c -------------------------------------------------------------------------------- /src/hypermania/link/CPZ/Bubbler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/CPZ/Bubbler.h -------------------------------------------------------------------------------- /src/hypermania/link/CPZ/CPZSetup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/CPZ/CPZSetup.c -------------------------------------------------------------------------------- /src/hypermania/link/CPZ/CPZSetup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/CPZ/CPZSetup.h -------------------------------------------------------------------------------- /src/hypermania/link/CPZ/CaterkillerJr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/CPZ/CaterkillerJr.c -------------------------------------------------------------------------------- /src/hypermania/link/CPZ/CaterkillerJr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/CPZ/CaterkillerJr.h -------------------------------------------------------------------------------- /src/hypermania/link/CPZ/Grabber.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/CPZ/Grabber.c -------------------------------------------------------------------------------- /src/hypermania/link/CPZ/Grabber.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/CPZ/Grabber.h -------------------------------------------------------------------------------- /src/hypermania/link/CPZ/Spiny.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/CPZ/Spiny.c -------------------------------------------------------------------------------- /src/hypermania/link/CPZ/Spiny.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/CPZ/Spiny.h -------------------------------------------------------------------------------- /src/hypermania/link/Common/CollapsingPlatform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/Common/CollapsingPlatform.c -------------------------------------------------------------------------------- /src/hypermania/link/Common/CollapsingPlatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/Common/CollapsingPlatform.h -------------------------------------------------------------------------------- /src/hypermania/link/Cutscene/FXFade.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/Cutscene/FXFade.c -------------------------------------------------------------------------------- /src/hypermania/link/Cutscene/FXFade.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/Cutscene/FXFade.h -------------------------------------------------------------------------------- /src/hypermania/link/ERZ/ERZStart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/ERZ/ERZStart.c -------------------------------------------------------------------------------- /src/hypermania/link/ERZ/ERZStart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/ERZ/ERZStart.h -------------------------------------------------------------------------------- /src/hypermania/link/ERZ/PhantomEgg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/ERZ/PhantomEgg.c -------------------------------------------------------------------------------- /src/hypermania/link/ERZ/PhantomEgg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/ERZ/PhantomEgg.h -------------------------------------------------------------------------------- /src/hypermania/link/ERZ/PhantomMystic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/ERZ/PhantomMystic.c -------------------------------------------------------------------------------- /src/hypermania/link/ERZ/PhantomMystic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/ERZ/PhantomMystic.h -------------------------------------------------------------------------------- /src/hypermania/link/ERZ/PhantomShinobi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/ERZ/PhantomShinobi.c -------------------------------------------------------------------------------- /src/hypermania/link/ERZ/PhantomShinobi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/ERZ/PhantomShinobi.h -------------------------------------------------------------------------------- /src/hypermania/link/Enemy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/Enemy.c -------------------------------------------------------------------------------- /src/hypermania/link/Enemy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/Enemy.h -------------------------------------------------------------------------------- /src/hypermania/link/FBZ/BigSqueeze.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/FBZ/BigSqueeze.c -------------------------------------------------------------------------------- /src/hypermania/link/FBZ/BigSqueeze.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/FBZ/BigSqueeze.h -------------------------------------------------------------------------------- /src/hypermania/link/FBZ/Blaster.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/FBZ/Blaster.c -------------------------------------------------------------------------------- /src/hypermania/link/FBZ/Blaster.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/FBZ/Blaster.h -------------------------------------------------------------------------------- /src/hypermania/link/FBZ/Clucker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/FBZ/Clucker.c -------------------------------------------------------------------------------- /src/hypermania/link/FBZ/Clucker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/FBZ/Clucker.h -------------------------------------------------------------------------------- /src/hypermania/link/FBZ/FBZTrash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/FBZ/FBZTrash.c -------------------------------------------------------------------------------- /src/hypermania/link/FBZ/FBZTrash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/FBZ/FBZTrash.h -------------------------------------------------------------------------------- /src/hypermania/link/FBZ/Technosqueek.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/FBZ/Technosqueek.c -------------------------------------------------------------------------------- /src/hypermania/link/FBZ/Technosqueek.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/FBZ/Technosqueek.h -------------------------------------------------------------------------------- /src/hypermania/link/GHZ/Batbrain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/GHZ/Batbrain.c -------------------------------------------------------------------------------- /src/hypermania/link/GHZ/Batbrain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/GHZ/Batbrain.h -------------------------------------------------------------------------------- /src/hypermania/link/GHZ/BuzzBomber.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/GHZ/BuzzBomber.c -------------------------------------------------------------------------------- /src/hypermania/link/GHZ/BuzzBomber.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/GHZ/BuzzBomber.h -------------------------------------------------------------------------------- /src/hypermania/link/GHZ/Chopper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/GHZ/Chopper.c -------------------------------------------------------------------------------- /src/hypermania/link/GHZ/Chopper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/GHZ/Chopper.h -------------------------------------------------------------------------------- /src/hypermania/link/GHZ/Crabmeat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/GHZ/Crabmeat.c -------------------------------------------------------------------------------- /src/hypermania/link/GHZ/Crabmeat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/GHZ/Crabmeat.h -------------------------------------------------------------------------------- /src/hypermania/link/GHZ/DDWrecker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/GHZ/DDWrecker.c -------------------------------------------------------------------------------- /src/hypermania/link/GHZ/DDWrecker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/GHZ/DDWrecker.h -------------------------------------------------------------------------------- /src/hypermania/link/GHZ/DERobot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/GHZ/DERobot.c -------------------------------------------------------------------------------- /src/hypermania/link/GHZ/DERobot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/GHZ/DERobot.h -------------------------------------------------------------------------------- /src/hypermania/link/GHZ/Motobug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/GHZ/Motobug.c -------------------------------------------------------------------------------- /src/hypermania/link/GHZ/Motobug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/GHZ/Motobug.h -------------------------------------------------------------------------------- /src/hypermania/link/GHZ/Newtron.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/GHZ/Newtron.c -------------------------------------------------------------------------------- /src/hypermania/link/GHZ/Newtron.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/GHZ/Newtron.h -------------------------------------------------------------------------------- /src/hypermania/link/GHZ/Splats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/GHZ/Splats.c -------------------------------------------------------------------------------- /src/hypermania/link/GHZ/Splats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/GHZ/Splats.h -------------------------------------------------------------------------------- /src/hypermania/link/Global/Animals.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/Global/Animals.c -------------------------------------------------------------------------------- /src/hypermania/link/Global/Animals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/Global/Animals.h -------------------------------------------------------------------------------- /src/hypermania/link/Global/Camera.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/Global/Camera.c -------------------------------------------------------------------------------- /src/hypermania/link/Global/Camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/Global/Camera.h -------------------------------------------------------------------------------- /src/hypermania/link/Global/Explosion.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/Global/Explosion.c -------------------------------------------------------------------------------- /src/hypermania/link/Global/Explosion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/Global/Explosion.h -------------------------------------------------------------------------------- /src/hypermania/link/Global/InvincibleStars.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/Global/InvincibleStars.c -------------------------------------------------------------------------------- /src/hypermania/link/Global/InvincibleStars.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/Global/InvincibleStars.h -------------------------------------------------------------------------------- /src/hypermania/link/Global/ItemBox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/Global/ItemBox.c -------------------------------------------------------------------------------- /src/hypermania/link/Global/ItemBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/Global/ItemBox.h -------------------------------------------------------------------------------- /src/hypermania/link/Global/Music.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/Global/Music.c -------------------------------------------------------------------------------- /src/hypermania/link/Global/Music.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/Global/Music.h -------------------------------------------------------------------------------- /src/hypermania/link/Global/PauseMenu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/Global/PauseMenu.c -------------------------------------------------------------------------------- /src/hypermania/link/Global/PauseMenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/Global/PauseMenu.h -------------------------------------------------------------------------------- /src/hypermania/link/Global/Ring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/Global/Ring.c -------------------------------------------------------------------------------- /src/hypermania/link/Global/Ring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/Global/Ring.h -------------------------------------------------------------------------------- /src/hypermania/link/Global/SaveGame.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/Global/SaveGame.c -------------------------------------------------------------------------------- /src/hypermania/link/Global/SaveGame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/Global/SaveGame.h -------------------------------------------------------------------------------- /src/hypermania/link/Global/ScoreBonus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/Global/ScoreBonus.c -------------------------------------------------------------------------------- /src/hypermania/link/Global/ScoreBonus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/Global/ScoreBonus.h -------------------------------------------------------------------------------- /src/hypermania/link/Global/Zone.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/Global/Zone.c -------------------------------------------------------------------------------- /src/hypermania/link/Global/Zone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/Global/Zone.h -------------------------------------------------------------------------------- /src/hypermania/link/HCZ/Blastoid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/HCZ/Blastoid.c -------------------------------------------------------------------------------- /src/hypermania/link/HCZ/Blastoid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/HCZ/Blastoid.h -------------------------------------------------------------------------------- /src/hypermania/link/HCZ/Buggernaut.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/HCZ/Buggernaut.c -------------------------------------------------------------------------------- /src/hypermania/link/HCZ/Buggernaut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/HCZ/Buggernaut.h -------------------------------------------------------------------------------- /src/hypermania/link/HCZ/HCZSetup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/HCZ/HCZSetup.c -------------------------------------------------------------------------------- /src/hypermania/link/HCZ/HCZSetup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/HCZ/HCZSetup.h -------------------------------------------------------------------------------- /src/hypermania/link/HCZ/Jawz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/HCZ/Jawz.c -------------------------------------------------------------------------------- /src/hypermania/link/HCZ/Jawz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/HCZ/Jawz.h -------------------------------------------------------------------------------- /src/hypermania/link/HCZ/Jellygnite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/HCZ/Jellygnite.c -------------------------------------------------------------------------------- /src/hypermania/link/HCZ/Jellygnite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/HCZ/Jellygnite.h -------------------------------------------------------------------------------- /src/hypermania/link/HCZ/LaundroMobile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/HCZ/LaundroMobile.c -------------------------------------------------------------------------------- /src/hypermania/link/HCZ/LaundroMobile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/HCZ/LaundroMobile.h -------------------------------------------------------------------------------- /src/hypermania/link/HCZ/MegaChopper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/HCZ/MegaChopper.c -------------------------------------------------------------------------------- /src/hypermania/link/HCZ/MegaChopper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/HCZ/MegaChopper.h -------------------------------------------------------------------------------- /src/hypermania/link/HCZ/Pointdexter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/HCZ/Pointdexter.c -------------------------------------------------------------------------------- /src/hypermania/link/HCZ/Pointdexter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/HCZ/Pointdexter.h -------------------------------------------------------------------------------- /src/hypermania/link/HCZ/TurboSpiker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/HCZ/TurboSpiker.c -------------------------------------------------------------------------------- /src/hypermania/link/HCZ/TurboSpiker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/HCZ/TurboSpiker.h -------------------------------------------------------------------------------- /src/hypermania/link/LRZ/Drillerdroid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/LRZ/Drillerdroid.c -------------------------------------------------------------------------------- /src/hypermania/link/LRZ/Drillerdroid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/LRZ/Drillerdroid.h -------------------------------------------------------------------------------- /src/hypermania/link/LRZ/DrillerdroidO.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/LRZ/DrillerdroidO.c -------------------------------------------------------------------------------- /src/hypermania/link/LRZ/DrillerdroidO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/LRZ/DrillerdroidO.h -------------------------------------------------------------------------------- /src/hypermania/link/LRZ/Fireworm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/LRZ/Fireworm.c -------------------------------------------------------------------------------- /src/hypermania/link/LRZ/Fireworm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/LRZ/Fireworm.h -------------------------------------------------------------------------------- /src/hypermania/link/LRZ/HeavyKing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/LRZ/HeavyKing.c -------------------------------------------------------------------------------- /src/hypermania/link/LRZ/HeavyKing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/LRZ/HeavyKing.h -------------------------------------------------------------------------------- /src/hypermania/link/LRZ/HeavyRider.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/LRZ/HeavyRider.c -------------------------------------------------------------------------------- /src/hypermania/link/LRZ/HeavyRider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/LRZ/HeavyRider.h -------------------------------------------------------------------------------- /src/hypermania/link/LRZ/Rexon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/LRZ/Rexon.c -------------------------------------------------------------------------------- /src/hypermania/link/LRZ/Rexon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/LRZ/Rexon.h -------------------------------------------------------------------------------- /src/hypermania/link/LRZ/RockDrill.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/LRZ/RockDrill.c -------------------------------------------------------------------------------- /src/hypermania/link/LRZ/RockDrill.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/LRZ/RockDrill.h -------------------------------------------------------------------------------- /src/hypermania/link/LRZ/Toxomister.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/LRZ/Toxomister.c -------------------------------------------------------------------------------- /src/hypermania/link/LRZ/Toxomister.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/LRZ/Toxomister.h -------------------------------------------------------------------------------- /src/hypermania/link/MMZ/EggPistonsMKII.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/MMZ/EggPistonsMKII.c -------------------------------------------------------------------------------- /src/hypermania/link/MMZ/EggPistonsMKII.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/MMZ/EggPistonsMKII.h -------------------------------------------------------------------------------- /src/hypermania/link/MMZ/FarPlane.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/MMZ/FarPlane.c -------------------------------------------------------------------------------- /src/hypermania/link/MMZ/FarPlane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/MMZ/FarPlane.h -------------------------------------------------------------------------------- /src/hypermania/link/MMZ/Gachapandora.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/MMZ/Gachapandora.c -------------------------------------------------------------------------------- /src/hypermania/link/MMZ/Gachapandora.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/MMZ/Gachapandora.h -------------------------------------------------------------------------------- /src/hypermania/link/MMZ/MechaBu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/MMZ/MechaBu.c -------------------------------------------------------------------------------- /src/hypermania/link/MMZ/MechaBu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/MMZ/MechaBu.h -------------------------------------------------------------------------------- /src/hypermania/link/MMZ/PohBee.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/MMZ/PohBee.c -------------------------------------------------------------------------------- /src/hypermania/link/MMZ/PohBee.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/MMZ/PohBee.h -------------------------------------------------------------------------------- /src/hypermania/link/MMZ/Scarab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/MMZ/Scarab.c -------------------------------------------------------------------------------- /src/hypermania/link/MMZ/Scarab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/MMZ/Scarab.h -------------------------------------------------------------------------------- /src/hypermania/link/MSZ/Armadiloid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/MSZ/Armadiloid.c -------------------------------------------------------------------------------- /src/hypermania/link/MSZ/Armadiloid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/MSZ/Armadiloid.h -------------------------------------------------------------------------------- /src/hypermania/link/MSZ/Bumpalo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/MSZ/Bumpalo.c -------------------------------------------------------------------------------- /src/hypermania/link/MSZ/Bumpalo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/MSZ/Bumpalo.h -------------------------------------------------------------------------------- /src/hypermania/link/MSZ/Cactula.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/MSZ/Cactula.c -------------------------------------------------------------------------------- /src/hypermania/link/MSZ/Cactula.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/MSZ/Cactula.h -------------------------------------------------------------------------------- /src/hypermania/link/MSZ/DBTower.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/MSZ/DBTower.c -------------------------------------------------------------------------------- /src/hypermania/link/MSZ/DBTower.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/MSZ/DBTower.h -------------------------------------------------------------------------------- /src/hypermania/link/MSZ/Hatterkiller.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/MSZ/Hatterkiller.c -------------------------------------------------------------------------------- /src/hypermania/link/MSZ/Hatterkiller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/MSZ/Hatterkiller.h -------------------------------------------------------------------------------- /src/hypermania/link/MSZ/HeavyMystic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/MSZ/HeavyMystic.c -------------------------------------------------------------------------------- /src/hypermania/link/MSZ/HeavyMystic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/MSZ/HeavyMystic.h -------------------------------------------------------------------------------- /src/hypermania/link/MSZ/Rattlekiller.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/MSZ/Rattlekiller.c -------------------------------------------------------------------------------- /src/hypermania/link/MSZ/Rattlekiller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/MSZ/Rattlekiller.h -------------------------------------------------------------------------------- /src/hypermania/link/MSZ/RollerMKII.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/MSZ/RollerMKII.c -------------------------------------------------------------------------------- /src/hypermania/link/MSZ/RollerMKII.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/MSZ/RollerMKII.h -------------------------------------------------------------------------------- /src/hypermania/link/MSZ/UberCaterkiller.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/MSZ/UberCaterkiller.c -------------------------------------------------------------------------------- /src/hypermania/link/MSZ/UberCaterkiller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/MSZ/UberCaterkiller.h -------------------------------------------------------------------------------- /src/hypermania/link/MSZ/Vultron.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/MSZ/Vultron.c -------------------------------------------------------------------------------- /src/hypermania/link/MSZ/Vultron.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/MSZ/Vultron.h -------------------------------------------------------------------------------- /src/hypermania/link/OOZ/Aquis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/OOZ/Aquis.c -------------------------------------------------------------------------------- /src/hypermania/link/OOZ/Aquis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/OOZ/Aquis.h -------------------------------------------------------------------------------- /src/hypermania/link/OOZ/MegaOctus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/OOZ/MegaOctus.c -------------------------------------------------------------------------------- /src/hypermania/link/OOZ/MegaOctus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/OOZ/MegaOctus.h -------------------------------------------------------------------------------- /src/hypermania/link/OOZ/MeterDroid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/OOZ/MeterDroid.c -------------------------------------------------------------------------------- /src/hypermania/link/OOZ/MeterDroid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/OOZ/MeterDroid.h -------------------------------------------------------------------------------- /src/hypermania/link/OOZ/OOZSetup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/OOZ/OOZSetup.c -------------------------------------------------------------------------------- /src/hypermania/link/OOZ/OOZSetup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/OOZ/OOZSetup.h -------------------------------------------------------------------------------- /src/hypermania/link/OOZ/Octus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/OOZ/Octus.c -------------------------------------------------------------------------------- /src/hypermania/link/OOZ/Octus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/OOZ/Octus.h -------------------------------------------------------------------------------- /src/hypermania/link/OOZ/Sol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/OOZ/Sol.c -------------------------------------------------------------------------------- /src/hypermania/link/OOZ/Sol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/OOZ/Sol.h -------------------------------------------------------------------------------- /src/hypermania/link/PGZ/Dragonfly.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/PGZ/Dragonfly.c -------------------------------------------------------------------------------- /src/hypermania/link/PGZ/Dragonfly.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/PGZ/Dragonfly.h -------------------------------------------------------------------------------- /src/hypermania/link/PGZ/HeavyShinobi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/PGZ/HeavyShinobi.c -------------------------------------------------------------------------------- /src/hypermania/link/PGZ/HeavyShinobi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/PGZ/HeavyShinobi.h -------------------------------------------------------------------------------- /src/hypermania/link/PGZ/IceBomba.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/PGZ/IceBomba.c -------------------------------------------------------------------------------- /src/hypermania/link/PGZ/IceBomba.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/PGZ/IceBomba.h -------------------------------------------------------------------------------- /src/hypermania/link/PGZ/JuggleSaw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/PGZ/JuggleSaw.c -------------------------------------------------------------------------------- /src/hypermania/link/PGZ/JuggleSaw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/PGZ/JuggleSaw.h -------------------------------------------------------------------------------- /src/hypermania/link/PGZ/Shiversaw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/PGZ/Shiversaw.c -------------------------------------------------------------------------------- /src/hypermania/link/PGZ/Shiversaw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/PGZ/Shiversaw.h -------------------------------------------------------------------------------- /src/hypermania/link/PGZ/Woodrow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/PGZ/Woodrow.c -------------------------------------------------------------------------------- /src/hypermania/link/PGZ/Woodrow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/PGZ/Woodrow.h -------------------------------------------------------------------------------- /src/hypermania/link/SPZ/Canista.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/SPZ/Canista.c -------------------------------------------------------------------------------- /src/hypermania/link/SPZ/Canista.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/SPZ/Canista.h -------------------------------------------------------------------------------- /src/hypermania/link/SPZ/MicDrop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/SPZ/MicDrop.c -------------------------------------------------------------------------------- /src/hypermania/link/SPZ/MicDrop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/SPZ/MicDrop.h -------------------------------------------------------------------------------- /src/hypermania/link/SPZ/Shutterbug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/SPZ/Shutterbug.c -------------------------------------------------------------------------------- /src/hypermania/link/SPZ/Shutterbug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/SPZ/Shutterbug.h -------------------------------------------------------------------------------- /src/hypermania/link/SPZ/Tubinaut.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/SPZ/Tubinaut.c -------------------------------------------------------------------------------- /src/hypermania/link/SPZ/Tubinaut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/SPZ/Tubinaut.h -------------------------------------------------------------------------------- /src/hypermania/link/SPZ/WeatherMobile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/SPZ/WeatherMobile.c -------------------------------------------------------------------------------- /src/hypermania/link/SPZ/WeatherMobile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/SPZ/WeatherMobile.h -------------------------------------------------------------------------------- /src/hypermania/link/SSZ/Dango.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/SSZ/Dango.c -------------------------------------------------------------------------------- /src/hypermania/link/SSZ/Dango.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/SSZ/Dango.h -------------------------------------------------------------------------------- /src/hypermania/link/SSZ/GigaMetal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/SSZ/GigaMetal.c -------------------------------------------------------------------------------- /src/hypermania/link/SSZ/GigaMetal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/SSZ/GigaMetal.h -------------------------------------------------------------------------------- /src/hypermania/link/SSZ/Hotaru.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/SSZ/Hotaru.c -------------------------------------------------------------------------------- /src/hypermania/link/SSZ/Hotaru.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/SSZ/Hotaru.h -------------------------------------------------------------------------------- /src/hypermania/link/SSZ/HotaruHiWatt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/SSZ/HotaruHiWatt.c -------------------------------------------------------------------------------- /src/hypermania/link/SSZ/HotaruHiWatt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/SSZ/HotaruHiWatt.h -------------------------------------------------------------------------------- /src/hypermania/link/SSZ/HotaruMKII.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/SSZ/HotaruMKII.c -------------------------------------------------------------------------------- /src/hypermania/link/SSZ/HotaruMKII.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/SSZ/HotaruMKII.h -------------------------------------------------------------------------------- /src/hypermania/link/SSZ/Kabasira.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/SSZ/Kabasira.c -------------------------------------------------------------------------------- /src/hypermania/link/SSZ/Kabasira.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/SSZ/Kabasira.h -------------------------------------------------------------------------------- /src/hypermania/link/SSZ/Kanabun.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/SSZ/Kanabun.c -------------------------------------------------------------------------------- /src/hypermania/link/SSZ/Kanabun.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/SSZ/Kanabun.h -------------------------------------------------------------------------------- /src/hypermania/link/SSZ/MetalSonic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/SSZ/MetalSonic.c -------------------------------------------------------------------------------- /src/hypermania/link/SSZ/MetalSonic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/SSZ/MetalSonic.h -------------------------------------------------------------------------------- /src/hypermania/link/TMZ/BallHog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/TMZ/BallHog.c -------------------------------------------------------------------------------- /src/hypermania/link/TMZ/BallHog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/TMZ/BallHog.h -------------------------------------------------------------------------------- /src/hypermania/link/TMZ/CrimsonEye.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/TMZ/CrimsonEye.c -------------------------------------------------------------------------------- /src/hypermania/link/TMZ/CrimsonEye.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/TMZ/CrimsonEye.h -------------------------------------------------------------------------------- /src/hypermania/link/TMZ/FlasherMKII.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/TMZ/FlasherMKII.c -------------------------------------------------------------------------------- /src/hypermania/link/TMZ/FlasherMKII.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/TMZ/FlasherMKII.h -------------------------------------------------------------------------------- /src/hypermania/link/TMZ/SentryBug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/TMZ/SentryBug.c -------------------------------------------------------------------------------- /src/hypermania/link/TMZ/SentryBug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/TMZ/SentryBug.h -------------------------------------------------------------------------------- /src/hypermania/link/TMZ/TurboTurtle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/TMZ/TurboTurtle.c -------------------------------------------------------------------------------- /src/hypermania/link/TMZ/TurboTurtle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/link/TMZ/TurboTurtle.h -------------------------------------------------------------------------------- /src/hypermania/mod/All.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/mod/All.h -------------------------------------------------------------------------------- /src/hypermania/mod/Global/Debris.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/mod/Global/Debris.c -------------------------------------------------------------------------------- /src/hypermania/mod/Global/Debris.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/mod/Global/Debris.h -------------------------------------------------------------------------------- /src/hypermania/mod/Global/HUD.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/mod/Global/HUD.c -------------------------------------------------------------------------------- /src/hypermania/mod/Global/HUD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/mod/Global/HUD.h -------------------------------------------------------------------------------- /src/hypermania/mod/Global/ImageTrail.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/mod/Global/ImageTrail.c -------------------------------------------------------------------------------- /src/hypermania/mod/Global/ImageTrail.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/mod/Global/ImageTrail.h -------------------------------------------------------------------------------- /src/hypermania/mod/Global/Player.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/mod/Global/Player.c -------------------------------------------------------------------------------- /src/hypermania/mod/Global/Player.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/mod/Global/Player.h -------------------------------------------------------------------------------- /src/hypermania/mod/Global/SpecialRing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/mod/Global/SpecialRing.c -------------------------------------------------------------------------------- /src/hypermania/mod/Global/SpecialRing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/mod/Global/SpecialRing.h -------------------------------------------------------------------------------- /src/hypermania/mod/LRZ/HPZEmerald.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/mod/LRZ/HPZEmerald.c -------------------------------------------------------------------------------- /src/hypermania/mod/LRZ/HPZEmerald.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/mod/LRZ/HPZEmerald.h -------------------------------------------------------------------------------- /src/hypermania/mod/MMZ/PlaneSeeSaw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/mod/MMZ/PlaneSeeSaw.c -------------------------------------------------------------------------------- /src/hypermania/mod/MMZ/PlaneSeeSaw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/mod/MMZ/PlaneSeeSaw.h -------------------------------------------------------------------------------- /src/hypermania/mod/Menu/LevelSelect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/mod/Menu/LevelSelect.c -------------------------------------------------------------------------------- /src/hypermania/mod/Menu/LevelSelect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/mod/Menu/LevelSelect.h -------------------------------------------------------------------------------- /src/hypermania/mod/Menu/UISaveSlot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/mod/Menu/UISaveSlot.c -------------------------------------------------------------------------------- /src/hypermania/mod/Menu/UISaveSlot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/mod/Menu/UISaveSlot.h -------------------------------------------------------------------------------- /src/hypermania/mod/UFO/SpecialClear.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/mod/UFO/SpecialClear.c -------------------------------------------------------------------------------- /src/hypermania/mod/UFO/SpecialClear.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/mod/UFO/SpecialClear.h -------------------------------------------------------------------------------- /src/hypermania/mod/UFO/UFO_Player.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/mod/UFO/UFO_Player.c -------------------------------------------------------------------------------- /src/hypermania/mod/UFO/UFO_Player.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/mod/UFO/UFO_Player.h -------------------------------------------------------------------------------- /src/hypermania/mod/UFO/UFO_Setup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/mod/UFO/UFO_Setup.c -------------------------------------------------------------------------------- /src/hypermania/mod/UFO/UFO_Setup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/mod/UFO/UFO_Setup.h -------------------------------------------------------------------------------- /src/hypermania/new/All.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/new/All.h -------------------------------------------------------------------------------- /src/hypermania/new/Global/HyperStars.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/new/Global/HyperStars.c -------------------------------------------------------------------------------- /src/hypermania/new/Global/HyperStars.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/new/Global/HyperStars.h -------------------------------------------------------------------------------- /src/hypermania/new/Global/JetGlideEffect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/new/Global/JetGlideEffect.c -------------------------------------------------------------------------------- /src/hypermania/new/Global/JetGlideEffect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/new/Global/JetGlideEffect.h -------------------------------------------------------------------------------- /src/hypermania/new/Global/SuperFlicky.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/new/Global/SuperFlicky.c -------------------------------------------------------------------------------- /src/hypermania/new/Global/SuperFlicky.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/new/Global/SuperFlicky.h -------------------------------------------------------------------------------- /src/hypermania/new/HPZ/HPZBeam.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/new/HPZ/HPZBeam.c -------------------------------------------------------------------------------- /src/hypermania/new/HPZ/HPZBeam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/new/HPZ/HPZBeam.h -------------------------------------------------------------------------------- /src/hypermania/new/HPZ/HPZIntro.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/new/HPZ/HPZIntro.c -------------------------------------------------------------------------------- /src/hypermania/new/HPZ/HPZIntro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/new/HPZ/HPZIntro.h -------------------------------------------------------------------------------- /src/hypermania/new/HPZ/HPZSetup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/new/HPZ/HPZSetup.c -------------------------------------------------------------------------------- /src/hypermania/new/HPZ/HPZSetup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/hypermania/new/HPZ/HPZSetup.h -------------------------------------------------------------------------------- /src/makereleases.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/makereleases.sh -------------------------------------------------------------------------------- /src/release-files/Data/Game/Game.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/release-files/Data/Game/Game.xml -------------------------------------------------------------------------------- /src/release-files/HyperManiaSaveData.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/release-files/HyperManiaSaveData.bin -------------------------------------------------------------------------------- /src/release-files/Logos/Scene1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/release-files/Logos/Scene1.bin -------------------------------------------------------------------------------- /src/release-files/Logos/StageConfig.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/release-files/Logos/StageConfig.bin -------------------------------------------------------------------------------- /src/release-files/SHCmod.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/release-files/SHCmod.ini -------------------------------------------------------------------------------- /src/release-files/modSettings.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/release-files/modSettings.ini -------------------------------------------------------------------------------- /src/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tariq-nasheed/HyperMania/HEAD/src/run.sh --------------------------------------------------------------------------------