2025-07-30 09:42:33 +00:00
|
|
|
// <auto-generated>
|
|
|
|
using System;
|
|
|
|
using UnityEngine;
|
|
|
|
|
|
|
|
namespace DDD
|
|
|
|
{
|
2025-08-12 03:47:07 +00:00
|
|
|
public enum CookwareType
|
|
|
|
{
|
|
|
|
None = 0,
|
|
|
|
Pot = 1,
|
|
|
|
Fryer = 2,
|
|
|
|
FirePit = 3,
|
|
|
|
CuttingBoard = 4,
|
|
|
|
Griddle = 5,
|
|
|
|
MagicOven = 6,
|
|
|
|
JuiceMachine = 7,
|
|
|
|
Barrel = 8,
|
|
|
|
}
|
|
|
|
|
2025-07-30 09:42:33 +00:00
|
|
|
[Serializable]
|
|
|
|
public class CookwareData : IId
|
|
|
|
{
|
|
|
|
/// <summary>식별ID</summary>
|
|
|
|
[Tooltip("식별ID")]
|
|
|
|
[field: SerializeField]
|
|
|
|
public string Id { get; set; }
|
|
|
|
|
|
|
|
/// <summary>요리도구 타입</summary>
|
|
|
|
[Tooltip("요리도구 타입")]
|
|
|
|
public CookwareType CookwareType;
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|