godot/modules/mono/glue/cs_files/IAwaiter.cs
Ignacio Etcheverry e36fb95c50 Added mono module
2017-10-03 00:01:26 +02:00

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();
}
}