33 lines
735 B
C#
33 lines
735 B
C#
// <auto-generated>
|
|
using System;
|
|
using UnityEngine;
|
|
|
|
namespace DDD
|
|
{
|
|
[Serializable]
|
|
public class RecipeData : IId
|
|
{
|
|
/// <summary>식별ID</summary>
|
|
[Tooltip("식별ID")]
|
|
[field: SerializeField]
|
|
public string Id { get; set; }
|
|
|
|
/// <summary>레시피타입</summary>
|
|
[Tooltip("레시피타입")]
|
|
public RecipeType RecipeType;
|
|
|
|
/// <summary>스트링 ID</summary>
|
|
[Tooltip("스트링 ID")]
|
|
public string NameKey;
|
|
|
|
/// <summary>설명 ID</summary>
|
|
[Tooltip("설명 ID")]
|
|
public string DescriptionKey;
|
|
|
|
/// <summary>아이템 키</summary>
|
|
[Tooltip("아이템 키")]
|
|
public string ItemKey;
|
|
|
|
}
|
|
}
|