Ejemplo n.º 1
0
 public DrawingBatch(RenderTarget2D renderTarget)
 {
     GraphicsDevice = renderTarget.GraphicsDevice;
     this.render = new DrawingRender(renderTarget);
 }
Ejemplo n.º 2
0
 public DrawingBatch(RenderTarget2D renderTarget, Texture2D background)
 {
     GraphicsDevice = renderTarget.GraphicsDevice;
     this.render = new DrawingRender(renderTarget, background);
 }
Ejemplo n.º 3
0
 public DrawingBatch(GraphicsDevice graphicsDevice)
 {
     GraphicsDevice = graphicsDevice;
     this.render = new DrawingRender(graphicsDevice);
 }