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