UNPKG

@petkoneo/phaser3-rex-plugins

Version:
17 lines (13 loc) 310 B
import Base from '../base/Base.js'; import UpdateShapeMethods from './UpdateShapeMethods.js'; class Box extends Base { constructor(scene, config) { super(scene, config); this.type = 'rexSpinnerBox'; } } Object.assign( Box.prototype, UpdateShapeMethods, ) export default Box;