- Timestamp:
- 2011-06-17 18:01:14 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
2011/23/sijoseha/Fera Proelia/Fera Proelia/Fera Proelia/HUD.cs
r2118 r2119 8 8 public class HUD : DrawableGameComponent 9 9 { 10 public HUD(Game game) 10 private Texture2D backgroundTexture; 11 12 public HUD(Game game, Texture2D bgTex) 11 13 : base(game) 12 14 { 15 backgroundTexture = bgTex; 16 } 13 17 18 public override void Draw(GameTime gameTime) 19 { 20 //SpriteBatch sb = 21 base.Draw(gameTime); 14 22 } 15 23 }
Note: See TracChangeset
for help on using the changeset viewer.