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