blob: df300e71c8f3f8c63dcaa5d341bcc9730de8d428 [file]
#ifndef _RIVE_FILE_ASSET_REFERENCER_HPP_
#define _RIVE_FILE_ASSET_REFERENCER_HPP_
#include <vector>
#include "rive/importers/import_stack.hpp"
namespace rive
{
class FileAsset;
class FileAssetReferencer
{
public:
virtual ~FileAssetReferencer() {}
virtual void assets(const std::vector<FileAsset*>& assets) = 0;
StatusCode registerReferencer(ImportStack& importStack);
};
} // namespace rive
#endif