ProjectDDD/Assets/_DDD/_Scripts/GenerateGoogleSheet/AutoCreated/Classes/ItemData.cs
2025-08-12 12:47:07 +09:00

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;
}
}