Ejemplo n.º 1
0
        /// <summary>
        /// LoadContentContent loads everything else that isnt the title screen
        /// </summary>
        private void LoadContentContent()
        {
            // TODO: use this.Content to load your game content here
            map.LoadContent(this.Content);
            player.LoadContent(this.Content, font);
            gui = new GUI(font, player.InvList, proj);
            gui.LoadContent(this.Content);

            scripthandler = new ScriptHandler(map, player, items, this);
        }