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