Files
aibis-dream/Assets/Scripts/UI/UIPanel.cs
T
dingyuntian 9f20ef52d8 UI工具翻新
1. 增加UI工具
2. 增加设置页面
3. GameLoop更新
4. 导入ActionKit工具
2025-04-21 18:53:30 +08:00

11 lines
203 B
C#

using UnityEngine;
namespace AibisDream
{
public interface IUIPanel
{
public virtual void Show() { }
public virtual void Hide() { }
public bool IsOpen { get; }
}
}