ronin/scripts/units/mode.js
2017-05-24 09:55:12 -10:00

13 lines
164 B
JavaScript

function Mode(name,key = "")
{
Unit.call(this);
this.host = null;
this.name = name;
this.key = key;
this.render = function()
{
return "?";
}
}