Created basic entry point and application

This commit is contained in:
Simon Lübeß
2020-11-01 15:41:12 +01:00
parent 1adb665422
commit bf796a2a25
7 changed files with 46 additions and 32 deletions
-16
View File
@@ -1,16 +0,0 @@
using System;
namespace Sandbox
{
class Program
{
public static int Main(String[] args)
{
GlitchyEngine.Test.Print();
Console.Read();
return 0;
}
}
}
+14
View File
@@ -0,0 +1,14 @@
using System;
using GlitchyEngine;
namespace Sandbox
{
class SandboxApp : Application
{
[Export, LinkName("CreateApplication")]
public static Application CreateApplication()
{
return new SandboxApp();
}
}
}