FarseerPhysics.ScreenSystem.GameScreen.Draw C# (CSharp) Method

Draw() public method

This is called when the screen should draw itself.
public Draw ( GameTime gameTime ) : void
gameTime Microsoft.Xna.Framework.GameTime
return void
        public virtual void Draw(GameTime gameTime)
        {
            if (World != null)
            {
                if (DebugView != null)
                {
                    DebugView.DrawDebugData();
                }
            }
        }