overlaps method

bool overlaps(
  1. TileIdentity other
)

Implementation

bool overlaps(TileIdentity other) {
  return contains(other) || other.contains(this);
}