| 10 | namespace Star { |
| 11 | |
| 12 | CelestialParameters::CelestialParameters() : m_seed(0) {} |
| 13 | |
| 14 | CelestialParameters::CelestialParameters(CelestialCoordinate coordinate, uint64_t seed, String name, Json parameters) |
| 15 | : m_coordinate(std::move(coordinate)), m_seed(seed), m_name(std::move(name)), m_parameters(std::move(parameters)) { |
nothing calls this directly
no test coverage detected