File size: 304 Bytes
670a607
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
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;