diff options
Diffstat (limited to 'src/industry.h')
-rw-r--r-- | src/industry.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/industry.h b/src/industry.h index 404a4e25a..090f9267d 100644 --- a/src/industry.h +++ b/src/industry.h @@ -19,6 +19,7 @@ #include "tile_type.h" #include "company_type.h" #include "strings_type.h" +#include "subsidy_type.h" enum { INVALID_INDUSTRY = 0xFFFF, @@ -125,6 +126,8 @@ struct Industry : IndustryPool::PoolItem<&_industry_pool> { Year last_prod_year; ///< last year of production byte was_cargo_delivered; ///< flag that indicate this has been the closest industry chosen for cargo delivery by a station. see DeliverGoodsToIndustry + PartOfSubsidyByte part_of_subsidy; ///< NOSAVE: is this industry a source/destination of a subsidy? + OwnerByte founder; ///< Founder of the industry Date construction_date; ///< Date of the construction of the industry uint8 construction_type; ///< Way the industry was constructed (@see IndustryConstructionType) |