* Change the owner of a tile * @param tile Tile to change * @param old_owner Current owner of the tile * @param new_owner New owner of the tile */
| 569 | * @param new_owner New owner of the tile |
| 570 | */ |
| 571 | void ChangeTileOwner(TileIndex tile, Owner old_owner, Owner new_owner) |
| 572 | { |
| 573 | _tile_type_procs[GetTileType(tile)]->change_tile_owner_proc(tile, old_owner, new_owner); |
| 574 | } |
| 575 | |
| 576 | void GetTileDesc(TileIndex tile, TileDesc &td) |
| 577 | { |
no test coverage detected