/* material.h * * Materials are applied to shapes and determine color, texture mapping, shading, etc. * * Eryn Wells */ #ifndef __MATERIAL_H__ #define __MATERIAL_H__ #include "basics.h" class Material { public: Color get_color(); void set_color(const Color &c); private: Color color; }; #endif