Beispiel #1
0
 public void Add(UIType type, UI ui)
 {
     this.uis.Add(type, ui);
 }
Beispiel #2
0
 public void Add(UI ui)
 {
     this.children.Add(ui.Name, ui);
     ui.Parent = this;
 }
Beispiel #3
0
 public void Run()
 {
     UI ui = Hotfix.Scene.GetComponent <UIComponent>().Create(UIType.Login);
 }