Files
MonoGame.Extended/Source/Demos/Demo.Features.Windows/Program.cs
T
2017-04-04 21:35:15 +10:00

15 lines
289 B
C#

using System;
namespace Demo.Features.Windows
{
public static class Program
{
[STAThread]
public static void Main()
{
using (var game = new GameMain(new PlatformConfig { IsFullScreen = false }))
game.Run();
}
}
}