You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

17 lines
361 B

function Variable(name, value){
this.name = name;
this.value = value;
this.slider = new Slider(this);
this.getName = function(){return this.name;}
this.setName = function(name){this.name = name;}
this.getValue = function(){return this.value;}
this.setValue = function(value_obj, bool){
}
}
function Slider(variable){
this.variable = variable;
}