root/src/AIDemos/Game.cs

User picture

Author: conkerjo

Revision: 30 («Previous)


File Size: 820 Bytes

(June 30, 2009 23:57 UTC) Almost 3 years ago


  

 
Show/hide line numbers
#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();
            }
        }
    }


}