spaceconquest.MenuManager.Init C# (CSharp) Method

Init() public static method

public static Init ( SpriteBatch b, SpriteFont f ) : void
b Microsoft.Xna.Framework.Graphics.SpriteBatch
f Microsoft.Xna.Framework.Graphics.SpriteFont
return void
        public static void Init(SpriteBatch b, SpriteFont f)
        {
            batch = b;
            font = f;
            screen = new TitleScreen(batch, font);
            //screen = new WinScreen(true);
        }