//--------------------------------------------------------------------------------------------------------------------------------------------------- // // 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.Controllers; using DarkWynterEngine.Globals; using DarkWynterEngine.Menus; /// /// Ending Credits Screen /// public class CreditsScreen : GameScreen { /// /// Ending Credits Screen Constructor. /// public CreditsScreen() { //Instantiate the GameMenu menu = new GameMenu("", 0, 0); SetBackground(Statics.content.Load("Content/_textures/credits")); } } }