This commit is contained in:
magn9775
2024-03-06 08:48:48 +01:00
parent 5079402d9b
commit 4c2427db10
2 changed files with 29 additions and 0 deletions

18
Assets/Scripts/Cooking.cs Normal file
View File

@@ -0,0 +1,18 @@
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class Cooking : MonoBehaviour
{
void GetIngredients()
{
}
void Update()
{
GetIngredients()
}
}