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

21 lines
381 B
C#

using System;
namespace Gui
{
/// <summary>
/// The main class.
/// </summary>
public static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
using (var game = new MainGame())
game.Run();
}
}
}