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