UNPKG

phaser4-rex-plugins

Version:
20 lines (15 loc) 298 B
class BaseCmd { constructor(scenario, type) { this.scenario = scenario; this.type = type; } resetFromJSON(o) {} toJSON() { return {}; } parse(inst, index) { return inst; } run(inst) {} } export default BaseCmd;