Add Delivery Manager logic and random recipe request generation
This commit is contained in:
parent
7e1cbafa47
commit
8c5f4f2acf
21 changed files with 360 additions and 13 deletions
10
Assets/Scripts/ScriptableObjects/RecipeListSO.cs
Normal file
10
Assets/Scripts/ScriptableObjects/RecipeListSO.cs
Normal file
|
@ -0,0 +1,10 @@
|
|||
using System.Collections;
|
||||
using System.Collections.Generic;
|
||||
using UnityEngine;
|
||||
|
||||
// Commented out for saftey. There should only be one master list of valid recipes.
|
||||
// [CreateAssetMenu()]
|
||||
public class RecipeListSO : ScriptableObject
|
||||
{
|
||||
public List<RecipeSO> recipeSOList;
|
||||
}
|
Reference in a new issue