public override void Draw(SpriteBatch spriteBatch)
        {
            base.Draw(spriteBatch);

            if (Alive)
            {
                laserGun.Draw(spriteBatch);
            }
        }
Exemple #2
0
 public override void Draw(SpriteBatch spriteBatch)
 {
     base.Draw(spriteBatch);
     laserGun.Draw(spriteBatch);
 }