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