mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2024-12-26 00:52:31 -06:00
21 lines
389 B
Java
21 lines
389 B
Java
package androidx.dynamicanimation.animation;
|
|
|
|
/* loaded from: classes.dex */
|
|
public final class FloatValueHolder {
|
|
private float mValue = 0.0f;
|
|
|
|
public float getValue() {
|
|
return this.mValue;
|
|
}
|
|
|
|
public void setValue(float f) {
|
|
this.mValue = f;
|
|
}
|
|
|
|
public FloatValueHolder() {
|
|
}
|
|
|
|
public FloatValueHolder(float f) {
|
|
setValue(f);
|
|
}
|
|
}
|