Program Listing for File materialComponent.h

Return to documentation for file (PrismEngine/src/materialComponent.h)

#pragma once
#include "texture.h"

namespace prism {
    namespace scene {
        using Pipeline = VkPipeline;

        struct MaterialComponent
        {
            prism::TextureId texture = INVALID_TEXTURE_ID;
        };
    }
}