diff options
author | yexo <yexo@openttd.org> | 2010-02-22 14:15:48 +0000 |
---|---|---|
committer | yexo <yexo@openttd.org> | 2010-02-22 14:15:48 +0000 |
commit | 683ad53d21871e49bd8f6071db25e8ab1ad4485b (patch) | |
tree | 2ceff6d0297c9f2f4163d14ea0224ea9a9f68560 /src/industrytype.h | |
parent | 3530156e15b6770894a6e07d065f4f771934e83a (diff) | |
download | openttd-683ad53d21871e49bd8f6071db25e8ab1ad4485b.tar.xz |
(svn r19193) -Codechange: increase the maximum number of airport tiles to 256 and introduce AirportTileOverrideManager
Diffstat (limited to 'src/industrytype.h')
-rw-r--r-- | src/industrytype.h | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/src/industrytype.h b/src/industrytype.h index 6ee5101e6..c3570d785 100644 --- a/src/industrytype.h +++ b/src/industrytype.h @@ -19,6 +19,7 @@ #include "landscape_type.h" #include "strings_type.h" #include "cargo_type.h" +#include "newgrf_commons.h" enum { CLEAN_RANDOMSOUNDS, ///< Free the dynamically allocated sounds table @@ -94,15 +95,6 @@ struct IndustryTileTable { IndustryGfx gfx; }; -/** Data related to the handling of grf files. Common to both industry and industry tile */ -struct GRFFileProps { - uint16 subst_id; - uint16 local_id; ///< id defined by the grf file for this industry - struct SpriteGroup *spritegroup; ///< pointer to the different sprites of the industry - const struct GRFFile *grffile; ///< grf file that introduced this industry - uint16 override; ///< id of the entity been replaced by -}; - /** * Defines the data structure for constructing industry. */ |