Spaces:
Build error
Build error
File size: 405 Bytes
670a607 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
import { WaitEvent, WaitComplete, Delay } from './eventpromise.js'
class EventPromisePlugin extends Phaser.Plugins.BasePlugin {
constructor(pluginManager) {
super(pluginManager);
}
}
var methods = {
waitEvent: WaitEvent,
waitComplete: WaitComplete,
delay: Delay,
}
// mixin
Object.assign(
EventPromisePlugin.prototype,
methods
);
export default EventPromisePlugin; |