| 553 | } |
| 554 | |
| 555 | List<Drawable> StatusController::drawables() const { |
| 556 | List<Drawable> drawables; |
| 557 | for (auto const& animator : m_effectAnimators.netElements()) |
| 558 | drawables.appendAll(animator->animator.drawables(m_movementController->position())); |
| 559 | return drawables; |
| 560 | } |
| 561 | |
| 562 | List<LightSource> StatusController::lightSources() const { |
| 563 | List<LightSource> lightSources; |
nothing calls this directly
no test coverage detected