This commit is contained in:
Mars 2024-11-18 17:45:41 -05:00
parent bca2a4e999
commit 5c5d004a66
2 changed files with 2 additions and 2 deletions

View file

@ -6,8 +6,6 @@
#include "../util/constants.hpp"
VULKAN_HPP_DEFAULT_DISPATCH_LOADER_DYNAMIC_STORAGE
using namespace constants;
fn VulkanInstance::create() -> vk::UniqueInstance {

View file

@ -20,6 +20,8 @@
#define VULKAN_HPP_NO_CONSTRUCTORS // Use aggregate initialization for Vulkan structs
#include <vulkan/vulkan.hpp> // Include Vulkan C++ bindings
VULKAN_HPP_DEFAULT_DISPATCH_LOADER_DYNAMIC_STORAGE
// Include custom utility headers
#include "camera/camera.hpp" // Camera class
#include "init/debug_messenger.hpp"