blob: 4da142964fb3e20c379688bae9bd0c522a6b5016 [file] [log] [blame]
package com.airbnb.lottie.model.animatable;
import android.util.JsonReader;
import com.airbnb.lottie.animation.keyframe.BaseKeyframeAnimation;
import java.io.IOException;
public interface AnimatableValue<K, A> {
BaseKeyframeAnimation<K, A> createAnimation();
interface Factory<V> {
V valueFromObject(JsonReader reader, float scale) throws IOException;
}
}