2025-07-08 10:46:31 +00:00
|
|
|
// <auto-generated>
|
|
|
|
using System;
|
|
|
|
using UnityEngine;
|
|
|
|
|
|
|
|
namespace DDD
|
|
|
|
{
|
2025-08-12 03:47:07 +00:00
|
|
|
public enum ItemType
|
|
|
|
{
|
|
|
|
None = 0,
|
|
|
|
Food = 1,
|
|
|
|
Ingredient = 2,
|
|
|
|
Environment = 3,
|
|
|
|
Drink = 4,
|
|
|
|
Recipe = 5,
|
|
|
|
}
|
|
|
|
|
2025-07-08 10:46:31 +00:00
|
|
|
[Serializable]
|
2025-07-15 04:01:35 +00:00
|
|
|
public class ItemData : IId
|
2025-07-08 10:46:31 +00:00
|
|
|
{
|
|
|
|
/// <summary>식별번호</summary>
|
|
|
|
[Tooltip("식별번호")]
|
2025-07-15 04:01:35 +00:00
|
|
|
[field: SerializeField]
|
|
|
|
public string Id { get; set; }
|
2025-07-08 10:46:31 +00:00
|
|
|
|
|
|
|
/// <summary>아이템타입</summary>
|
|
|
|
[Tooltip("아이템타입")]
|
|
|
|
public ItemType ItemType;
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|