Program Listing for File textureComponent.h

Return to documentation for file (PrismEngine\src\textureComponent.h)

#pragma once
#include "texture.h"

namespace prism {
    namespace scene {
        struct TextureComponent
        {
            prism::Texture texture;
        };
    }
}