11 lines
324 B
Java
11 lines
324 B
Java
|
package com.airbnb.lottie.model.content;
|
||
|
|
||
|
import com.airbnb.lottie.LottieDrawable;
|
||
|
import com.airbnb.lottie.animation.content.Content;
|
||
|
import com.airbnb.lottie.model.layer.BaseLayer;
|
||
|
|
||
|
/* loaded from: classes.dex */
|
||
|
public interface ContentModel {
|
||
|
Content toContent(LottieDrawable lottieDrawable, BaseLayer baseLayer);
|
||
|
}
|