| 517 | struct BuildDocksDepotWindow : public PickerWindowBase { |
| 518 | private: |
| 519 | static void UpdateDocksDirection() |
| 520 | { |
| 521 | if (_ship_depot_direction != AXIS_X) { |
| 522 | SetTileSelectSize(1, 2); |
| 523 | } else { |
| 524 | SetTileSelectSize(2, 1); |
| 525 | } |
| 526 | } |
| 527 | |
| 528 | public: |
| 529 | BuildDocksDepotWindow(WindowDesc &desc, Window *parent) : PickerWindowBase(desc, parent) |
nothing calls this directly
no test coverage detected