| 732 | } |
| 733 | |
| 734 | void sendRobotUpdates() { |
| 735 | for (int i = 0; i < numRobots; i++) { |
| 736 | if (robots[i] && robots[i]->isDeadReckoningWrong()) { |
| 737 | serverLink->sendPlayerUpdate(robots[i]); |
| 738 | } |
| 739 | } |
| 740 | } |
| 741 | |
| 742 | void addRobots() { |
| 743 | int j; |
no test coverage detected