20 lines
534 B
Java
20 lines
534 B
Java
package com.facetec.sdk;
|
|
|
|
import android.animation.Animator;
|
|
|
|
@FunctionalInterface
|
|
/* loaded from: classes.dex */
|
|
interface e extends Animator.AnimatorListener {
|
|
@Override // android.animation.Animator.AnimatorListener
|
|
default void onAnimationCancel(Animator animator) {
|
|
}
|
|
|
|
@Override // android.animation.Animator.AnimatorListener
|
|
default void onAnimationRepeat(Animator animator) {
|
|
}
|
|
|
|
@Override // android.animation.Animator.AnimatorListener
|
|
default void onAnimationStart(Animator animator) {
|
|
}
|
|
}
|