#pragma once #include "../VulkanRenderer.h" namespace PB::Renderer { class GLFWManager { private: static std::vector s_Windows; public: static bool Init(); static bool Cleanup(); static GLFWwindow* CreateWindow(int width, int height, const char* title = "Unnamed window"); static GLFWwindow* GetWindow(int index = 0); }; }