forked from zxl/Frame
1
0
Fork 0
Frame/Assets/Scripts/UI/IUIManager.cs

19 lines
332 B
C#

using System.Collections.Generic;
namespace Game
{
public interface IUIManager
{
IUI CreateUI(UIType uiType, UILayer uiLayer);
IUI ShowUI(UIType uiType);
T GetUI<T>(UIType uiType) where T : UIBase;
bool HideUI(UIType uiType);
IUI CloseLast();
void CloseAll();
}
}