UNPKG

phaser4-rex-plugins

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