| 353 | } |
| 354 | |
| 355 | Target* FindTargetReveal(AIGroup* grp, EntityAI* veh) |
| 356 | { |
| 357 | Target* tgt = grp->FindTarget(veh); |
| 358 | if (tgt) |
| 359 | { |
| 360 | return tgt; |
| 361 | } |
| 362 | return grp->AddTarget(veh, 0.3, 0.3, 3.0f); |
| 363 | } |
| 364 | |
| 365 | #define TABLE_COMMAND(xxx, Xxx, RightType) \ |
| 366 | GameOperator(GameNothing, "command" #xxx, function, VehCommand##Xxx, GameObjectOrArray, RightType), \ |
no test coverage detected