This repository has been archived on 2022-10-27. You can view files and clone it, but cannot push or open issues or pull requests.
space-war/event.cpp

6 lines
137 B
C++
Raw Normal View History

2022-01-30 21:24:16 +08:00
#include "event.hpp"
void OnWindowResize(GLFWwindow* window, int width, int height) {
Renderer::SetViewport(0, 0, width, height);
}