Blink.GUI.StateSimpleMenu.Draw C# (CSharp) Method

Draw() public method

public Draw ( SpriteBatch sb ) : void
sb Microsoft.Xna.Framework.Graphics.SpriteBatch
return void
        public void Draw(SpriteBatch sb)
        {
            title.Draw(sb);
            foreach (TextButton b in buttons)
                b.Draw(sb);
        }