Devine Lu Linvega a2fed4c21e Added icons
2017-01-12 15:37:22 -07:00

12 lines
147 B
JavaScript

function Any(str)
{
Unit.call(this);
this.example = "";
this.string = str;
this.render = function()
{
return this.string;
}
}