phaser4-rex-plugins
Version:
17 lines (13 loc) • 330 B
JavaScript
import Base from '../base/Base.js';
import UpdateShapeMethods from './UpdateShapeMethods.js';
class Cube extends Base {
constructor(scene, config) {
super(scene, config);
this.type = 'rexSpinnerCube';
}
}
Object.assign(
Cube.prototype,
UpdateShapeMethods,
)
export default Cube;