| 52 | } |
| 53 | |
| 54 | ByteArray CelestialParameters::netStore() const { |
| 55 | DataStreamBuffer ds; |
| 56 | ds << m_coordinate; |
| 57 | ds << m_seed; |
| 58 | ds << m_name; |
| 59 | ds << m_parameters; |
| 60 | ds.write(netStoreVisitableWorldParameters(m_visitableParameters)); |
| 61 | |
| 62 | return ds.takeData(); |
| 63 | } |
| 64 | |
| 65 | CelestialCoordinate CelestialParameters::coordinate() const { |
| 66 | return m_coordinate; |
nothing calls this directly
no test coverage detected