SunsetHigh.InGameMenu.draw C# (CSharp) Method

draw() public static method

public static draw ( SpriteBatch sb ) : void
sb Microsoft.Xna.Framework.Graphics.SpriteBatch
return void
        public static void draw(SpriteBatch sb)
        {
            nullCheck();
            foreach (Sprite sprite in components)
            {
                sprite.draw(sb);
            }
        }