use crate::runtime::lottie::{
composition::LottieComposition, lottie_image_asset::LottieImageAsset,
};
use super::LottieProvider;
#[derive(Default, Clone)]
pub struct AssetLottie {}
impl AssetLottie {
pub fn new(asset_name: &str) -> Self {
unimplemented!()
}
}
impl LottieProvider for AssetLottie {
fn load(&self) {}
}