mirror of
https://github.com/scratchfoundation/scratch-vm.git
synced 2024-12-27 00:12:57 -05:00
20 lines
474 B
JavaScript
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;
|