Ballz.Ballz.LoadContent C# (CSharp) Method

LoadContent() protected method

LoadContent will be called once per game and is the place to load all of your content.
protected LoadContent ( ) : void
return void
        protected override void LoadContent()
        {
            Content.RootDirectory = "Content";

            Logo = Content.Load<Texture2D>("Textures/Logo");
            MainMenu = DefaultMenu();
            MenuRenderer.Menu = MainMenu;
            Logic.SetMainMenu(MainMenu);
        }