| 1199 | } |
| 1200 | |
| 1201 | void Player::renderLightSources(RenderCallback* renderCallback) { |
| 1202 | renderCallback->addLightSources(lightSources()); |
| 1203 | m_deployment->renderLightSources(renderCallback); |
| 1204 | } |
| 1205 | |
| 1206 | Json Player::getGenericProperty(String const& name, Json const& defaultValue) const { |
| 1207 | return m_genericProperties.value(name, defaultValue); |
nothing calls this directly
no test coverage detected