| 2367 | } |
| 2368 | |
| 2369 | SkyParameters UniverseServer::celestialSkyParameters(CelestialCoordinate const& coordinate) const { |
| 2370 | if (m_celestialDatabase->coordinateValid(coordinate)) |
| 2371 | return SkyParameters(coordinate, m_celestialDatabase); |
| 2372 | return SkyParameters(); |
| 2373 | } |
| 2374 | |
| 2375 | void UniverseServer::startLuaScripts() { |
| 2376 | auto assets = Root::singleton().assets(); |
nothing calls this directly
no test coverage detected