scratch-vm/src/engine/monitor-record.js

15 lines
372 B
JavaScript
Raw Normal View History

2017-05-30 10:05:13 -04:00
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,
2017-05-30 10:05:13 -04:00
opcode: null,
value: null,
params: null
});
module.exports = MonitorRecord;