Rename excel classes

This commit is contained in:
Melledy
2022-05-28 04:21:47 -07:00
Unverified
parent 91f8381fb1
commit 8ef99db9d3
124 changed files with 1290 additions and 1508 deletions
@@ -1,13 +1,15 @@
package emu.grasscutter.data.common;
public class PropGrowCurve {
private String Type;
private String GrowCurve;
private String type;
private String growCurve;
public String getType(){
return this.Type;
return this.type;
}
public String getGrowCurve(){
return this.GrowCurve;
return this.growCurve;
}
}