14 lines
300 B
C#
14 lines
300 B
C#
using UnityEngine;
|
|
|
|
namespace DDD.Restaurant
|
|
{
|
|
public interface ICookware
|
|
{
|
|
CookwareType CookwareType { get; }
|
|
}
|
|
|
|
public class CookwareComponent : MonoBehaviour, ICookware
|
|
{
|
|
[field: SerializeField] public CookwareType CookwareType { get; private set; }
|
|
}
|
|
} |