* Adds a tile to the "tile_table" in a TerraformerState. * * @param ts TerraformerState. * @param tile Tile. * @ingroup dirty */
| 68 | * @ingroup dirty |
| 69 | */ |
| 70 | static void TerraformAddDirtyTile(TerraformerState *ts, TileIndex tile) |
| 71 | { |
| 72 | ts->dirty_tiles.insert(tile); |
| 73 | } |
| 74 | |
| 75 | /** |
| 76 | * Adds all tiles that incident with the north corner of a specific tile to the "tile_table" in a TerraformerState. |
no test coverage detected