Made ingredients part of dishes

This commit is contained in:
2024-03-06 09:31:48 +01:00
parent 1ab8cea2f5
commit 90781ef559
5 changed files with 208 additions and 9 deletions

21
Assets/Scripts/Dish.cs Normal file
View File

@@ -0,0 +1,21 @@
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class Dish : MonoBehaviour
{
public List <GameObject> RequiredIngredients;
// Start is called before the first frame update
void Start()
{
}
// Update is called once per frame
void Update()
{
}
}