using System.Collections; using System.Collections.Generic; using UnityEngine; using UnityEngine.UIElements; namespace MuHua { /// /// UI控件 /// public class ModuleUIPanel { /// 绑定的元素 public readonly VisualElement element; /// UI控件 public ModuleUIPanel(VisualElement element) => this.element = element; } }