Fixed class name in EditorApp

This commit is contained in:
Simon Lübeß
2021-09-16 18:16:40 +02:00
parent e2fc373a06
commit d051b392d0
+2 -2
View File
@@ -3,7 +3,7 @@ using GlitchyEngine;
namespace GlitchyEditor namespace GlitchyEditor
{ {
class SandboxApp : Application class EditorApp : Application
{ {
public this() public this()
{ {
@@ -13,7 +13,7 @@ namespace GlitchyEditor
[Export, LinkName("CreateApplication")] [Export, LinkName("CreateApplication")]
public static Application CreateApplication() public static Application CreateApplication()
{ {
return new SandboxApp(); return new EditorApp();
} }
} }
} }