* Show land information window. * @param tile The tile to show information about. */
| 319 | * @param tile The tile to show information about. |
| 320 | */ |
| 321 | void ShowLandInfo(TileIndex tile) |
| 322 | { |
| 323 | CloseWindowById(WC_LAND_INFO, 0); |
| 324 | new LandInfoWindow(tile); |
| 325 | } |
| 326 | |
| 327 | static constexpr std::initializer_list<NWidgetPart> _nested_about_widgets = { |
| 328 | NWidget(NWID_HORIZONTAL), |
no test coverage detected