Files
MonoGame.Extended/Source/Demos/Platformer/Program.cs
T

15 lines
228 B
C#

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