| 1870 | |
| 1871 | |
| 1872 | static void StationGetSpecialString(StringBuilder &builder, StationFacilities x) |
| 1873 | { |
| 1874 | if (x.Test(StationFacility::Train)) builder.PutUtf8(SCC_TRAIN); |
| 1875 | if (x.Test(StationFacility::TruckStop)) builder.PutUtf8(SCC_LORRY); |
| 1876 | if (x.Test(StationFacility::BusStop)) builder.PutUtf8(SCC_BUS); |
| 1877 | if (x.Test(StationFacility::Dock)) builder.PutUtf8(SCC_SHIP); |
| 1878 | if (x.Test(StationFacility::Airport)) builder.PutUtf8(SCC_PLANE); |
| 1879 | } |
| 1880 | |
| 1881 | static const std::string_view _silly_company_names[] = { |
| 1882 | "Bloggs Brothers", |
no test coverage detected