using System.Collections.Generic;
using UnityEngine;
namespace ScriptableObjects {
// [CreateAssetMenu]
public class RecipeListSO : ScriptableObject {
public List<RecipeSO> recipeSOList;
}