ItemParamData.java 319 Bytes
Newer Older
Melledy's avatar
Melledy committed
1
2
3
4
5
package emu.grasscutter.data.common;

public class ItemParamData {
	private int Id;
    private int Count;
Kengxxiao's avatar
Kengxxiao committed
6
7
8
9
10
11

    public ItemParamData() {}
	public ItemParamData(int id, int count) {
    	this.Id = id;
    	this.Count = count;
	}
Melledy's avatar
Melledy committed
12
13
14
15
16
17
18
19
20
    
	public int getId() {
		return Id;
	}
	
	public int getCount() {
		return Count;
	}
}