UNPKG

behaviortree

Version:

A JavaScript implementation of Behavior Trees. They are useful for implementing AIs. For Browsers and NodeJS.

10 lines 374 B
import Decorator from '../Decorator'; import { RunCallback } from '../types'; export default class LoopDecorator extends Decorator { nodeType: string; setConfig({ loop }: { loop?: number | undefined; }): void; decorate(run: RunCallback): boolean | symbol | import("../types").StatusWithState | undefined; } //# sourceMappingURL=LoopDecorator.d.ts.map