示例#1
0
 public void Add(UIType type, UI ui)
 {
     this.uis.Add(type, ui);
 }
示例#2
0
文件: UI.cs 项目: richardgist/ET
 public void Add(UI ui)
 {
     this.children.Add(ui.Name, ui);
     ui.Parent = this;
 }
示例#3
0
 public void Run()
 {
     UI ui = Hotfix.Scene.GetComponent <UIComponent>().Create(UIType.Login);
 }