This is the main type for your game
Inheritance: Microsoft.Xna.Framework.Game
Example #1
0
        static void Main()
        {
            ServiceManager.Instance.AddService<IClipboardService>(new ClipboardService());

            using (var game = new Game1())
                game.Run();
        }
Example #2
0
 static void Main()
 {
     using (var game = new Game1())
         game.Run();
 }