1
0
forked from akanyan/mu3-mods
Files
mu3-mods/Enhancements/DisableTimers/MU3/patch_SystemUI.cs
2024-12-22 16:16:52 +00:00

14 lines
430 B
C#

namespace MU3;
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();
public extern void orig_set_show(bool value);
public new bool show {
get { return orig_get_show(); }
set { orig_set_show(false); }
}
}
}