ronin/sources/scripts/guide.js
2017-09-27 10:19:06 +13:00

14 lines
238 B
JavaScript

function Guide()
{
this.el = document.createElement('canvas'); this.el.id = "guide";
this.install = function()
{
ronin.el.appendChild(this.el);
}
this.update = function()
{
console.log(ronin.commander.query());
}
}