File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -34,5 +34,5 @@ add_executable(t04_blackboard t04_blackboard.cpp )
3434target_link_libraries (t04_blackboard movebase_node ${BEHAVIOR_TREE_LIBRARIES} )
3535
3636
37- add_executable (crossdoor_example crossdoor_example .cpp )
38- target_link_libraries (crossdoor_example crossdoor_nodes ${BEHAVIOR_TREE_LIBRARIES} )
37+ add_executable (t05_crossdoor t05_crossdoor .cpp )
38+ target_link_libraries (t05_crossdoor crossdoor_nodes ${BEHAVIOR_TREE_LIBRARIES} )
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ int main()
1919 // sequence_root will be the root of our tree
2020 BT::SequenceNode sequence_root (" sequence" );
2121
22- // Simple functions can be wrapped inside in ActionNodeBase
22+ // Function pointers can be wrapped inside ActionNodeBase
2323 // using the SimpleActionNode
2424 SimpleActionNode say_hello (" action_hello" , std::bind (SayHello) );
2525
File renamed without changes.
You can’t perform that action at this time.
0 commit comments