#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