Rabbit-R1/android (non root)/java/sources/com/airbnb/lottie/model/content/BlurEffect.java

17 lines
421 B
Java
Raw Normal View History

2024-05-21 21:08:36 +00:00
package com.airbnb.lottie.model.content;
import com.airbnb.lottie.model.animatable.AnimatableFloatValue;
/* loaded from: classes2.dex */
public class BlurEffect {
final AnimatableFloatValue blurriness;
public AnimatableFloatValue getBlurriness() {
return this.blurriness;
}
public BlurEffect(AnimatableFloatValue animatableFloatValue) {
this.blurriness = animatableFloatValue;
}
}