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