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();
|
||||
}
|
||||
2
Assets/Scripts/Interfaces/IInteractable.cs.meta
Normal file
2
Assets/Scripts/Interfaces/IInteractable.cs.meta
Normal file
@@ -0,0 +1,2 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 3e4925da55418084eb4c49cceb0bd37f
|
||||
Reference in New Issue
Block a user