import {Renderer} from "./renderer.js"
/**
* Renders images and paths to the webgl context of a canvas.
*
* @extends Renderer
*/
export class WebGLRenderer extends Renderer{
constructor(){
throw new Error("Hold your horses there!I haven't implemented this yet!")
}
}