Allow proper moving of kitchen objects and player pickup
This commit is contained in:
parent
1729ddf5c6
commit
234e00cb9b
10 changed files with 213 additions and 11 deletions
16
Assets/Scripts/IKitchenObjectParent.cs
Normal file
16
Assets/Scripts/IKitchenObjectParent.cs
Normal file
|
@ -0,0 +1,16 @@
|
|||
using System.Collections;
|
||||
using System.Collections.Generic;
|
||||
using UnityEngine;
|
||||
|
||||
public interface IKitchenObjectParent
|
||||
{
|
||||
public Transform GetKitchenObjectFollowTransform();
|
||||
|
||||
public void SetKitchenObject(KitchenObject kitchenObject);
|
||||
|
||||
public KitchenObject GetKitchenObject();
|
||||
|
||||
public void ClearKitchenObject();
|
||||
|
||||
public bool HasKitchenObject();
|
||||
}
|
Reference in a new issue