CurveInfo.java 281 Bytes
Newer Older
Melledy's avatar
Melledy committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package emu.grasscutter.data.common;

public class CurveInfo {
	private String Type;
    private String Arith;
    private float Value;
    
	public String getType() {
		return Type;
	}
	public String getArith() {
		return Arith;
	}
	public float getValue() {
		return Value;
	}
}