| 1760 | } |
| 1761 | |
| 1762 | void IMGUIObjectManager::Clear() |
| 1763 | { |
| 1764 | for (auto window : windows_) { |
| 1765 | DestroyRenderable(window); |
| 1766 | } |
| 1767 | |
| 1768 | for (auto& pool : pools_) { |
| 1769 | pool->Clear(); |
| 1770 | } |
| 1771 | } |
| 1772 | |
| 1773 | IMGUIManager::IMGUIManager(SDLManager& sdl) |
| 1774 | : sdl_(sdl) |