namespace Script.UI { public interface IPanel { PanelType panelType { get; } void Init(); void Open(); void Close(); void Dispose(); } }