Files

8 lines
175 B
C#
Raw Permalink Normal View History

2026-03-26 20:27:19 +07:00
namespace OnlyScove.Scripts
{
public interface IInteractable
{
string InteractionPrompt { get; }
2026-06-04 11:50:09 +07:00
// void OnInteract(PlayerStateMachine player);
2026-03-26 20:27:19 +07:00
}
}