CapersProject/Assets/02.Scripts/Item/Food/Ingredient.cs
Nam Tae Gun f1fcd10077 타이쿤 Ui 테스트용 기본 기능 추가
+ excel 수정
+ 테스트용 이미지 연결
2024-07-16 01:20:39 +09:00

17 lines
308 B
C#

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