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