blueshell
Version:
A Behavior Tree implementation in modern Javascript
11 lines • 314 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.isParentNode = isParentNode;
/**
* Checks if the passed in object exposes a list of children.
* @param node Node to check
*/
function isParentNode(node) {
return !!node.getChildren;
}
//# sourceMappingURL=ParentNode.js.map