1
0
forked from akanyan/mu3-mods
Files
mu3-mods/SkipBullshit/MU3.Battle/patch_GameEngine.cs
akanyan a4104a67e7 feat: add infinite gp and skip premusic
Also, run the autoformatter.
Also, the skip is now cleaner.
2024-05-26 08:15:13 +09:00

9 lines
172 B
C#

#pragma warning disable CS0108
namespace MU3.Battle;
public class patch_GameEngine: GameEngine {
public bool isStartCutsceneFinish() {
return true;
}
}