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

16 lines
274 B
C#

using System;
namespace NuclexGui
{
internal static class Program
{
[STAThread]
private static void Main(string[] args)
{
using (var game = new Game1())
{
game.Run();
}
}
}
}