| 53 | void WindowSystem::setTitle(const char* title) { glfwSetWindowTitle(m_window, title); } |
| 54 | |
| 55 | GLFWwindow* WindowSystem::getWindow() const { return m_window; } |
| 56 | |
| 57 | std::array<int, 2> WindowSystem::getWindowSize() const { return std::array<int, 2>({m_width, m_height}); } |
| 58 |
no outgoing calls
no test coverage detected