Gonzo.Elements.UISkinBrowser.Draw C# (CSharp) Method

Draw() public method

public Draw ( SpriteBatch SBatch, float LayerDepth ) : void
SBatch Microsoft.Xna.Framework.Graphics.SpriteBatch
LayerDepth float
return void
        public override void Draw(SpriteBatch SBatch, float? LayerDepth)
        {
            m_SkinBrowserArrowLeft.Draw(SBatch, m_Depth);
            m_SkinBrowserArrowRight.Draw(SBatch, m_Depth);

            base.Draw(SBatch, LayerDepth);
        }