From 6d9bea3e71137a94ba64fd0b5661d341304b2dc1 Mon Sep 17 00:00:00 2001 From: Jonathan Bradley Date: Tue, 28 Nov 2023 14:42:02 -0500 Subject: refactor core game loop out of main.cpp and into game.cpp --- src/window.hpp | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) (limited to 'src/window.hpp') diff --git a/src/window.hpp b/src/window.hpp index 83f7e68..0194a18 100644 --- a/src/window.hpp +++ b/src/window.hpp @@ -8,6 +8,7 @@ #include "imgui.h" #include "memory.hpp" #include "ecs.hpp" +#include "window-types.hpp" #include "glm/mat4x4.hpp" #include @@ -46,11 +47,6 @@ extern VkRenderPass presentRenderPass; extern VkRenderPass renderRenderPass; extern VkSampleCountFlagBits renderSampleCount; -struct PKEWindowProperties { - unsigned int width = 1280; - unsigned int height = 720; -}; - struct UniformBufferObject { glm::mat4 model; glm::mat4 view; -- cgit v1.2.3