blob: 87eeb5e82520f3c65fae259fffd96b3ef385f274 [file] [log] [blame]
#ifndef _RIVE_FILE_ASSET_REFERENCER_HPP_
#define _RIVE_FILE_ASSET_REFERENCER_HPP_
namespace rive {
class FileAsset;
class FileAssetReferencer {
public:
virtual ~FileAssetReferencer() {}
virtual void assets(const std::vector<FileAsset*>& assets) = 0;
};
} // namespace rive
#endif