ronin/scripts/units/filepath.js
2017-05-24 20:16:13 -10:00

12 lines
175 B
JavaScript

function Filepath(path_str)
{
Unit.call(this);
this.example = "assets/demo.png";
this.path = path_str;
this.toString = function()
{
return this.path;
}
}