Add Delivery Manager logic and random recipe request generation

This commit is contained in:
BuyMyMojo 2023-03-03 02:53:43 +11:00
parent 7e1cbafa47
commit 8c5f4f2acf
21 changed files with 360 additions and 13 deletions

View file

@ -0,0 +1,12 @@
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
[CreateAssetMenu()]
public class RecipeSO : ScriptableObject
{
public List<KitchenObjectSO> kitchenObjectSoList;
public string recipeName;
}