summaryrefslogtreecommitdiff
path: root/modules/mono/glue/Managed/Files/Interfaces/IAwaitable.cs
diff options
context:
space:
mode:
Diffstat (limited to 'modules/mono/glue/Managed/Files/Interfaces/IAwaitable.cs')
-rw-r--r--modules/mono/glue/Managed/Files/Interfaces/IAwaitable.cs12
1 files changed, 0 insertions, 12 deletions
diff --git a/modules/mono/glue/Managed/Files/Interfaces/IAwaitable.cs b/modules/mono/glue/Managed/Files/Interfaces/IAwaitable.cs
deleted file mode 100644
index 0397957d00..0000000000
--- a/modules/mono/glue/Managed/Files/Interfaces/IAwaitable.cs
+++ /dev/null
@@ -1,12 +0,0 @@
-namespace Godot
-{
- public interface IAwaitable
- {
- IAwaiter GetAwaiter();
- }
-
- public interface IAwaitable<out TResult>
- {
- IAwaiter<TResult> GetAwaiter();
- }
-}