Kitchen object creation and spawning
This commit is contained in:
parent
989648c00b
commit
1729ddf5c6
22 changed files with 462 additions and 3 deletions
12
Assets/Scripts/KitchenObject.cs
Normal file
12
Assets/Scripts/KitchenObject.cs
Normal file
|
@ -0,0 +1,12 @@
|
|||
using System.Collections;
|
||||
using System.Collections.Generic;
|
||||
using UnityEngine;
|
||||
|
||||
public class KitchenObject : MonoBehaviour
|
||||
{
|
||||
|
||||
[SerializeField] private KitchenObjectSO kitchenObjectSO;
|
||||
|
||||
public KitchenObjectSO GetKitchenObjectSO() { return kitchenObjectSO; }
|
||||
|
||||
}
|
Reference in a new issue