Files
glitchy-engine-beef/GlitchyEditor/src/EditorApp.bf
T

20 lines
284 B
Beef

using System;
using GlitchyEngine;
namespace GlitchyEditor
{
class EditorApp : Application
{
public this()
{
PushLayer(new EditorLayer());
}
[Export, LinkName("CreateApplication")]
public static Application CreateApplication()
{
return new EditorApp();
}
}
}