blob: 7ba59762b1e27f4853c356a13a70dbb6b0ac86cb [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