AIsOfCatan.GUIBufferTextBlock.Draw C# (CSharp) Method

Draw() protected method

protected Draw ( SpriteBatch batch ) : void
batch Microsoft.Xna.Framework.Graphics.SpriteBatch
return void
        protected override void Draw(SpriteBatch batch)
        {
            if (Visible)
            {
                batch.DrawString(TXAGame.ARIAL, Text, textPos, Color.Black, Rotation, Origin, TXAGame.SCALE, SpriteEffects.None, 0f);
            }
        }