ronin/scripts/units/filepath.js
2017-01-19 09:27:16 -07:00

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;
}
}