
Untitled
By: a guest on
Jun 14th, 2012 | syntax:
JavaScript | size: 0.33 KB | hits: 31 | expires: Never
function properties(ikey, label, max, min, regen_amount, regen_time, type, value) {
this.ikey = ikey;
this.label = label;
this.max = max;
this.min = min;
this.regen_amount = regen_amount;
this.regen_time = regen_time;
this.type = type;
this.value = value;
}
properties.printLabel() {
console.log(properties.label);
}