summaryrefslogtreecommitdiff
path: root/modules/mono/glue/Managed/Files/Interfaces
diff options
context:
space:
mode:
Diffstat (limited to 'modules/mono/glue/Managed/Files/Interfaces')
-rw-r--r--modules/mono/glue/Managed/Files/Interfaces/IAwaitable.cs12
-rw-r--r--modules/mono/glue/Managed/Files/Interfaces/IAwaiter.cs18
-rw-r--r--modules/mono/glue/Managed/Files/Interfaces/ISerializationListener.cs8
3 files changed, 0 insertions, 38 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();
- }
-}
diff --git a/modules/mono/glue/Managed/Files/Interfaces/IAwaiter.cs b/modules/mono/glue/Managed/Files/Interfaces/IAwaiter.cs
deleted file mode 100644
index d3be9d781c..0000000000
--- a/modules/mono/glue/Managed/Files/Interfaces/IAwaiter.cs
+++ /dev/null
@@ -1,18 +0,0 @@
-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();
- }
-}
diff --git a/modules/mono/glue/Managed/Files/Interfaces/ISerializationListener.cs b/modules/mono/glue/Managed/Files/Interfaces/ISerializationListener.cs
deleted file mode 100644
index c3fa2f3e82..0000000000
--- a/modules/mono/glue/Managed/Files/Interfaces/ISerializationListener.cs
+++ /dev/null
@@ -1,8 +0,0 @@
-namespace Godot
-{
- public interface ISerializationListener
- {
- void OnBeforeSerialize();
- void OnAfterDeserialize();
- }
-}