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
2013-08-25 13:22:59 -04:00

20 lines
341 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";
config.Resizeable = true;
var app = new SDLApplication();
app.Run(new GameApp(), config);
app.Dispose();
}
}
}