Create frying recipes
This commit is contained in:
parent
895bc4e17c
commit
44d3bb1a03
21 changed files with 786 additions and 6 deletions
13
Assets/Scripts/ScriptableObjects/FryingRecipeSO.cs
Normal file
13
Assets/Scripts/ScriptableObjects/FryingRecipeSO.cs
Normal file
|
@ -0,0 +1,13 @@
|
|||
using System.Collections;
|
||||
using System.Collections.Generic;
|
||||
using UnityEngine;
|
||||
|
||||
[CreateAssetMenu()]
|
||||
public class FryingRecipeSO : ScriptableObject
|
||||
{
|
||||
|
||||
public KitchenObjectSO input;
|
||||
public KitchenObjectSO output;
|
||||
public float fryingTimerMax;
|
||||
|
||||
}
|
Reference in a new issue