blob: 7f9cde8332fc5062bbd81c4e35f5b2c7f0f74cd6 [file] [log] [blame]
package com.airbnb.lottie.animation.keyframe;
import com.airbnb.lottie.animation.Keyframe;
import java.util.List;
public abstract class KeyframeAnimation<T> extends BaseKeyframeAnimation<T, T> {
KeyframeAnimation(List<? extends Keyframe<T>> keyframes) {
super(keyframes);
}
}