Files
MonoGame.Extended/Source/Demos/Demo.BitmapFonts/Program.cs
T

16 lines
266 B
C#

using System;
namespace Demo.BitmapFonts
{
public static class Program
{
[STAThread]
private static void Main()
{
using (var game = new Game2())
{
game.Run();
}
}
}
}