Paint.PaintApp.Draw C# (CSharp) Méthode

Draw() protected méthode

Called everytime we need to redraw the screen
protected Draw ( GameTime gameTime ) : void
gameTime Microsoft.Xna.Framework.GameTime /// Allows you to monitor time passed since last draw ///
Résultat void
        protected override void Draw(GameTime gameTime)
        {
            this.pictureStateManager.Draw(this.CanvasTouchPoints);

            base.Draw(gameTime);
        }