summaryrefslogtreecommitdiff
path: root/src/tile_cmd.h
diff options
context:
space:
mode:
authoryexo <yexo@openttd.org>2010-02-22 14:17:17 +0000
committeryexo <yexo@openttd.org>2010-02-22 14:17:17 +0000
commit06dc421f2ab025aa248a372d48c5701d7a9e2ff9 (patch)
tree7542a38804ee09694b5ea606a7a74a861c1375b5 /src/tile_cmd.h
parent698737f485cfbdd1605faecd50395bb67f7dac75 (diff)
downloadopenttd-06dc421f2ab025aa248a372d48c5701d7a9e2ff9.tar.xz
(svn r19199) -Codechange: add a 'name'-property to airport tiles
Diffstat (limited to 'src/tile_cmd.h')
-rw-r--r--src/tile_cmd.h17
1 files changed, 9 insertions, 8 deletions
diff --git a/src/tile_cmd.h b/src/tile_cmd.h
index d8eede25d..630da4e0f 100644
--- a/src/tile_cmd.h
+++ b/src/tile_cmd.h
@@ -51,14 +51,15 @@ struct TileInfo {
/** Tile description for the 'land area information' tool */
struct TileDesc {
- StringID str; ///< Description of the tile
- Owner owner[4]; ///< Name of the owner(s)
- StringID owner_type[4]; ///< Type of each owner
- Date build_date; ///< Date of construction of tile contents
- StringID station_class; ///< Class of station
- StringID station_name; ///< Type of station within the class
- const char *grf; ///< newGRF used for the tile contents
- uint64 dparam[2]; ///< Parameters of the \a str string
+ StringID str; ///< Description of the tile
+ Owner owner[4]; ///< Name of the owner(s)
+ StringID owner_type[4]; ///< Type of each owner
+ Date build_date; ///< Date of construction of tile contents
+ StringID station_class; ///< Class of station
+ StringID station_name; ///< Type of station within the class
+ StringID airport_tile_name; ///< Name of the airport tile
+ const char *grf; ///< newGRF used for the tile contents
+ uint64 dparam[2]; ///< Parameters of the \a str string
};
/**