* Add a tile as part of the tile area. * @param tile Tile to add. */
| 77 | * @param tile Tile to add. |
| 78 | */ |
| 79 | inline void SetTile(TileIndex tile) |
| 80 | { |
| 81 | assert(this->Contains(tile)); |
| 82 | this->data[Index(tile)] = true; |
| 83 | } |
| 84 | |
| 85 | /** |
| 86 | * Clear a tile from the tile area. |
no test coverage detected