mirror of
https://github.com/Grasscutters/Grasscutter.git
synced 2025-12-12 15:04:40 +01:00
14 lines
257 B
Java
14 lines
257 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;
|
|
}
|
|
}
|