ThreeLab/Engine/Components/ModelComponent.h

18 lines
292 B
C
Raw Normal View History

2025-04-01 20:03:18 +00:00
#ifndef MODEL_COMPONENT_H
#define MODEL_COMPONENT_H
#include <glm/glm.hpp>
class ModelComponent {
public:
ModelComponent();
~ModelComponent();
// Material properties.
glm::vec3 diffuseColor;
glm::vec3 specularColor;
float shininess;
};
#endif // MODEL_COMPONENT_H