//---------------------------------------------------------------------------------------------------------------------------------------------------
//
// Copyright (C)2007 DarkWynter Studios. All rights reserved.
//
//---------------------------------------------------------------------------------------------------------------------------------------------------
// {Contact : darkwynter.com for licensing information
//---------------------------------------------------------------------------------------------------------------------------------------------------
namespace ElementalGame.GraphicUserInterface
{
#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
using DarkWynterEngine.Globals;
using DarkWynterEngine.Controllers;
using DarkWynterEngine.Menus;
///
/// Used to display game controls to user.
///
public class ControlsScreen : GameScreen
{
///
/// Controls Screen constructor.
///
public ControlsScreen()
{
//Instantiate the GameMenu
menu = new GameMenu("", 0, 0);
}
}
}