SunsetHigh.Character.inRangeAction C# (CSharp) Method

inRangeAction() public method

Checks if this Character is in a given range to perform an action such as talking or pickpocketing
public inRangeAction ( IInteractable other ) : bool
other IInteractable The other Sprite to range check against
return bool
        public bool inRangeAction(IInteractable other)
        {
            return inRange(other, ACTION_OFFSET);
        }