blob: 329b5c3ef88c7eea776827571323ac7c46a69b5d [file] [log] [blame]
package com.airbnb.lottie.model.animatable;
import com.airbnb.lottie.animation.keyframe.BaseKeyframeAnimation;
public interface AnimatableValue<K, A> {
BaseKeyframeAnimation<K, A> createAnimation();
interface Factory<V> {
V valueFromObject(Object object, float scale);
}
}