Spaces:
Build error
Build error
| import Grid from './Grid.js'; | |
| import ObjectFactory from '../ObjectFactory.js'; | |
| import SetValue from '../../../plugins/utils/object/SetValue.js'; | |
| ObjectFactory.register('grid', function (config) { | |
| var gameObject = new Grid(this.scene, config); | |
| this.scene.add.existing(gameObject); | |
| return gameObject; | |
| }); | |
| SetValue(window, 'RexPlugins.Spinner.Grid', Grid); | |
| export default Grid; |