You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-06 12:20:30 +00:00
20 lines
295 B
C#
20 lines
295 B
C#
using System;
|
|
using System.Runtime.CompilerServices;
|
|
|
|
namespace Godot
|
|
{
|
|
public interface IAwaiter : INotifyCompletion
|
|
{
|
|
bool IsCompleted { get; }
|
|
|
|
void GetResult();
|
|
}
|
|
|
|
public interface IAwaiter<out TResult> : INotifyCompletion
|
|
{
|
|
bool IsCompleted { get; }
|
|
|
|
TResult GetResult();
|
|
}
|
|
}
|