blob: 69267296ff70cd37021e65f237bb63e9ae09ee93 [file] [log] [blame]
#ifndef _RIVE_FILE_ASSET_RESOLVER_HPP_
#define _RIVE_FILE_ASSET_RESOLVER_HPP_
#include <cstdint>
#include <vector>
namespace rive
{
class FileAsset;
class FileAssetResolver
{
public:
/// Expected to be overridden to find asset contents when not provided
/// in band.
/// @param asset describes the asset that Rive is looking for the
/// contents of.
virtual void loadContents(FileAsset& asset) = 0;
};
} // namespace rive
#endif