MyGame.FirstAidManager.Draw C# (CSharp) Méthode

Draw() public méthode

This method renders the current state.
public Draw ( GameTime gameTime ) : void
gameTime Microsoft.Xna.Framework.GameTime The elapsed game time.
Résultat void
        public override void Draw(GameTime gameTime)
        {
            foreach (FirstAid firstAid in firstAidKits)
                firstAid.Draw(gameTime);

            base.Draw(gameTime);
        }