From 8166a531792c2e9cd7f789618879658941f17010 Mon Sep 17 00:00:00 2001 From: belugas Date: Mon, 10 Apr 2006 16:20:47 +0000 Subject: (svn r4347) CodeChange : Renamed IndustryType to IndustryLifeType. Cleanup step toward bringing accessors [G|S]etIndustrype --- industry.h | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'industry.h') diff --git a/industry.h b/industry.h index d2e67304c..7f3d216b9 100644 --- a/industry.h +++ b/industry.h @@ -65,6 +65,8 @@ VARDEF int _total_industries; // For the AI: the amount of industries active VARDEF uint16 *_industry_sort; VARDEF bool _industry_sort_dirty; +typedef uint8 IndustryType; + void DeleteIndustry(Industry *is); enum { @@ -107,4 +109,10 @@ enum { IT_SUGAR_MINE = 36, }; +typedef enum IndustryLifeTypes { + INDUSTRYLIFE_NOT_CLOSABLE, ///< Industry can never close + INDUSTRYLIFE_PRODUCTION, ///< Industry can close and change of production + INDUSTRYLIFE_CLOSABLE, ///< Industry can only close (no production change) +} IndustryLifeType; + #endif /* INDUSTRY_H */ -- cgit v1.2.3-54-g00ecf