blob: 5256f8ce7b84c5ebe4feb997d9f67239758f5d39 [file] [log] [blame]
package com.airbnb.lottie.model.content;
import android.support.annotation.Nullable;
import com.airbnb.lottie.LottieDrawable;
import com.airbnb.lottie.animation.content.Content;
import com.airbnb.lottie.model.layer.BaseLayer;
public interface ContentModel {
@Nullable Content toContent(LottieDrawable drawable, BaseLayer layer);
}