Example #1
0
        protected override void Draw(GameTime gameTime)
        {
            graphics.GraphicsDevice.Clear(Color.CornflowerBlue);

            spriteBatch.Begin();
            mapManager.draw(spriteBatch);
            spriteBatch.End();

            base.Draw(gameTime);
        }