namespace Tilia.Interactions.Interactables.Interactors.Rule
{
///
/// Determines whether the Interactor is currently touching something.
///
public class InteractorIsTouchingRule : InteractorRule
{
///
protected override bool Accepts(InteractorFacade targetInteractorFacade)
{
return targetInteractorFacade.TouchedObjects.Count > 0;
}
}
}