VulkanWrapper.hpp 168 B

12345678910
  1. #ifndef GAMINGCORE_VULKAN_WRAPPER_HPP
  2. #define GAMINGCORE_VULKAN_WRAPPER_HPP
  3. namespace Core::Vulkan {
  4. bool init();
  5. void render();
  6. void destroy();
  7. }
  8. #endif