HelpScene.cs 536 B

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