| 37 | TaskGraphSystem* Behavior::System = nullptr; |
| 38 | |
| 39 | void BehaviorSystem::Job(int32 index) |
| 40 | { |
| 41 | PROFILE_CPU_NAMED("Behavior.Job"); |
| 42 | PROFILE_MEM(AI); |
| 43 | Behaviors[index]->UpdateAsync(); |
| 44 | } |
| 45 | |
| 46 | void BehaviorSystem::Execute(TaskGraph* graph) |
| 47 | { |