11 lines
213 B
C#
11 lines
213 B
C#
namespace AibisDream.UI
|
|
{
|
|
public interface IUIPanel
|
|
{
|
|
void Initialize() { }
|
|
void Show() { }
|
|
void Hide() { }
|
|
bool IsOpen { get; }
|
|
bool IsCloseable { get; }
|
|
}
|
|
} |