//--------------------------------------------------------------------------------------------------------------------------------------------------- // <copyright file="ControlsScreen.cs" company="DarkWynter Studios"> // Copyright (C)2007 DarkWynter Studios. All rights reserved. // </copyright> //--------------------------------------------------------------------------------------------------------------------------------------------------- // {License Information: Creative Commons} //--------------------------------------------------------------------------------------------------------------------------------------------------- namespace ElementalGame { #region Using Statements using System; using System.Collections.Generic; using Microsoft.Xna.Framework; using Microsoft.Xna.Framework.Audio; using Microsoft.Xna.Framework.Content; using Microsoft.Xna.Framework.Graphics; using Microsoft.Xna.Framework.Input; using Microsoft.Xna.Framework.Storage; #endregion // Our Credits Screen public class CreditsScreen : GameScreen { // Constructor: public CreditsScreen() { //Instantiate the GameMenu menu = new GameMenu("", 0, 0); } } }