22 lines
283 B
C++
22 lines
283 B
C++
|
|
#ifndef MATERIAL_H
|
|
#define MATERIAL_H MATERIAL_H
|
|
|
|
#include "util/Color.h"
|
|
|
|
class Material
|
|
{
|
|
public:
|
|
/* static members */
|
|
static const Material white;
|
|
|
|
Material();
|
|
|
|
protected:
|
|
Color m_diffuse_color;
|
|
Color m_specular_color;
|
|
};
|
|
|
|
#endif
|
|
|