diff options
Diffstat (limited to 'src_js/opcut/states.js')
| -rw-r--r-- | src_js/opcut/states.js | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/src_js/opcut/states.js b/src_js/opcut/states.js new file mode 100644 index 0000000..12c3f8a --- /dev/null +++ b/src_js/opcut/states.js @@ -0,0 +1,26 @@ +import * as grid from 'opcut/grid'; + + +export const main = { + form: { + method: 'FORWARD_GREEDY', + cut_width: '1', + panels: grid.state, + items: grid.state + } +}; + + +export const panelsItem = { + name: 'Panel', + width: '100', + height: '100' +}; + + +export const itemsItem = { + name: 'Item', + width: '10', + height: '10', + can_rotate: true +}; |
