| 447 | } |
| 448 | |
| 449 | void init_hook(plume::RenderInterface* interface, plume::RenderDevice* device) { |
| 450 | #if defined(__linux__) |
| 451 | std::locale::global(std::locale::classic()); |
| 452 | #endif |
| 453 | ui_state = std::make_unique<UIState>(window, interface, device); |
| 454 | ui_state->create_menus(); |
| 455 | } |
| 456 | |
| 457 | moodycamel::ConcurrentQueue<SDL_Event> ui_event_queue{}; |
| 458 |
nothing calls this directly
no test coverage detected