com.alicizax.unity.framework/Runtime/UI/Other/IUITransitionPlayer.cs

17 lines
354 B
C#
Raw Permalink Normal View History

2026-03-17 17:15:31 +08:00
using System.Threading;
using Cysharp.Threading.Tasks;
namespace AlicizaX.UI.Runtime
{
public interface IUITransitionPlayer
{
int Priority { get; }
2026-03-17 17:15:31 +08:00
UniTask PlayOpenAsync(CancellationToken cancellationToken = default);
UniTask PlayCloseAsync(CancellationToken cancellationToken = default);
void Stop();
}
}