| 563 | } |
| 564 | |
| 565 | List<RectF> SpawnerWorld::clientWindows() const { |
| 566 | List<RectF> windows; |
| 567 | for (auto clientId : m_worldServer->clientIds()) |
| 568 | windows.append(m_worldServer->clientWindow(clientId)); |
| 569 | return windows; |
| 570 | } |
| 571 | |
| 572 | bool SpawnerWorld::signalRegion(RectF const& region) const { |
| 573 | return m_worldServer->signalRegion(RectI::integral(region)); |
no test coverage detected