Cutting Recipies
This commit is contained in:
parent
500f8f5f2a
commit
ccaed6e70d
19 changed files with 425 additions and 4 deletions
12
Assets/Scripts/CuttingRecipeSO.cs
Normal file
12
Assets/Scripts/CuttingRecipeSO.cs
Normal file
|
@ -0,0 +1,12 @@
|
|||
using System.Collections;
|
||||
using System.Collections.Generic;
|
||||
using UnityEngine;
|
||||
|
||||
[CreateAssetMenu()]
|
||||
public class CuttingRecipeSO : ScriptableObject
|
||||
{
|
||||
|
||||
public KitchenObjectSO input;
|
||||
public KitchenObjectSO output;
|
||||
|
||||
}
|
Reference in a new issue