8 lines
172 B
C#
8 lines
172 B
C#
|
|
namespace OnlyScove.Scripts
|
||
|
|
{
|
||
|
|
public interface IInteractable
|
||
|
|
{
|
||
|
|
string InteractionPrompt { get; }
|
||
|
|
void OnInteract(PlayerStateMachine player);
|
||
|
|
}
|
||
|
|
}
|