12 lines
244 B
C#
12 lines
244 B
C#
using UnityEngine;
|
|
|
|
namespace AibisDream
|
|
{
|
|
public interface IUIPanel
|
|
{
|
|
public virtual void Show() { }
|
|
public virtual void Hide() { }
|
|
public bool IsOpen { get; }
|
|
public bool IsCloseable { get; }
|
|
}
|
|
} |