zouyong vor 5 Jahren
Ursprung
Commit
ab0f8a1f3f
1 geänderte Dateien mit 6 neuen und 0 gelöschten Zeilen
  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{
     public get ui():UISystem{
         return this._ui || new UISystem();
         return this._ui || new UISystem();
     }
     }
+    public set ui(v:UISystem){
+        this._ui = v;
+    }
     _tip:TipSystem;
     _tip:TipSystem;
     public get tip():TipSystem{
     public get tip():TipSystem{
         return this._tip || new TipSystem();
         return this._tip || new TipSystem();
     }
     }
+    public set tip(v:TipSystem){
+        this.tip = v;
+    }
 }
 }
 
 
 declare global {
 declare global {