12 lines
147 B
JavaScript
12 lines
147 B
JavaScript
function Any(str)
|
|
{
|
|
Unit.call(this);
|
|
|
|
this.example = "";
|
|
this.string = str;
|
|
|
|
this.render = function()
|
|
{
|
|
return this.string;
|
|
}
|
|
} |