* Handle click on the entry in the Industry menu. * * @param index Menu entry number. * @return #CBF_NONE */
| 753 | * @return #CBF_NONE |
| 754 | */ |
| 755 | static CallBackFunction MenuClickIndustry(int index) |
| 756 | { |
| 757 | switch (index) { |
| 758 | case 0: ShowIndustryDirectory(); break; |
| 759 | case 1: ShowIndustryCargoesWindow(); break; |
| 760 | case 2: ShowBuildIndustryWindow(); break; |
| 761 | } |
| 762 | return CBF_NONE; |
| 763 | } |
| 764 | |
| 765 | /* --- Trains button menu + 1 helper function for all vehicles. --- */ |
| 766 |
nothing calls this directly
no test coverage detected