Files
GameDevTVTutFPS/Assets/Scripts/Interfaces/IInteractable.cs
2026-01-13 15:43:33 +00:00

10 lines
226 B
C#

using UnityEngine;
public interface IInteractable
{
void Interact(GameObject interactor);
bool CanInteract(GameObject interactor);
string GetInteractionPrompt();
void OnHighlight();
void OnUnhighlight();
}