ronin/sources/scripts/units/filepath.js
2017-09-19 10:08:37 +13: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;
}
}