blob: a2c90f7d0ede4ff10f91e4aa07f3806c181ffc6a [file] [log] [blame]
#ifndef _RIVE_CORE_UINT_TYPE_HPP_
#define _RIVE_CORE_UINT_TYPE_HPP_
namespace rive {
class BinaryReader;
class CoreUintType {
public:
static const int id = 0;
static unsigned int deserialize(BinaryReader& reader);
};
} // namespace rive
#endif