12 lines
231 B
C#
12 lines
231 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
[CreateAssetMenu()]
|
|
public class RecipeSO : ScriptableObject
|
|
{
|
|
|
|
public List<KitchenObjectSO> kitchenObjectSoList;
|
|
public string recipeName;
|
|
|
|
}
|