ronin/scripts/units/unit.js
2017-03-22 15:05:55 -07:00

10 lines
146 B
JavaScript

function Unit()
{
this.example = "unknown";
this.name = this.constructor.name;
this.render = function()
{
return "[MISSING]";
}
}