Zeplin.ZeplinGame.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()
        {
            spriteBatch = new SpriteBatch(GraphicsDevice);
            Engine.Initialize(Content, spriteBatch, graphics, testMap);
            if (OnLoad != null) OnLoad();
        }