using System.Collections.Generic; namespace ET { /// /// 管理Scene上的UI /// [ComponentOf(typeof(Scene))] [ChildType(typeof(UI))] public class UIComponent: Entity, IAwake { public Dictionary UIs = new Dictionary(); } }