Renamed classes

This commit is contained in:
Devine Lu Linvega
2019-01-09 15:51:57 +12:00
parent 1d574d43c0
commit 23c53ef37e
4 changed files with 40 additions and 40 deletions

View File

@@ -19,10 +19,10 @@ function Dotgrid (width, height, grid_x, grid_y, block_x, block_y) {
this.manager = new Manager(this)
this.renderer = new Renderer(this)
this.tool = new Tool(this)
this.interface = new this.Interface()
this.interface = new Interface(this)
this.picker = new Picker(this)
this.cursor = new Cursor(this)
this.picker = new this.Picker()
this.cursor = new this.Cursor()
host.appendChild(this.renderer.el)
this.manager.install()