using System.Collections.Generic;
using UnityEngine;
[CreateAssetMenu]
public class RecipeSO : ScriptableObject
{
public List<KitchenObjectSO> KitchenObjectSOList;
public string RecipeName;
public int Points;
}