mirror of
https://github.com/scratchfoundation/scratch-vm.git
synced 2025-01-13 10:41:32 -05:00
14 lines
372 B
JavaScript
14 lines
372 B
JavaScript
const {Record} = require('immutable');
|
|
|
|
const MonitorRecord = Record({
|
|
id: null,
|
|
/** Present only if the monitor is sprite-specific, such as x position */
|
|
spriteName: null,
|
|
/** Present only if the monitor is sprite-specific, such as x position */
|
|
targetId: null,
|
|
opcode: null,
|
|
value: null,
|
|
params: null
|
|
});
|
|
|
|
module.exports = MonitorRecord;
|