using System; namespace Nuclex.Fonts.Demo { static class Program { /// /// The main entry point for the application. /// static void Main(string[] args) { using(FontDemoGame game = new FontDemoGame()) { game.Run(); } } } }