Initial commit

This commit is contained in:
Melledy
2022-04-17 05:43:07 -07:00
commit 7925d1cda3
354 changed files with 20869 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
package emu.grasscutter.data.common;
public class ItemParamData {
private int Id;
private int Count;
public int getId() {
return Id;
}
public int getCount() {
return Count;
}
}