CapersProject/Assets/02.Scripts/Item/Food/Ingredient.cs

17 lines
314 B
C#
Raw Normal View History

using System;
namespace BlueWater.Items
{
[Serializable]
public class Ingredient
{
2024-08-22 10:39:15 +00:00
public string Idx { get; set; }
public int Quantity { get; set; }
2024-08-22 10:39:15 +00:00
public Ingredient(string idx, int quantity)
{
Idx = idx;
Quantity = quantity;
}
}
}