| 524 | return -1; |
| 525 | } |
| 526 | |
| 527 | const AITargetInfo* AICenter::FindTargetInfo(TargetType* id) const |
| 528 | { |
| 529 | int index; |
| 530 | index = FindTargetIndex(id); |
| 531 | if (index < 0) |
| 532 | { |
| 533 | return nullptr; |
| 534 | } |
| 535 | return &_targets[index]; |
| 536 | } |
| 537 | |
| 538 | AITargetInfo* AICenter::FindTargetInfo(TargetType* id) |
no outgoing calls
no test coverage detected