ronin/archives/scripts/units/filepath.js
2017-09-25 15:42:10 +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;
}
}