* Get bridgeable tile information for a station type. * @param type Station type. * @return bridgeable tile information. */
| 907 | * @return bridgeable tile information. |
| 908 | */ |
| 909 | static std::span<const BridgeableTileInfo> GetStationBridgeableTileInfo(StationType type) |
| 910 | { |
| 911 | return _station_bridgeable_info[to_underlying(type)]; |
| 912 | } |
| 913 | |
| 914 | /** |
| 915 | * Test if a rail station can be built below a bridge. |
no test coverage detected