| 531 | //---------------------------------------------------------------------------- |
| 532 | |
| 533 | void GameBase::setControllingClient(GameConnection* client) |
| 534 | { |
| 535 | if (isClientObject()) |
| 536 | { |
| 537 | if (mControllingClient) |
| 538 | setControl_callback( 0 ); |
| 539 | if (client) |
| 540 | setControl_callback( 1 ); |
| 541 | } |
| 542 | |
| 543 | mControllingClient = client; |
| 544 | } |
| 545 | |
| 546 | U32 GameBase::getPacketDataChecksum(GameConnection * connection) |
| 547 | { |
no outgoing calls
no test coverage detected