blob: 7c5350e8f7c3c7c9f02f980764d05cb5d1d0d04c [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