14 lines
430 B
C#
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); }
|
|
}
|
|
}
|
|
} |