chore: cleanup

This commit is contained in:
あかニャン 2024-07-02 10:35:45 +09:00
parent cc6f7657c7
commit 470d2acae4
6 changed files with 11 additions and 13 deletions

View File

@ -4,7 +4,7 @@ namespace MU3;
public class patch_SystemUI: SystemUI {
public class patch_Timer: SystemUI.Timer {
public patch_Timer(UITimer timer): base(timer) { /* nop */ }
public patch_Timer(UITimer timer) : base(timer) { /* nop */ }
public new void execute() { /* nop */ }
public extern bool orig_get_show();
public extern void orig_set_show(bool value);

View File

@ -3,12 +3,12 @@
#pragma warning disable IDE0051
#pragma warning disable IDE1006
using System.Collections.Generic;
using System.Linq;
using MU3.Data;
using MU3.DataStudio;
using MU3.User;
using MU3.Util;
using System.Collections.Generic;
using System.Linq;
namespace MU3;

View File

@ -5,7 +5,7 @@ using MU3.Util;
namespace MU3;
public class patch_ANM_SWH_Profile : ANM_SWH_Profile {
public class patch_ANM_SWH_Profile: ANM_SWH_Profile {
public extern void orig_setUpLogin();
// Fixes login display

View File

@ -1,9 +1,7 @@
#pragma warning disable CS0108
namespace MU3.Battle;
namespace MU3.Battle;
public class patch_GameEngine: GameEngine {
public bool isStartCutsceneFinish() {
public new bool isStartCutsceneFinish() {
return true;
}
}