|
|
@@ -108,10 +108,16 @@ class MKSystem {
|
|
|
public get ui():UISystem{
|
|
|
return this._ui || new UISystem();
|
|
|
}
|
|
|
+ public set ui(v:UISystem){
|
|
|
+ this._ui = v;
|
|
|
+ }
|
|
|
_tip:TipSystem;
|
|
|
public get tip():TipSystem{
|
|
|
return this._tip || new TipSystem();
|
|
|
}
|
|
|
+ public set tip(v:TipSystem){
|
|
|
+ this.tip = v;
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
declare global {
|