mirror of
https://github.com/Grasscutters/Grasscutter.git
synced 2025-05-27 18:50:20 +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;
|
|
}
|
|
}
|