mirror of
https://github.com/Cardidi/ca2d-unity-toolkit.git
synced 2025-12-20 01:06:03 +08:00
14 lines
280 B
C#
14 lines
280 B
C#
using System;
|
|
using Cysharp.Threading.Tasks;
|
|
|
|
namespace Ca2d.Toolkit.Bootable
|
|
{
|
|
public interface IBootExecutor
|
|
{
|
|
public bool FatalAsExit { get; }
|
|
|
|
public BootState RegisteredStage { get; }
|
|
|
|
public Func<UniTask<bool>> Runner { get; }
|
|
}
|
|
} |