mirror of
https://github.com/aharabada/glitchy-engine-beef.git
synced 2026-09-05 21:01:52 +00:00
Created basic entry point and application
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
using System;
|
||||
|
||||
namespace GlitchyEngine
|
||||
{
|
||||
class Program
|
||||
{
|
||||
[LinkName("CreateApplication")]
|
||||
static extern Application CreateApplication();
|
||||
|
||||
public static int Main(String[] args)
|
||||
{
|
||||
var app = CreateApplication();
|
||||
|
||||
app.Run();
|
||||
|
||||
delete app;
|
||||
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user