* Test if a tile is part of the tile area. * @param tile Tile to check */
| 97 | * @param tile Tile to check |
| 98 | */ |
| 99 | inline bool HasTile(TileIndex tile) const |
| 100 | { |
| 101 | return this->Contains(tile) && this->data[Index(tile)]; |
| 102 | } |
| 103 | }; |
| 104 | |
| 105 | /** Iterator to iterate over all tiles belonging to a bitmaptilearea. */ |
no test coverage detected