| 327 | } |
| 328 | |
| 329 | bool AIPathGetPrevNodePos(ai_path_info *aip, vector *pos, int *room) { |
| 330 | if (AIPathMoveToPrevNode(aip)) { |
| 331 | AIPathGetCurrentNodePos(aip, pos, room); |
| 332 | AIPathMoveToNextNode(aip); |
| 333 | |
| 334 | return true; |
| 335 | } |
| 336 | |
| 337 | return false; |
| 338 | } |
| 339 | |
| 340 | static void AIPathComplete(object *obj) { GoalPathComplete(obj); } |
| 341 |
no test coverage detected