official shop support

This commit is contained in:
Kengxxiao
2022-04-29 00:46:19 +08:00
committed by Melledy
parent cf5e4ef186
commit 39d2380754
8 changed files with 179 additions and 9 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;