15 lines
296 B
C#
15 lines
296 B
C#
using Cysharp.Threading.Tasks;
|
|
using UnityEngine.UI;
|
|
|
|
namespace BriarQueen.Framework.Managers.UI.Base
|
|
{
|
|
public interface IHud
|
|
{
|
|
UniTask Hide();
|
|
UniTask Show();
|
|
|
|
UniTask DisplayInteractText(string text);
|
|
|
|
GraphicRaycaster Raycaster { get; }
|
|
}
|
|
} |