From d051b392d0c67d8c75481f780bf1839a9d83d9fd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Simon=20L=C3=BCbe=C3=9F?= Date: Thu, 16 Sep 2021 18:16:40 +0200 Subject: [PATCH] Fixed class name in EditorApp --- GlitchyEditor/src/EditorApp.bf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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(); } } }