#ifndef __GLCOLOR_H__ #define __GLCOLOR_H__ #include #include namespace mogltk { class ColorP : public Base { public: ColorP(const Color &); ColorP(Uint8, Uint8, Uint8, Uint8); void Bind(); private: Color c; }; }; #endif