phaser4-rex-plugins
Version:
19 lines (14 loc) • 436 B
JavaScript
import RandomPlace from './randomplace.js';
class RandomPlacePlugin extends Phaser.Plugins.BasePlugin {
constructor(pluginManager) {
super(pluginManager);
}
start() {
var eventEmitter = this.game.events;
eventEmitter.on('destroy', this.destroy, this);
}
randomPlace(items, options) {
return RandomPlace(items, options);
}
}
export default RandomPlacePlugin;