mirror of
https://github.com/aharabada/glitchy-engine-beef.git
synced 2026-09-05 21:01:52 +00:00
20 lines
284 B
Beef
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();
|
|
}
|
|
}
|
|
}
|