10 lines
146 B
JavaScript
10 lines
146 B
JavaScript
function Unit()
|
|
{
|
|
this.example = "unknown";
|
|
this.name = this.constructor.name;
|
|
|
|
this.render = function()
|
|
{
|
|
return "[MISSING]";
|
|
}
|
|
} |