KitchenChaos/Assets/Scripts/ScriptableObjects/RecipeSO.cs

10 lines
231 B
C#

using System.Collections.Generic;
using UnityEngine;
namespace ScriptableObjects {
[CreateAssetMenu]
public class RecipeSO : ScriptableObject {
public List<KitchenObjectSO> kitchenObjectSOList;
public string recipeName;
}
}