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