mirror of
https://github.com/Grasscutters/Grasscutter.git
synced 2025-12-17 09:25:06 +01:00
Add handling for ForgeExcelConfigData.
This commit is contained in:
@@ -0,0 +1,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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user