ProjectDDD/Assets/_DDD/_Scripts/GenerateGoogleSheet/AutoCreated/Classes/IngredientData.cs

29 lines
630 B
C#
Raw Normal View History

2025-07-24 08:45:02 +00:00
// <auto-generated>
using System;
using UnityEngine;
namespace DDD
{
[Serializable]
public class IngredientData : IId
{
/// <summary>식별ID</summary>
[Tooltip("식별ID")]
[field: SerializeField]
public string Id { get; set; }
/// <summary>스트링 ID</summary>
[Tooltip("스트링 ID")]
public string NameKey;
2025-07-25 07:58:53 +00:00
/// <summary>설명 ID</summary>
[Tooltip("설명 ID")]
public string DescriptionKey;
2025-07-24 08:45:02 +00:00
/// <summary>SpriteAtlas 키 값</summary>
[Tooltip("SpriteAtlas 키 값")]
public string SpriteKey;
}
}