UIComponent.cs 251 B

12345678910111213
  1. using System.Collections.Generic;
  2. namespace ET
  3. {
  4. /// <summary>
  5. /// 管理Scene上的UI
  6. /// </summary>
  7. [ChildType(typeof(UI))]
  8. public class UIComponent: Entity, IAwake
  9. {
  10. public Dictionary<string, UI> UIs = new Dictionary<string, UI>();
  11. }
  12. }