Files
MonoGame.Extended/Source/Demos/Platformer/Program.cs
T
2018-05-25 21:53:33 +10:00

15 lines
228 B
C#

using System;
namespace Platformer
{
public static class Program
{
[STAThread]
static void Main()
{
using (var game = new GameMain())
game.Run();
}
}
}