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:
@ -7,7 +7,7 @@ using System.Collections.Generic;
|
||||
|
||||
namespace MU3.Game;
|
||||
|
||||
public class patch_GameLED : GameLED {
|
||||
public class patch_GameLED: GameLED {
|
||||
private patch_ButtonList _buttonList = new();
|
||||
|
||||
public extern void orig_initialize();
|
||||
@ -17,7 +17,7 @@ public class patch_GameLED : GameLED {
|
||||
orig_initialize();
|
||||
}
|
||||
|
||||
private class patch_ButtonParam {}
|
||||
private class patch_ButtonParam { }
|
||||
|
||||
private class patch_ButtonList : List<patch_ButtonParam> {}
|
||||
private class patch_ButtonList: List<patch_ButtonParam> { }
|
||||
}
|
Reference in New Issue
Block a user