mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2024-12-26 09:02:34 -06:00
22 lines
389 B
Java
22 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);
|
||
|
}
|
||
|
}
|