Files
ProjectMD/Assets/Scripts/IInteractable.cs

6 lines
96 B
C#

using UnityEngine;
public interface IInteractable
{
void Interact(GameObject interactor);
}