diff --git a/GlitchyEditor/src/EditorApp.bf b/GlitchyEditor/src/EditorApp.bf index fd66144..e2ddfc7 100644 --- a/GlitchyEditor/src/EditorApp.bf +++ b/GlitchyEditor/src/EditorApp.bf @@ -3,7 +3,7 @@ using GlitchyEngine; namespace GlitchyEditor { - class SandboxApp : Application + class EditorApp : Application { public this() { @@ -13,7 +13,7 @@ namespace GlitchyEditor [Export, LinkName("CreateApplication")] public static Application CreateApplication() { - return new SandboxApp(); + return new EditorApp(); } } }