summaryrefslogtreecommitdiff
path: root/modules/mono/glue/cs_files/IAwaitable.cs
blob: 0397957d00a130dd87dcbb6a6454e548d745f3ce (plain)
1
2
3
4
5
6
7
8
9
10
11
12
namespace Godot
{
    public interface IAwaitable
    {
        IAwaiter GetAwaiter();
    }

    public interface IAwaitable<out TResult>
    {
        IAwaiter<TResult> GetAwaiter();
    }
}