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