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-17 15:15:24 -04:00

19 lines
315 B
C#

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