mirror of
https://github.com/Grasscutters/Grasscutter.git
synced 2025-01-12 03:52:52 +08:00
18 lines
281 B
Java
18 lines
281 B
Java
package emu.grasscutter.data.common;
|
|
|
|
public class CurveInfo {
|
|
private String Type;
|
|
private String Arith;
|
|
private float Value;
|
|
|
|
public String getType() {
|
|
return Type;
|
|
}
|
|
public String getArith() {
|
|
return Arith;
|
|
}
|
|
public float getValue() {
|
|
return Value;
|
|
}
|
|
}
|