19 lines
243 B
C++
19 lines
243 B
C++
|
|
#ifndef MATERIAL_H
|
|
#define MATERIAL_H MATERIAL_H
|
|
|
|
#include "util/Color.h"
|
|
|
|
class Material
|
|
{
|
|
public:
|
|
Material(const Color & rgb = Color::white);
|
|
static const Material white;
|
|
|
|
protected:
|
|
Color m_rgb;
|
|
};
|
|
|
|
#endif
|
|
|