18 lines
341 B
C#
18 lines
341 B
C#
using System;
|
|
using UnityEngine;
|
|
|
|
namespace BlueWater.Items
|
|
{
|
|
[Serializable]
|
|
public class CocktailIngredient
|
|
{
|
|
public string Idx { get; set; }
|
|
public int Amount { get; set; }
|
|
|
|
public CocktailIngredient(string idx, int amount)
|
|
{
|
|
Idx = idx;
|
|
Amount = amount;
|
|
}
|
|
}
|
|
} |