summaryrefslogtreecommitdiff
path: root/modules/mono/glue/cs_files/IAwaiter.cs
diff options
context:
space:
mode:
Diffstat (limited to 'modules/mono/glue/cs_files/IAwaiter.cs')
-rw-r--r--modules/mono/glue/cs_files/IAwaiter.cs19
1 files changed, 0 insertions, 19 deletions
diff --git a/modules/mono/glue/cs_files/IAwaiter.cs b/modules/mono/glue/cs_files/IAwaiter.cs
deleted file mode 100644
index 73c71b5634..0000000000
--- a/modules/mono/glue/cs_files/IAwaiter.cs
+++ /dev/null
@@ -1,19 +0,0 @@
-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();
- }
-}