Castle.CastleGame.Draw C# (CSharp) Method

Draw() protected method

protected Draw ( GameTime gameTime ) : void
gameTime GameTime
return void
        protected override void Draw(GameTime gameTime)
        {
            // Clear the screen with black, like a traditional console.
            GraphicsDevice.Clear(Color.Black);

            // Draw the consoles to the screen.
            SadConsole.Engine.Draw(gameTime);

            base.Draw(gameTime);
        }