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;
}