UNPKG

phaser4-rex-plugins

Version:
18 lines (14 loc) 442 B
import DropDown from './behaviors/dropdown/DropDown.js'; class DropDownPlugin extends Phaser.Plugins.BasePlugin { constructor(pluginManager) { super(pluginManager); } start() { var eventEmitter = this.game.events; eventEmitter.on('destroy', this.destroy, this); } add(gameObject, config) { return new DropDown(gameObject, config); } } export default DropDownPlugin;