Implement ShopEditor

This commit is contained in:
2022-11-01 21:55:05 +08:00
parent 52317d8d5a
commit 302e4e327d
10 changed files with 345 additions and 67 deletions

View File

@@ -22,6 +22,12 @@ namespace GrasscutterTools.Game.Shop
{
public struct ItemParamData
{
public ItemParamData(int id, int count)
{
Id = id;
Count = count;
}
[JsonProperty("id")]
public int Id { get; set; }