blob: 062dbb9a4ccb5811752e889f938ded8f45b0b5fd [file] [log] [blame] [edit]
#include "rive/assets/blob_asset.hpp"
using namespace rive;
bool BlobAsset::decode(SimpleArray<uint8_t>& data, Factory*)
{
m_bytes = std::move(data);
return true;
}
std::string BlobAsset::fileExtension() const { return "blob"; }