summaryrefslogtreecommitdiff
path: root/src/industry.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/industry.h')
-rw-r--r--src/industry.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/industry.h b/src/industry.h
index b31bbd01e..85d86a110 100644
--- a/src/industry.h
+++ b/src/industry.h
@@ -78,6 +78,16 @@ struct Industry : IndustryPool::PoolItem<&_industry_pool> {
void RecomputeProductionMultipliers();
/**
+ * Check if a given tile belongs to this industry.
+ * @param tile The tile to check.
+ * @return True if the tils is part of this industry.
+ */
+ inline bool TileBelongsToIndustry(TileIndex tile) const
+ {
+ return IsTileType(tile, MP_INDUSTRY) && GetIndustryIndex(tile) == this->index;
+ }
+
+ /**
* Get the industry of the given tile
* @param tile the tile to get the industry from
* @pre IsTileType(t, MP_INDUSTRY)