// // Created by Vicente Ferrari Smith on 12.02.26. // #ifndef V_INIT_H #define V_INIT_H #include #include #include #include struct Device { VkDevice device; }; void createSwapchain(GLFWwindow* window); int createInstance(GLFWwindow* window); void createSurface(GLFWwindow* window); void pickPhysicalDevice(); void createDevice(); #endif //V_INIT_H