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