f8590432ba
Created assemblies for the new design code. Relocated legacy scripts into a legacy folder and made a "new_design" folder for new design.
13 lines
297 B
C#
13 lines
297 B
C#
using UnityEngine;
|
|
|
|
namespace Item
|
|
{
|
|
public abstract class HeavyItemReceiver : InteractableItem
|
|
{
|
|
[SerializeField]
|
|
[Tooltip("Specify the keyword search in the name of the item!")]
|
|
protected string searchString;
|
|
|
|
protected HeavyInteractableItem item;
|
|
}
|
|
} |