12 lines
173 B
JavaScript
12 lines
173 B
JavaScript
function Filepath(path_str)
|
|
{
|
|
Unit.call(this);
|
|
|
|
this.example = "assets/demo.png";
|
|
this.path = path_str;
|
|
|
|
this.render = function()
|
|
{
|
|
return this.path;
|
|
}
|
|
} |