UNPKG

phaser4-rex-plugins

Version:
17 lines (13 loc) 326 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;