| 157 | } |
| 158 | |
| 159 | void Save() const override |
| 160 | { |
| 161 | SlTableHeader(_ai_company_desc); |
| 162 | |
| 163 | for (CompanyID i = CompanyID::Begin(); i < MAX_COMPANIES; ++i) { |
| 164 | SlSetArrayIndex(i); |
| 165 | SlAutolength(SaveReal_AIPL, i.base()); |
| 166 | } |
| 167 | } |
| 168 | }; |
| 169 | |
| 170 | static const AIPLChunkHandler AIPL; |
nothing calls this directly
no test coverage detected