Initial import of ADIF API reverse-engineering toolkit

This commit is contained in:
2025-12-16 08:37:56 +01:00
commit 60388529c1
11486 changed files with 1086536 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
package Q;
import android.graphics.Path;
import android.view.animation.Interpolator;
import android.view.animation.PathInterpolator;
/* loaded from: classes.dex */
public abstract class a {
public static Interpolator a(float f2, float f4) {
return new PathInterpolator(f2, f4);
}
public static Interpolator b(float f2, float f4, float f5, float f6) {
return new PathInterpolator(f2, f4, f5, f6);
}
public static Interpolator c(Path path) {
return new PathInterpolator(path);
}
}