12 lines
278 B
C#
12 lines
278 B
C#
using BriarQueen.Framework.Events.UI;
|
|
using Cysharp.Threading.Tasks;
|
|
using UnityEngine;
|
|
|
|
namespace BriarQueen.Framework.Managers.UI.Base
|
|
{
|
|
public interface IScreenFader
|
|
{
|
|
UniTask FadeFromAsync(float duration);
|
|
UniTask FadeToAsync(float duration);
|
|
}
|
|
} |