PropGrowCurve.java 257 Bytes
Newer Older
Melledy's avatar
Melledy committed
1
2
3
4
5
6
7
8
9
10
11
12
13
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;
    }
}