mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2025-01-09 13:43:22 +00:00
12 lines
346 B
Java
12 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);
|
||
|
}
|