Exemplo n.º 1
0
 public void Add(UIType type, UI ui)
 {
     this.uis.Add(type, ui);
 }
Exemplo n.º 2
0
Arquivo: UI.cs Projeto: richardgist/ET
 public void Add(UI ui)
 {
     this.children.Add(ui.Name, ui);
     ui.Parent = this;
 }
Exemplo n.º 3
0
 public void Run()
 {
     UI ui = Hotfix.Scene.GetComponent <UIComponent>().Create(UIType.Login);
 }