forked from akanyan/mu3-mods
chore: major cleanup
This commit is contained in:
@ -1,9 +1,7 @@
|
||||
#pragma warning disable CS0626
|
||||
|
||||
namespace MU3;
|
||||
|
||||
public class patch_SystemUI: SystemUI {
|
||||
public class patch_Timer: SystemUI.Timer {
|
||||
class patch_SystemUI: SystemUI {
|
||||
class patch_Timer: Timer {
|
||||
public patch_Timer(UITimer timer) : base(timer) { /* nop */ }
|
||||
public new void execute() { /* nop */ }
|
||||
public extern bool orig_get_show();
|
||||
|
@ -1,10 +1,8 @@
|
||||
#pragma warning disable CS0626
|
||||
|
||||
using UnityEngine;
|
||||
|
||||
namespace MU3;
|
||||
|
||||
public class patch_UITimer: UITimer {
|
||||
class patch_UITimer: UITimer {
|
||||
public new void update() { /* nop */ }
|
||||
public new void update(float externalCounter) { /* nop */ }
|
||||
public extern void orig_initialize(float counter);
|
||||
|
Reference in New Issue
Block a user