Files
MuHua-UIElements/Packages/UITool/Runtime/ModuleTools/UIControl.cs
T
MuHua-123 9a20ee8ac5 1
2025-08-29 14:08:02 +08:00

16 lines
317 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace MuHua {
/// <summary>
/// UI控制接口
/// </summary>
public interface UIControl {
/// <summary> 更新UI状态 </summary>
public void Update();
/// <summary> 解除UI绑定 </summary>
public void Dispose();
}
}