Update the virtual coords needed to draw the town sign for all towns. */
| 420 | |
| 421 | /** Update the virtual coords needed to draw the town sign for all towns. */ |
| 422 | void UpdateAllTownVirtCoords() |
| 423 | { |
| 424 | for (Town *t : Town::Iterate()) { |
| 425 | t->UpdateVirtCoord(); |
| 426 | } |
| 427 | } |
| 428 | |
| 429 | /** Clear the cached_name of all towns. */ |
| 430 | void ClearAllTownCachedNames() |
no test coverage detected