| 133 | } |
| 134 | |
| 135 | List<CelestialCoordinate> SystemWorld::planets() const { |
| 136 | return m_celestialDatabase->children(CelestialCoordinate(m_location)); |
| 137 | } |
| 138 | |
| 139 | uint64_t SystemWorld::coordinateSeed(CelestialCoordinate const& coordinate, String const& seedMix) const { |
| 140 | auto satellite = coordinate.isSatelliteBody() ? coordinate.orbitNumber() : 0; |
no test coverage detected