mu3-mods/LockSelectionTime/MU3/patch_SystemUI.cs
2024-07-04 21:39:11 +09: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); }
}
}
}