UNPKG

@petkoneo/phaser3-rex-plugins

Version:
25 lines (19 loc) 365 B
import Action from '../Action.js'; import { ERROR } from '../../constants.js'; class Error extends Action { constructor({ services, title, name = 'Error', } = {}) { super({ services, title, name, }); } tick(tick) { return ERROR; } }; export default Error;