18 lines
292 B
C++
18 lines
292 B
C++
#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
|