using System.Collections.Generic; using TMPro; using UnityEngine; namespace HK { public interface IUIManager { IUI ShowUI(string uiName, string assetPath); T GetUI(string uiName) where T : UIBase; bool HideUI(UIBase uiBase); IUI CloseLast(); void CloseAll(); } }