operator - method

Block operator -(
  1. Block other
)

Implementation

Block operator -(Block other) {
  return Block(x - other.x, y - other.y);
}