/* $Id: color.hpp,v 1.3 2005/06/28 13:55:18 chfreund Exp $ */ /******************************************************************************/ #ifndef _COLOR_HPP_ #define _COLOR_HPP_ /******************************************************************************/ #include #include "global.hpp" /******************************************************************************/ class Color { public: static Uint32 HSVToUint32( const real h, const real s, const real v ); }; /******************************************************************************/ #endif // _COLOR_HPP_