#ifndef _COLOR_H #define _COLOR_H class Color { public: float r; float g; float b; Color(float _r, float _g, float _b); void drawColor(); Color* clone(); }; #endif