forked from akanyan/mu3-mods
feat!: rename and reorganize
This commit is contained in:
14
Enhancements/DisableTimers/MU3/patch_SystemUI.cs
Normal file
14
Enhancements/DisableTimers/MU3/patch_SystemUI.cs
Normal file
@ -0,0 +1,14 @@
|
||||
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); }
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user