mirrorVertical method

bool mirrorVertical()

If the column is less than or equal to 2, then mirror the piece left to right, otherwise mirror the piece right to left

Returns: A boolean value.

Implementation

bool mirrorVertical() {
  // if (move.column <= 2) {
  //   return
  // }
  mirrorVerticalLeftRight();

  return mirrorVerticalRightLeft();
}