16 lines
364 B
C#
16 lines
364 B
C#
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();
|
|
}
|