Rename excel classes

This commit is contained in:
Melledy
2022-05-28 04:21:47 -07:00
parent 91f8381fb1
commit 8ef99db9d3
124 changed files with 1290 additions and 1508 deletions

View File

@@ -1,17 +1,17 @@
package emu.grasscutter.data.common;
public class CurveInfo {
private String Type;
private String Arith;
private float Value;
private String type;
private String arith;
private float value;
public String getType() {
return Type;
return type;
}
public String getArith() {
return Arith;
return arith;
}
public float getValue() {
return Value;
return value;
}
}