MoodSwingGUI.MSButton.Draw C# (CSharp) Méthode

Draw() public méthode

public Draw ( GameTime gameTime ) : void
gameTime Microsoft.Xna.Framework.GameTime
Résultat void
        public override void Draw(GameTime gameTime)
        {
            base.Draw(gameTime);
            spriteBatch.Draw(collisionTexture, BoundingRectangle, highlight);
            if (label != null)
                label.Draw(gameTime);
        }