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