blob: 2530cf55e001f08bca93c7beb242ffa2b6135e4a [file] [log] [blame]
#ifndef _RIVE_CORE_BYTES_TYPE_HPP_
#define _RIVE_CORE_BYTES_TYPE_HPP_
#include <vector>
#include <cstdint>
namespace rive {
class BinaryReader;
class CoreBytesType {
public:
static const int id = 1;
static std::vector<uint8_t> deserialize(BinaryReader& reader);
};
} // namespace rive
#endif