phaser4-rex-plugins
Version:
20 lines (17 loc) • 404 B
JavaScript
import { BreakDecorator as Base } from '../../../behaviortree/index.js';
class ContinueDecorator extends Base {
constructor(
config,
nodePool
) {
if (config === undefined) {
config = {};
}
config.tag = 'continue';
super(
config,
nodePool
);
}
}
export default ContinueDecorator;