#region File Description //----------------------------------------------------------------------------- // Game.cs // // Microsoft XNA Community Game Platform // Copyright (C) Microsoft Corporation. All rights reserved. //----------------------------------------------------------------------------- #endregion #region Using Statements using Microsoft.Xna.Framework; using Microsoft.Xna.Framework.Graphics; #endregion namespace AIDemos { public class Game1 : GameStateManagementGame { public Game1() { screenManager.AddScreen(new MainMenuScreen(), null); } static void Main(string[] args) { using (Game1 game = new Game1()) { game.Run(); } } } }