* Finds the southern end of a bridge starting at a middle tile * @param t the bridge tile to find the bridge ramp for */
| 47 | * @param t the bridge tile to find the bridge ramp for |
| 48 | */ |
| 49 | TileIndex GetSouthernBridgeEnd(TileIndex t) |
| 50 | { |
| 51 | return GetBridgeEnd(t, AxisToDiagDir(GetBridgeAxis(t))); |
| 52 | } |
| 53 | |
| 54 | |
| 55 | /** |
no test coverage detected