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