Devine Lu Linvega 7f01d369ed Cleanup
2019-07-13 11:08:59 +09:00

17 lines
235 B
JavaScript

function Surface () {
this.el = document.createElement('canvas')
this.el.id = 'surface'
this.install = function (host) {
host.appendChild(this.el)
}
this.start = function () {
}
this.update = function () {
}
}