mirror of
https://github.com/scratchfoundation/scratch-vm.git
synced 2024-12-24 15:02:52 -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