12 lines
222 B
C#
12 lines
222 B
C#
using Cysharp.Threading.Tasks;
|
|
|
|
namespace BriarQueen.Framework.Managers.UI.Base
|
|
{
|
|
public interface IUIWindow
|
|
{
|
|
UniTask Show();
|
|
UniTask Hide();
|
|
|
|
WindowType WindowType { get; }
|
|
}
|
|
} |