using System; using System.Collections.Generic; using System.Linq; namespace Microsoft.Xna.Samples.Draw2D { static class Program { private static Game1 game; /// /// The main entry point for the application. /// [STAThread] static void Main() { game = new Game1(); game.Run(); } } }