zouyong пре 5 година
родитељ
комит
ab0f8a1f3f
1 измењених фајлова са 6 додато и 0 уклоњено
  1. 6 0
      assets/script/mk/system/MKSystem.ts

+ 6 - 0
assets/script/mk/system/MKSystem.ts

@@ -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 {