using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.UIElements;
///
/// UI控件
///
public abstract class ModuleUIControl {
/// 绑定的元素
public readonly VisualElement element;
/// 基础实例
public ModuleUIControl(VisualElement element) => this.element = element;
}