SunsetHigh.Character.inRangeCollide C# (CSharp) Method

inRangeCollide() public method

Checks if this Character is in a given range for collisions
public inRangeCollide ( IInteractable other ) : bool
other IInteractable The other Sprite to range check against
return bool
        public bool inRangeCollide(IInteractable other)
        {
            return inRange(other, COLLISION_OFFSET);
        }