blob: 86727157cccfd4184e2cb408a2e6a3a52d76ba7e [file] [log] [blame]
#include "rive/core/field_types/core_bool_type.hpp"
#include "rive/core/binary_reader.hpp"
using namespace rive;
bool CoreBoolType::deserialize(BinaryReader& reader) {
return reader.readByte() == 1;
}