| 2430 | Rank rank) |
| 2431 | { |
| 2432 | if (_client) |
| 2433 | { |
| 2434 | _client->AskForCreateUnit(group, type, position, init, skill, rank); |
| 2435 | } |
| 2436 | } |
| 2437 | |
| 2438 | void NetworkManager::AskForDeleteVehicle(Entity* veh) |
| 2439 | { |
| 2440 | if (_client) |
| 2441 | { |
| 2442 | _client->AskForDeleteVehicle(veh); |
| 2443 | } |
| 2444 | } |
| 2445 | |
| 2446 | void NetworkManager::AskForReceiveUnitAnswer(AIUnit* from, AISubgroup* to, int answer) |
| 2447 | { |
no test coverage detected