31 lines
570 B
C#
31 lines
570 B
C#
// <auto-generated>
|
|
using System;
|
|
using UnityEngine;
|
|
|
|
namespace DDD
|
|
{
|
|
public enum ItemType
|
|
{
|
|
None = 0,
|
|
Food = 1,
|
|
Ingredient = 2,
|
|
Environment = 3,
|
|
Drink = 4,
|
|
Recipe = 5,
|
|
}
|
|
|
|
[Serializable]
|
|
public class ItemData : IId
|
|
{
|
|
/// <summary>식별번호</summary>
|
|
[Tooltip("식별번호")]
|
|
[field: SerializeField]
|
|
public string Id { get; set; }
|
|
|
|
/// <summary>아이템타입</summary>
|
|
[Tooltip("아이템타입")]
|
|
public ItemType ItemType;
|
|
|
|
}
|
|
}
|