Karate Man started.

This commit is contained in:
Starpelly
2021-12-29 01:52:48 -05:00
parent c653d487ac
commit 88f13795a9
127 changed files with 5877 additions and 46 deletions

View File

@ -9,6 +9,7 @@ using RhythmHeavenMania.Util;
using RhythmHeavenMania.Games.ForkLifter;
using RhythmHeavenMania.Games.ClappyTrio;
using RhythmHeavenMania.Games.Spaceball;
using RhythmHeavenMania.Games.KarateMan;
namespace RhythmHeavenMania
{
@ -93,6 +94,12 @@ namespace RhythmHeavenMania
new GameAction("costume", delegate { Spaceball.instance.Costume(currentType); }, true ),
new GameAction("alien", delegate { Spaceball.instance.alien.Show(currentBeat); }, true ),
// new GameAction("cameraZoom", delegate { Spaceball.instance.CameraZoom(currentBeat, currentLength, currentValA); } ),
}),
new MiniGame("karateman", "F6C135", new List<GameAction>()
{
new GameAction("bop", delegate { print("bop"); }, true ),
new GameAction("pot", delegate { KarateMan.instance.Shoot(currentBeat); }, true ),
// new GameAction("cameraZoom", delegate { Spaceball.instance.CameraZoom(currentBeat, currentLength, currentValA); } ),
})
};