mirror of
https://github.com/Grasscutters/Grasscutter.git
synced 2026-02-07 10:36:41 +01:00
Implement quest rewards
This commit is contained in:
@@ -1,7 +1,12 @@
|
||||
package emu.grasscutter.data.common;
|
||||
|
||||
import com.google.gson.annotations.SerializedName;
|
||||
|
||||
public class ItemParamData {
|
||||
@SerializedName(value="Id", alternate={"ItemId"})
|
||||
private int Id;
|
||||
|
||||
@SerializedName(value="Count", alternate={"ItemCount"})
|
||||
private int Count;
|
||||
|
||||
public ItemParamData() {}
|
||||
@@ -14,7 +19,15 @@ public class ItemParamData {
|
||||
return Id;
|
||||
}
|
||||
|
||||
public int getItemId() {
|
||||
return Id;
|
||||
}
|
||||
|
||||
public int getCount() {
|
||||
return Count;
|
||||
}
|
||||
|
||||
public int getItemCount() {
|
||||
return Count;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user