blob: 7dcab7ffe9c8a7d58a7cceeedbe2a43494982af0 [file] [log] [blame]
#ifndef _RIVE_CORE_BOOL_TYPE_HPP_
#define _RIVE_CORE_BOOL_TYPE_HPP_
namespace rive
{
class BinaryReader;
class CoreBoolType
{
public:
static const int id = 0;
static bool deserialize(BinaryReader& reader);
};
} // namespace rive
#endif