mirror of
https://github.com/scratchfoundation/scratch-vm.git
synced 2024-12-23 14:32:59 -05:00
add missing file
This commit is contained in:
parent
809760b954
commit
55f677702a
1 changed files with 10 additions and 0 deletions
10
src/engine/monitor-record.js
Normal file
10
src/engine/monitor-record.js
Normal file
|
@ -0,0 +1,10 @@
|
|||
const {Record} = require('immutable');
|
||||
|
||||
const MonitorRecord = Record({
|
||||
id: null,
|
||||
opcode: null,
|
||||
value: null,
|
||||
params: null
|
||||
});
|
||||
|
||||
module.exports = MonitorRecord;
|
Loading…
Reference in a new issue