using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.UIElements;
public abstract class ModuleUIPanel : MonoBehaviour {
/// 绑定的页面
public ModuleUIPage ModuleUIPage;
/// 必须初始化
public abstract void Awake();
/// 核心模块
protected virtual ModuleCore ModuleCore => ModuleCore.I;
public abstract VisualElement Element { get; }
}