Created editor project and moved Editor there

This commit is contained in:
Simon Lübeß
2021-09-16 13:19:25 +02:00
parent f6b073557a
commit 0079b80b1c
11 changed files with 279 additions and 10 deletions
+19
View File
@@ -0,0 +1,19 @@
using System;
using GlitchyEngine;
namespace GlitchyEditor
{
class SandboxApp : Application
{
public this()
{
PushLayer(new EditorLayer());
}
[Export, LinkName("CreateApplication")]
public static Application CreateApplication()
{
return new SandboxApp();
}
}
}