Check nearby station/industry lists and catchments in CheckCaches

This commit is contained in:
Jonathan G Rennison
2019-05-22 18:33:30 +01:00
parent bf73535eed
commit bfff4571a2
3 changed files with 54 additions and 1 deletions

View File

@@ -103,6 +103,11 @@ public:
{
return this->Contains(tile) && this->data[Index(tile)];
}
inline bool operator==(const BitmapTileArea &other) const
{
return TileArea::operator==(other) && this->data == other.data;
}
};
/** Iterator to iterate over all tiles belonging to a bitmaptilearea. */