Merge branch 'development' into dungeon-scripts

This commit is contained in:
Melledy
2022-04-28 22:21:26 -07:00
32 changed files with 827 additions and 48 deletions

View File

@@ -3,6 +3,12 @@ package emu.grasscutter.data.common;
public class ItemParamData {
private int Id;
private int Count;
public ItemParamData() {}
public ItemParamData(int id, int count) {
this.Id = id;
this.Count = count;
}
public int getId() {
return Id;