UIComponent.cs 263 B

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