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