discord-jadx/app/src/main/java/androidx/core/view/WindowInsetsAnimationContro...

12 lines
495 B
Java

package androidx.core.view;
import androidx.annotation.NonNull;
import androidx.annotation.Nullable;
public interface WindowInsetsAnimationControlListenerCompat {
void onCancelled(@Nullable WindowInsetsAnimationControllerCompat windowInsetsAnimationControllerCompat);
void onFinished(@NonNull WindowInsetsAnimationControllerCompat windowInsetsAnimationControllerCompat);
void onReady(@NonNull WindowInsetsAnimationControllerCompat windowInsetsAnimationControllerCompat, int i);
}