mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2024-12-26 09:02:34 -06:00
11 lines
346 B
Java
11 lines
346 B
Java
package com.airbnb.lottie.model;
|
|
|
|
import com.airbnb.lottie.value.LottieValueCallback;
|
|
import java.util.List;
|
|
|
|
/* loaded from: classes2.dex */
|
|
public interface KeyPathElement {
|
|
<T> void addValueCallback(T t, LottieValueCallback<T> lottieValueCallback);
|
|
|
|
void resolveKeyPath(KeyPath keyPath, int i, List<KeyPath> list, KeyPath keyPath2);
|
|
}
|