Interface IAwaitable<TResult>
- Namespace
- Godot
- Assembly
- GodotSharp.dll
A templated interface that requires a GetAwaiter() method to get a reference to the Awaiter.
public interface IAwaitable<out TResult>
Type Parameters
TResult
A reference to the result to be passed out.
Methods
GetAwaiter()
IAwaiter<out TResult> GetAwaiter()
Returns
- IAwaiter<TResult>