Ejemplo n.º 1
0
 public void DrawHUD(SpriteBatch spriteBatch, Camera cam, bool drawHealth = true)
 {
     CharacterHUD.Draw(spriteBatch, this, cam);
     if (drawHealth)
     {
         CharacterHealth.DrawHUD(spriteBatch);
     }
 }
Ejemplo n.º 2
0
 public void DrawHUD(SpriteBatch spriteBatch, Camera cam)
 {
     CharacterHUD.Draw(spriteBatch, this, cam);
 }