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