Initial commit
This commit is contained in:
10
Assets/Scripts/Interfaces/IInteractable.cs
Normal file
10
Assets/Scripts/Interfaces/IInteractable.cs
Normal file
@@ -0,0 +1,10 @@
|
||||
using UnityEngine;
|
||||
|
||||
public interface IInteractable
|
||||
{
|
||||
void Interact(GameObject interactor);
|
||||
bool CanInteract(GameObject interactor);
|
||||
string GetInteractionPrompt();
|
||||
void OnHighlight();
|
||||
void OnUnhighlight();
|
||||
}
|
||||
Reference in New Issue
Block a user