using System; using System.Runtime.CompilerServices; namespace Godot { public interface IAwaiter : INotifyCompletion { bool IsCompleted { get; } void GetResult(); } public interface IAwaiter : INotifyCompletion { bool IsCompleted { get; } TResult GetResult(); } }