Files
GameDevTVTutFPS/Assets/Scripts/Interfaces/IInteractable.cs

10 lines
226 B
C#
Raw Normal View History

2026-01-13 15:43:33 +00:00
using UnityEngine;
public interface IInteractable
{
void Interact(GameObject interactor);
bool CanInteract(GameObject interactor);
string GetInteractionPrompt();
void OnHighlight();
void OnUnhighlight();
}