biography-of-lijie/Assets/GameMain/Scripts/UI/IFormController.cs

8 lines
144 B
C#

namespace UI
{
public interface IFormController<T> where T : UIContext
{
int? OpenUI(T context);
void CloseUI();
}
}