| 51 | bool WindowSystem::shouldClose() const { return glfwWindowShouldClose(m_window); } |
| 52 | |
| 53 | void WindowSystem::setTitle(const char* title) { glfwSetWindowTitle(m_window, title); } |
| 54 | |
| 55 | GLFWwindow* WindowSystem::getWindow() const { return m_window; } |
| 56 |
no test coverage detected