(svn r20331) -Doc: some more airport-related code

This commit is contained in:
yexo
2010-08-02 23:09:38 +00:00
parent b5b5c21ee5
commit 0cd442ea18
3 changed files with 16 additions and 12 deletions

View File

@@ -20,9 +20,10 @@
/* Copy from station_map.h */
typedef byte StationGfx;
/** Tile-offset / AirportTileID pair. */
struct AirportTileTable {
TileIndexDiffC ti;
StationGfx gfx;
TileIndexDiffC ti; ///< Tile offset from the top-most airport tile.
StationGfx gfx; ///< AirportTile to use for this tile.
};
/** List of default airport classes. */
@@ -48,8 +49,8 @@ enum TTDPAirportType {
/** A list of all hangar tiles in an airport */
struct HangarTileTable {
TileIndexDiffC ti;
byte hangar_num;
TileIndexDiffC ti; ///< Tile offset from the top-most airport tile.
byte hangar_num; ///< The hanger to which this tile belongs.
};
/**