From 79bf76ee334ab0c74dc7b7174f3a340143eedf74 Mon Sep 17 00:00:00 2001 From: William Stuckey Date: Mon, 29 Dec 2025 14:33:39 -0600 Subject: [PATCH] Csharpier cleanup --- Scripts/Core/EventManager.cs | 4 ++-- Scripts/Main.cs | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Scripts/Core/EventManager.cs b/Scripts/Core/EventManager.cs index 61b03b4..2dc1cb1 100644 --- a/Scripts/Core/EventManager.cs +++ b/Scripts/Core/EventManager.cs @@ -1,5 +1,5 @@ -using Godot; using EinSoftworks.Events; +using Godot; namespace Voider; @@ -75,4 +75,4 @@ public partial class EventManager : Node { _eventManager.Unsubscribe(eventName, callback); } -} \ No newline at end of file +} diff --git a/Scripts/Main.cs b/Scripts/Main.cs index 7d84a6a..56f2990 100644 --- a/Scripts/Main.cs +++ b/Scripts/Main.cs @@ -1,7 +1,7 @@ -using Godot; -using EinSoftworks.Utilities; -using EinSoftworks.Input; using EinSoftworks.Events; +using EinSoftworks.Input; +using EinSoftworks.Utilities; +using Godot; namespace Voider;