mirror of
https://github.com/scratchfoundation/scratch-vm.git
synced 2024-12-29 09:22:35 -05:00
17 lines
310 B
JavaScript
17 lines
310 B
JavaScript
|
/**
|
||
|
* @fileoverview
|
||
|
* Object representing a Scratch list.
|
||
|
*/
|
||
|
|
||
|
/**
|
||
|
* @param {!string} name Name of the list.
|
||
|
* @param {Array} contents Contents of the list, as an array.
|
||
|
* @constructor
|
||
|
*/
|
||
|
function List (name, contents) {
|
||
|
this.name = name;
|
||
|
this.contents = contents;
|
||
|
}
|
||
|
|
||
|
module.exports = List;
|