blob: afacba9004132dd52efabd6f78e640710713d1fb [file] [log] [blame]
#ifndef _RIVE_CORE_COLOR_TYPE_HPP_
#define _RIVE_CORE_COLOR_TYPE_HPP_
namespace rive
{
class BinaryReader;
class CoreColorType
{
public:
static const int id = 3;
static int deserialize(BinaryReader& reader);
};
} // namespace rive
#endif