2
0

helpScene.cs 606 B

123456789101112131415161718192021222324
  1. #region Using Statements
  2. using Microsoft.Xna.Framework;
  3. using Microsoft.Xna.Framework.Graphics;
  4. using RockRainIphone.Core;
  5. using Microsoft.Xna.Framework.Input;
  6. #endregion
  7. namespace RockRainIphone
  8. {
  9. /// <summary>
  10. /// This is a game component thats represents the Instrucions Scene
  11. /// </summary>
  12. public class HelpScene : GameScene
  13. {
  14. public HelpScene(Game game, Texture2D textureBack)
  15. : base(game)
  16. {
  17. Components.Add(new ImageComponent(game, textureBack,
  18. ImageComponent.DrawMode.Stretch));
  19. }
  20. }
  21. }