12345678910111213 |
- using System.Collections.Generic;
- namespace ET.Client
- {
- /// <summary>
- /// 管理Scene上的UI
- /// </summary>
- [ComponentOf(typeof(Scene))]
- public class UIComponent: Entity, IAwake
- {
- public Dictionary<string, UI> UIs = new Dictionary<string, UI>();
- }
- }
|