12345678910111213141516171819202122 |
- using Microsoft.Xna.Framework;
- using Microsoft.Xna.Framework.Graphics;
- using RockRain.Core;
- using Microsoft.Xna.Framework.Input;
- namespace RockRain
- {
- /// <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));
- }
- }
- }
|