17 lines
282 B
Python
17 lines
282 B
Python
|
import py_trees as bt
|
||
|
|
||
|
class BTAPI():
|
||
|
"""
|
||
|
|
||
|
"""
|
||
|
|
||
|
def __init__(self) -> None:
|
||
|
self.string = None
|
||
|
|
||
|
|
||
|
def newTree(self) -> bt.trees.BehaviourTree:
|
||
|
"""_summary_
|
||
|
|
||
|
Returns:
|
||
|
bt.trees.BehaviourTree: _description_
|
||
|
"""
|