mu3-mods/LockSelectionTime/MU3/patch_SystemUI.cs

16 lines
485 B
C#
Raw Normal View History

2024-06-27 00:41:45 +00:00
#pragma warning disable CS0626
namespace MU3;
public class patch_SystemUI: SystemUI {
public class patch_Timer: SystemUI.Timer {
2024-07-02 01:35:45 +00:00
public patch_Timer(UITimer timer) : base(timer) { /* nop */ }
2024-06-27 00:41:45 +00:00
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); }
}
}
}