| 574 | } |
| 575 | |
| 576 | bool AIPathInitPath(ai_path_info *aip) { |
| 577 | ASSERT(aip); |
| 578 | |
| 579 | aip->num_paths = 0; |
| 580 | aip->cur_path = 0; |
| 581 | aip->cur_node = 0; |
| 582 | |
| 583 | aip->goal_index = -1; |
| 584 | aip->goal_uid = -1; |
| 585 | |
| 586 | return true; |
| 587 | } |
| 588 | |
| 589 | bool AIPathFreePath(ai_path_info *aip) { |
| 590 | int i; |
no outgoing calls
no test coverage detected