Update rive-cpp to 2.0 version
[platform/core/uifw/rive-tizen.git] / submodule / rive-cpp / include / rive / core / field_types / core_uint_type.hpp
1 #ifndef _RIVE_CORE_UINT_TYPE_HPP_
2 #define _RIVE_CORE_UINT_TYPE_HPP_
3
4 namespace rive {
5     class BinaryReader;
6     class CoreUintType {
7     public:
8         static const int id = 0;
9         static unsigned int deserialize(BinaryReader& reader);
10     };
11 } // namespace rive
12 #endif