mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2025-01-09 13:43:22 +00:00
15 lines
367 B
Java
15 lines
367 B
Java
|
package com.airbnb.lottie.model.animatable;
|
||
|
|
||
|
import com.airbnb.lottie.animation.keyframe.BaseKeyframeAnimation;
|
||
|
import com.airbnb.lottie.value.Keyframe;
|
||
|
import java.util.List;
|
||
|
|
||
|
/* loaded from: classes2.dex */
|
||
|
public interface AnimatableValue<K, A> {
|
||
|
BaseKeyframeAnimation<K, A> createAnimation();
|
||
|
|
||
|
List<Keyframe<K>> getKeyframes();
|
||
|
|
||
|
boolean isStatic();
|
||
|
}
|