mirror of
https://github.com/Grasscutters/Grasscutter.git
synced 2026-05-19 04:49:50 +08:00
16 lines
267 B
Java
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;
|
|
}
|
|
|
|
}
|