* Clear a tile from the tile area. * @param tile Tile to clear */
| 87 | * @param tile Tile to clear |
| 88 | */ |
| 89 | inline void ClrTile(TileIndex tile) |
| 90 | { |
| 91 | assert(this->Contains(tile)); |
| 92 | this->data[Index(tile)] = false; |
| 93 | } |
| 94 | |
| 95 | /** |
| 96 | * Test if a tile is part of the tile area. |