CurveInfo.java 281 Bytes
Newer Older
Melledy's avatar
Melledy committed
1
2
3
package emu.grasscutter.data.common;

public class CurveInfo {
Melledy's avatar
Melledy committed
4
5
6
	private String type;
    private String arith;
    private float value;
Melledy's avatar
Melledy committed
7
8
    
	public String getType() {
Melledy's avatar
Melledy committed
9
		return type;
Melledy's avatar
Melledy committed
10
11
	}
	public String getArith() {
Melledy's avatar
Melledy committed
12
		return arith;
Melledy's avatar
Melledy committed
13
14
	}
	public float getValue() {
Melledy's avatar
Melledy committed
15
		return value;
Melledy's avatar
Melledy committed
16
17
	}
}