//---------------------------------------------------------------------------------------------------------------------------------------------------
//
// 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 System.Diagnostics;
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;
using System.Threading;
using System.Xml;
#endregion
using DarkWynterEngine.Globals;
using DarkWynterEngine.ObjectLib;
using DarkWynterEngine.Controllers;
using DarkWynterEngine.Utilities;
using DarkWynterEngine.Menus;
///
/// Screen shown at the end of the game.
///
public class EndGameScreen : GameScreen
{
///
/// Constructor for End Game Screen.
///
public EndGameScreen(){}
}
}