(svn r18857) -Codechange: don't rely on the fact that all airports are rectangular

This commit is contained in:
yexo
2010-01-18 12:32:50 +00:00
parent 4655855d46
commit 1486552f99
3 changed files with 20 additions and 1 deletions

View File

@@ -184,6 +184,16 @@ static inline bool IsAirport(TileIndex t)
return GetStationType(t) == STATION_AIRPORT;
}
/**
* Is this tile a station tile and an airport tile?
* @param t the tile to get the information from
* @return true if and only if the tile is an airport
*/
static inline bool IsAirportTile(TileIndex t)
{
return IsTileType(t, MP_STATION) && IsAirport(t);
}
bool IsHangar(TileIndex t);
/**