Files
Grasscutter/src/main/java/emu/grasscutter/data/common/PropGrowCurve.java
T
2022-05-30 20:06:25 -07:00

16 lines
267 B
Java

package emu.grasscutter.data.common;
public class PropGrowCurve {
private String type;
private String growCurve;
public String getType(){
return this.type;
}
public String getGrowCurve(){
return this.growCurve;
}
}