| 560 | } |
| 561 | |
| 562 | List<LightSource> StatusController::lightSources() const { |
| 563 | List<LightSource> lightSources; |
| 564 | for (auto const& animator : m_effectAnimators.netElements()) |
| 565 | lightSources.appendAll(animator->animator.lightSources(m_movementController->position())); |
| 566 | return lightSources; |
| 567 | } |
| 568 | |
| 569 | List<OverheadBar> StatusController::overheadBars() { |
| 570 | if (auto bars = m_primaryScript.invoke<JsonArray>("overheadBars")) |
nothing calls this directly
no test coverage detected