f8590432ba
Created assemblies for the new design code. Relocated legacy scripts into a legacy folder and made a "new_design" folder for new design.
24 lines
451 B
C#
24 lines
451 B
C#
namespace Item
|
|
{
|
|
public class GenericInteractable : InteractableItem
|
|
{
|
|
private void Awake()
|
|
{
|
|
BaseAwake();
|
|
}
|
|
|
|
private void Start()
|
|
{
|
|
}
|
|
|
|
public override bool Interact()
|
|
{
|
|
return false;
|
|
}
|
|
|
|
public override bool Interact(ref Inventory inventory, ref HeavyInteractableItem heavyInvent)
|
|
{
|
|
return Interact();
|
|
}
|
|
}
|
|
} |