diff options
Diffstat (limited to 'modules/mono/glue/Managed/Files/Dispatcher.cs')
-rw-r--r-- | modules/mono/glue/Managed/Files/Dispatcher.cs | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/modules/mono/glue/Managed/Files/Dispatcher.cs b/modules/mono/glue/Managed/Files/Dispatcher.cs deleted file mode 100644 index 072e0f20ff..0000000000 --- a/modules/mono/glue/Managed/Files/Dispatcher.cs +++ /dev/null @@ -1,13 +0,0 @@ -using System.Runtime.CompilerServices; - -namespace Godot -{ - public static class Dispatcher - { - [MethodImpl(MethodImplOptions.InternalCall)] - private static extern GodotTaskScheduler godot_icall_DefaultGodotTaskScheduler(); - - public static GodotSynchronizationContext SynchronizationContext => - godot_icall_DefaultGodotTaskScheduler().Context; - } -} |