| 3 | #include <ranges> |
| 4 | |
| 5 | void MainLoopEntityController::registerObject(AbstractMainLoopEntity* object) |
| 6 | { |
| 7 | _objects.emplace_back(object); |
| 8 | } |
| 9 | |
| 10 | void MainLoopEntityController::shutdown() |
| 11 | { |
nothing calls this directly
no outgoing calls
no test coverage detected