17 lines
235 B
JavaScript
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 () {
|
|
|
|
}
|
|
}
|