15 lines
195 B
C#
15 lines
195 B
C#
|
namespace Script.UI
|
|||
|
{
|
|||
|
public interface IPanel
|
|||
|
{
|
|||
|
PanelType panelType { get; }
|
|||
|
|
|||
|
void Init();
|
|||
|
|
|||
|
void Open();
|
|||
|
|
|||
|
void Close();
|
|||
|
|
|||
|
void Dispose();
|
|||
|
}
|
|||
|
}
|