Files
glitchy-engine-beef/Sandbox/src/SandboxApp.bf
T
2020-11-05 22:20:09 +01:00

19 lines
267 B
Beef

using System;
using GlitchyEngine;
using System.Diagnostics;
using GlitchLog;
namespace Sandbox
{
class SandboxApp : Application
{
[Export, LinkName("CreateApplication")]
public static Application CreateApplication()
{
return new SandboxApp();
}
}
}