mirror of
https://github.com/project-redbud/FunGame-Core.git
synced 2025-04-23 04:29:36 +08:00
10 lines
197 B
C#
10 lines
197 B
C#
namespace Milimoe.FunGame.Core.Interface.Base
|
|
{
|
|
public interface ITaskAwaiter
|
|
{
|
|
public bool IsCompleted { get; }
|
|
|
|
public ITaskAwaiter OnCompleted(Action action);
|
|
}
|
|
}
|