forked from akanyan/mu3-mods
feat: add infinite gp and skip premusic
Also, run the autoformatter. Also, the skip is now cleaner.
This commit is contained in:
@ -8,28 +8,28 @@ using MU3.Util;
|
||||
|
||||
namespace MU3;
|
||||
|
||||
public class patch_Scene_37_Result : Scene_37_Result {
|
||||
private Mode<Scene_37_Result, State> mode_;
|
||||
private extern void orig_Init_Init();
|
||||
private enum State {
|
||||
Init,
|
||||
Score,
|
||||
Assignment,
|
||||
ReleaseMaster,
|
||||
GetMusic,
|
||||
UnlockScenario,
|
||||
Event,
|
||||
MemoryChapterEvent,
|
||||
CardCharaUp,
|
||||
CardCharaWaitSkip,
|
||||
CardCharaEnd,
|
||||
End
|
||||
}
|
||||
public class patch_Scene_37_Result: Scene_37_Result {
|
||||
private Mode<Scene_37_Result, State> mode_;
|
||||
private extern void orig_Init_Init();
|
||||
private enum State {
|
||||
Init,
|
||||
Score,
|
||||
Assignment,
|
||||
ReleaseMaster,
|
||||
GetMusic,
|
||||
UnlockScenario,
|
||||
Event,
|
||||
MemoryChapterEvent,
|
||||
CardCharaUp,
|
||||
CardCharaWaitSkip,
|
||||
CardCharaEnd,
|
||||
End
|
||||
}
|
||||
|
||||
private void Init_Init() {
|
||||
orig_Init_Init();
|
||||
if(patch_PlayMusic.QuickSkip) {
|
||||
mode_.set(State.End);
|
||||
}
|
||||
}
|
||||
private void Init_Init() {
|
||||
orig_Init_Init();
|
||||
if(patch_PlayMusic.QuickSkip) {
|
||||
mode_.set(State.End);
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user