| 3484 | } |
| 3485 | |
| 3486 | CoordsXYZ GetPlayerLastActionCoord(uint32_t index) |
| 3487 | { |
| 3488 | auto& network = GetContext()->GetNetwork(); |
| 3489 | Guard::IndexInRange(index, GetContext()->GetNetwork().player_list); |
| 3490 | |
| 3491 | return network.player_list[index]->lastActionCoord; |
| 3492 | } |
| 3493 | |
| 3494 | void SetPlayerLastActionCoord(uint32_t index, const CoordsXYZ& coord) |
| 3495 | { |
no test coverage detected