Files
aibis-dream/Assets/Scripts/UI/UIPanel.cs
T
2026-07-03 23:30:38 +08:00

11 lines
213 B
C#

namespace AibisDream.UI
{
public interface IUIPanel
{
void Initialize() { }
void Show() { }
void Hide() { }
bool IsOpen { get; }
bool IsCloseable { get; }
}
}