UNPKG

phaser4-rex-plugins

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