summaryrefslogtreecommitdiff
path: root/src/station_map.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/station_map.h')
-rw-r--r--src/station_map.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/station_map.h b/src/station_map.h
index f4b3b691a..52e72657d 100644
--- a/src/station_map.h
+++ b/src/station_map.h
@@ -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);
/**