blob: 2cc526f5fbdd9785a1344eafcdee548a65a48a29 [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