scratch-vm/src/engine/variable.js
2017-04-17 19:42:48 -04:00

20 lines
474 B
JavaScript

/**
* @fileoverview
* Object representing a Scratch variable.
*/
class Variable {
/**
* @param {!string} name Name of the variable.
* @param {(string|number)} value Value of the variable.
* @param {boolean} isCloud Whether the variable is stored in the cloud.
* @constructor
*/
constructor (name, value, isCloud) {
this.name = name;
this.value = value;
this.isCloud = isCloud;
}
}
module.exports = Variable;