#ifndef __MCOLOR_H__ #define __MCOLOR_H__ #include #include namespace mogltk { class ColorP : public Base { public: ColorP(const Color &); ColorP(Uint8, Uint8, Uint8, Uint8); static Color Min; static Color Max; Color c; }; }; #endif