| 282 | } |
| 283 | |
| 284 | void BehaviorTreeFactory::registerBehaviorTreeFromFile( |
| 285 | const std::filesystem::path& filename) |
| 286 | { |
| 287 | _p->parser->loadFromFile(filename); |
| 288 | } |
| 289 | |
| 290 | void BehaviorTreeFactory::registerBehaviorTreeFromText(const std::string& xml_text) |
| 291 | { |
nothing calls this directly
no test coverage detected