ronin/scripts/units/filepath.js
2016-11-16 15:51:30 -08:00

11 lines
137 B
JavaScript

function Filepath(path_str)
{
Unit.call(this);
this.path = path_str;
this.render = function()
{
return this.path;
}
}