| 350 | } |
| 351 | |
| 352 | void SystemObject::init() { |
| 353 | m_shouldDestroy = false; |
| 354 | |
| 355 | m_xPosition.setInterpolator(lerp<float, float>); |
| 356 | m_yPosition.setInterpolator(lerp<float, float>); |
| 357 | |
| 358 | m_netGroup.addNetElement(&m_xPosition); |
| 359 | m_netGroup.addNetElement(&m_yPosition); |
| 360 | m_netGroup.addNetElement(&m_orbit); |
| 361 | } |
| 362 | |
| 363 | Uuid SystemObject::uuid() const { |
| 364 | return m_uuid; |
nothing calls this directly
no test coverage detected