#region Using Statements using Microsoft.Xna.Framework; using Microsoft.Xna.Framework.Graphics; using RockRainIphone.Core; using Microsoft.Xna.Framework.Input; #endregion namespace RockRainIphone { /// /// This is a game component thats represents the Instrucions Scene /// public class HelpScene : GameScene { public HelpScene(Game game, Texture2D textureBack) : base(game) { Components.Add(new ImageComponent(game, textureBack, ImageComponent.DrawMode.Stretch)); } } }