blob: c46c9e24fc42b8fae2acbb0af578165f2f9bd514 [file] [log] [blame]
#ifndef _RIVE_CORE_DOUBLE_TYPE_HPP_
#define _RIVE_CORE_DOUBLE_TYPE_HPP_
namespace rive {
class BinaryReader;
class CoreDoubleType {
public:
static const int id = 2;
static float deserialize(BinaryReader& reader);
};
} // namespace rive
#endif