CapersProject/Assets/02.Scripts/Item/Food/Ingredient.cs
2024-08-22 19:39:15 +09:00

17 lines
314 B
C#

using System;
namespace BlueWater.Items
{
[Serializable]
public class Ingredient
{
public string Idx { get; set; }
public int Quantity { get; set; }
public Ingredient(string idx, int quantity)
{
Idx = idx;
Quantity = quantity;
}
}
}