public DefaultDrawVisitor(IDrawingAdapter drawingAdapter)
 {
     this.drawingAdapter = drawingAdapter;
 }
 protected override void LoadContent()
 {
     spriteBatch    = new SpriteBatch(GraphicsDevice);
     drawingAdapter = new MonoGameDrawer("white_pixel", "arial", spriteBatch, Content);
 }