Files
MonoGame.Extended/Source/Demos/Features.NetCore/Program.cs
T

15 lines
284 B
C#

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