#pragma once #include #include #include #include #include #include #include "math.h" struct Window { u32 width = 800, height = 600; s32 buffer_width, buffer_height; GLFWwindow *gl_window = nullptr; }; bool setup_window(Window *window);