| 243 | } |
| 244 | |
| 245 | void DamageManager::addHitRequest(RemoteHitRequest const& remoteHitRequest) { |
| 246 | if (remoteHitRequest.destinationConnection() == m_connectionId) |
| 247 | pushRemoteHitRequest(remoteHitRequest); |
| 248 | else |
| 249 | m_pendingRemoteHitRequests.append(remoteHitRequest); |
| 250 | } |
| 251 | |
| 252 | void DamageManager::addDamageRequest(RemoteDamageRequest remoteDamageRequest) { |
| 253 | if (remoteDamageRequest.destinationConnection() == m_connectionId) |
nothing calls this directly
no test coverage detected