| 116 | }; |
| 117 | |
| 118 | struct BehaviorTree { |
| 119 | BehaviorTree(String const& name, StringSet scripts, JsonObject const& parameters); |
| 120 | |
| 121 | String name; |
| 122 | StringSet scripts; |
| 123 | StringSet functions; |
| 124 | JsonObject parameters; |
| 125 | |
| 126 | BehaviorNodeConstPtr root; |
| 127 | }; |
| 128 | |
| 129 | typedef std::shared_ptr<const BehaviorNode> BehaviorNodeConstPtr; |
| 130 |