agentVerse / ui /src /phaser3-rex-plugins /plugins /interception-plugin.js
AgentVerse's picture
first commit
670a607
raw
history blame
304 Bytes
import Interception from './interception.js';
class InterceptionPlugin extends Phaser.Plugins.BasePlugin {
constructor(pluginManager) {
super(pluginManager);
}
add(gameObject, config) {
return new Interception(gameObject, config);
}
}
export default InterceptionPlugin;