using System;
namespace SpriteFontPlus.Samples.TextureAtlasFull
{
///
/// The main class.
///
public static class Program
{
///
/// The main entry point for the application.
///
[STAThread]
static void Main()
{
using (var game = new Game1())
game.Run();
}
}
}