Files
Abdullah Almsaeed b50004f17c Fix #1616
2018-07-15 11:11:21 -04:00

7 lines
133 B
JavaScript

jvm.SimpleScale = function(scale){
this.scale = scale;
};
jvm.SimpleScale.prototype.getValue = function(value){
return value;
};