Rename excel classes

This commit is contained in:
Melledy
2022-05-28 04:21:47 -07:00
Unverified
parent f139818224
commit a23b29b65a
123 changed files with 1289 additions and 1507 deletions
@@ -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;
}
}