#pragma once #include #include class Material { public: std::string albedoTexturePath; VkImage albedoImage = nullptr; VkDeviceMemory albedoMemory = nullptr; VkImageView albedoImageView = nullptr; VkSampler albedoSampler = nullptr; VkDescriptorSet set = nullptr; };