MaterialItemsData.java 342 Bytes
Newer Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package emu.grasscutter.data.common;

import java.util.List;

public class MaterialItemsData {
	private int id;
	private int count;

	public int getId() {
		return this.id;
	}
	public void setId(int value) {
		this.id = value;
	}

	public int getCount() {
		return this.count;
	}
	public void setCount(int value) {
		this.count = value;
	}
}