using System; using System.Collections.Generic; using UnityEngine; namespace ET { /// /// 管理所有UI GameObject /// [ComponentOf(typeof(Scene))] public class UIEventComponent: Entity, IAwake { public static UIEventComponent Instance; public Dictionary UIEvents = new Dictionary(); public Dictionary UILayers { get; set;}= new Dictionary(); } }