* Remove the bridge over the given axis. * @param t the tile to remove the bridge from * @param a the axis of the bridge to remove */
| 92 | * @param a the axis of the bridge to remove |
| 93 | */ |
| 94 | inline void ClearSingleBridgeMiddle(Tile t, Axis a) |
| 95 | { |
| 96 | ClrBit(t.type(), 2 + a); |
| 97 | } |
| 98 | |
| 99 | /** |
| 100 | * Removes bridges from the given, that is bridges along the X and Y axis. |
no test coverage detected