Devine Lu Linvega a2fed4c21e Added icons
2017-01-12 15:37:22 -07:00

14 lines
235 B
JavaScript

function Value(value_str)
{
Unit.call(this);
this.example = "20";
this.value = value_str;
this.float = parseFloat(this.value);
this.int = parseInt(this.value);
this.render = function()
{
return this.value;
}
}