7 lines
162 B
JavaScript
7 lines
162 B
JavaScript
|
|
import r from 'restructure';
|
||
|
|
|
||
|
|
// An array of predefined values accessible by instructions
|
||
|
|
export default new r.Struct({
|
||
|
|
controlValues: new r.Array(r.int16)
|
||
|
|
});
|