| 49 | void WindowSystem::pollEvents() const { glfwPollEvents(); } |
| 50 | |
| 51 | bool WindowSystem::shouldClose() const { return glfwWindowShouldClose(m_window); } |
| 52 | |
| 53 | void WindowSystem::setTitle(const char* title) { glfwSetWindowTitle(m_window, title); } |
| 54 |
no test coverage detected