| 200 | } |
| 201 | |
| 202 | void DrawItemsController::Draw() const |
| 203 | { |
| 204 | if (_displayItems.empty()) |
| 205 | return; |
| 206 | |
| 207 | for (const auto& item : _displayItems) |
| 208 | g_Renderer.DrawObjectIn3DSpace(item); |
| 209 | } |
| 210 | |
| 211 | void DrawItemsController::Clear() |
| 212 | { |
nothing calls this directly
no test coverage detected