initalization

This commit is contained in:
Jorijn van der Graaf 2026-03-10 03:05:10 +01:00
commit 123bb31f50

View file

@ -549,6 +549,10 @@ Window::Window(std::uint32_t width, std::uint32_t height) : width(width), height
submitInfo.pSignalSemaphores = &semaphores.renderComplete;
submitInfo.pNext = VK_NULL_HANDLE;
#endif
lastMousePos = {0,0};
mouseDelta = {0,0};
currentMousePos = {0,0};
}
void Window::SetTitle(const std::string_view title) {