using System; using System.Collections.Generic; using UnityEngine; namespace ET { public class UIViewComponentAwakeSystem : AwakeSystem { public override void Awake(UIViewComponent self) { } } /// /// 管理所有UI /// public class UIViewComponent: Entity { } }