| 509 | } |
| 510 | |
| 511 | void Monster::renderLightSources(RenderCallback* renderCallback) { |
| 512 | renderCallback->addLightSources(m_networkedAnimator.lightSources(position())); |
| 513 | renderCallback->addLightSources(m_statusController->lightSources()); |
| 514 | renderCallback->addLightSources(m_scriptedAnimator.lightSources()); |
| 515 | } |
| 516 | |
| 517 | void Monster::setPosition(Vec2F const& pos) { |
| 518 | m_movementController->setPosition(pos); |
nothing calls this directly
no test coverage detected