This repository has been archived on 2023-07-11. You can view files and clone it, but cannot push or open issues or pull requests.
Blarg.GameFramework/Game.SDL2/Program.cs

19 lines
312 B
C#

using System;
using Blarg.GameFramework;
namespace Game.SDL2
{
public static class MainClass
{
public static void Main(string[] args)
{
var config = new SDLConfiguration();
config.Title = "Test Game";
var app = new SDLApplication();
app.Run(new GameApp(), config);
app.Dispose();
}
}
}