mirror of
https://github.com/scratchfoundation/scratch-vm.git
synced 2025-03-14 01:09:51 -04:00
add record file
This commit is contained in:
parent
5df3d4ab68
commit
2867b5c331
1 changed files with 12 additions and 0 deletions
12
src/engine/records.js
Normal file
12
src/engine/records.js
Normal file
|
@ -0,0 +1,12 @@
|
|||
const {Record} = require('immutable');
|
||||
|
||||
const MonitorRecord = Record({
|
||||
id: null,
|
||||
category: 'data',
|
||||
label: null,
|
||||
value: null,
|
||||
x: null,
|
||||
y: null
|
||||
});
|
||||
|
||||
module.exports = MonitorRecord;
|
Loading…
Reference in a new issue