* Removes bridges from the given, that is bridges along the X and Y axis. * @param t the tile to remove the bridge from */
| 101 | * @param t the tile to remove the bridge from |
| 102 | */ |
| 103 | inline void ClearBridgeMiddle(Tile t) |
| 104 | { |
| 105 | ClearSingleBridgeMiddle(t, AXIS_X); |
| 106 | ClearSingleBridgeMiddle(t, AXIS_Y); |
| 107 | } |
| 108 | |
| 109 | /** |
| 110 | * Set that there is a bridge over the given axis. |
no test coverage detected