| 701 | } |
| 702 | |
| 703 | void UniverseClient::setPause(bool pause) { |
| 704 | m_pause = pause; |
| 705 | |
| 706 | if (pause) |
| 707 | m_universeClock->stop(); |
| 708 | else |
| 709 | m_universeClock->start(); |
| 710 | } |
| 711 | |
| 712 | void UniverseClient::handlePackets(List<PacketPtr> const& packets) { |
| 713 | for (auto const& packet : packets) { |
no test coverage detected