Create frying recipes

This commit is contained in:
BuyMyMojo 2023-03-02 03:16:34 +11:00
parent 895bc4e17c
commit 44d3bb1a03
21 changed files with 786 additions and 6 deletions

View 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;
}