AvatarLevelData.java 418 Bytes
Newer Older
Melledy's avatar
Melledy committed
1
package emu.grasscutter.data.excels;
Melledy's avatar
Melledy committed
2

3
import emu.grasscutter.data.GameResource;
Melledy's avatar
Melledy committed
4
5
6
import emu.grasscutter.data.ResourceType;

@ResourceType(name = "AvatarLevelExcelConfigData.json")
7
public class AvatarLevelData extends GameResource {
Melledy's avatar
Melledy committed
8
9
	private int level;
	private int exp;
Melledy's avatar
Melledy committed
10
11
12
	
	@Override
	public int getId() {
Melledy's avatar
Melledy committed
13
		return this.level;
Melledy's avatar
Melledy committed
14
15
16
	}
	
	public int getLevel() {
Melledy's avatar
Melledy committed
17
		return level;
Melledy's avatar
Melledy committed
18
19
20
	}
	
	public int getExp() {
Melledy's avatar
Melledy committed
21
		return exp;
Melledy's avatar
Melledy committed
22
23
	}
}