CapersProject/Assets/02.Scripts/Item/Cocktail/CocktailIngredient.cs

25 lines
538 B
C#
Raw Normal View History

2024-08-22 10:39:15 +00:00
using System;
namespace BlueWater.Items
{
[Serializable]
public class CocktailIngredient
{
public string Idx { get; set; }
2024-10-22 12:41:31 +00:00
public int Ratio { get; set; }
2024-09-10 07:26:29 +00:00
public int Amount { get; set; }
2024-10-22 12:41:31 +00:00
2024-09-10 07:26:29 +00:00
public CocktailIngredient(string idx, int amount)
2024-08-22 10:39:15 +00:00
{
Idx = idx;
2024-09-10 07:26:29 +00:00
Amount = amount;
2024-08-22 10:39:15 +00:00
}
2024-10-22 12:41:31 +00:00
public CocktailIngredient(string idx, int ratio, int amount)
{
Idx = idx;
Ratio = ratio;
Amount = amount;
}
2024-08-22 10:39:15 +00:00
}
}