diff options
Diffstat (limited to 'src/town.h')
-rw-r--r-- | src/town.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/town.h b/src/town.h index 3cf060f69..b59bf505a 100644 --- a/src/town.h +++ b/src/town.h @@ -218,6 +218,8 @@ static inline void DeleteTown(Town *t) t->xy = 0; } +Town* CalcClosestTownFromTile(TileIndex tile, uint threshold); + #define FOR_ALL_TOWNS_FROM(t, start) for (t = GetTown(start); t != NULL; t = (t->index + 1U < GetTownPoolSize()) ? GetTown(t->index + 1U) : NULL) if (IsValidTown(t)) #define FOR_ALL_TOWNS(t) FOR_ALL_TOWNS_FROM(t, 0) |