using System; using System.Collections; using System.Collections.Generic; using UnityEngine; using UnityEngine.UIElements; /// /// UI面板 /// public abstract class ModuleUIPanel : MonoBehaviour { /// 绑定的页面 public ModuleUIPage UIPage; /// 绑定的根元素 public abstract VisualElement Element { get; } }