9 lines
246 B
C#
9 lines
246 B
C#
using UnityEngine;
|
|
|
|
public abstract class HeavyItemReceiver : InteractableItem
|
|
{
|
|
[SerializeField] [Tooltip("Specify the keyword search in the name of the item!")]
|
|
protected string searchString;
|
|
|
|
protected HeavyInteractableItem item;
|
|
} |