GLFW.hpp 168 B

1234567891011
  1. #ifndef GAMINGCORE_GLFW_HPP
  2. #define GAMINGCORE_GLFW_HPP
  3. #define GLFW_INCLUDE_VULKAN
  4. #include <GLFW/glfw3.h>
  5. namespace Core::Window {
  6. GLFWwindow* get();
  7. }
  8. #endif