| 391 | } |
| 392 | |
| 393 | void BuildCachedTargets(const Array<NetworkClient*>& clients) |
| 394 | { |
| 395 | CachedTargets.Clear(); |
| 396 | for (const NetworkClient* client : clients) |
| 397 | { |
| 398 | if (client->State == NetworkConnectionState::Connected) |
| 399 | CachedTargets.Add(client->Connection); |
| 400 | } |
| 401 | } |
| 402 | |
| 403 | void BuildCachedTargets(const Array<NetworkClient*>& clients, const NetworkClient* excludedClient) |
| 404 | { |
no test coverage detected