chore: initial commit
This commit is contained in:
13
Assets/Scripts/World/IInteractable.cs
Normal file
13
Assets/Scripts/World/IInteractable.cs
Normal file
@@ -0,0 +1,13 @@
|
||||
using UnityEngine;
|
||||
|
||||
namespace BaseGames.World
|
||||
{
|
||||
public interface IInteractable
|
||||
{
|
||||
bool CanInteract { get; }
|
||||
string InteractPrompt { get; }
|
||||
void Interact(Transform player);
|
||||
void OnPlayerEnterRange(Transform player);
|
||||
void OnPlayerExitRange();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user