namespace Interactions
{
/// <summary>
/// Interactable that immediately completes when the character arrives at the interaction point.
/// Useful for simple trigger interactions that don't require additional logic.
/// </summary>
public class OneClickInteraction : InteractableBase
/// Main interaction logic: Simply return success.
protected override bool DoInteraction()
return true;
}