summaryrefslogtreecommitdiff
path: root/town.h
diff options
context:
space:
mode:
Diffstat (limited to 'town.h')
-rw-r--r--town.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/town.h b/town.h
index b4a588de1..b3e0d4da1 100644
--- a/town.h
+++ b/town.h
@@ -157,6 +157,11 @@ static inline uint16 GetTownPoolSize(void)
return _town_pool.total_items;
}
+static inline bool IsTownIndex(uint index)
+{
+ return index < GetTownPoolSize();
+}
+
#define FOR_ALL_TOWNS_FROM(t, start) for (t = GetTown(start); t != NULL; t = (t->index + 1 < GetTownPoolSize()) ? GetTown(t->index + 1) : NULL)
#define FOR_ALL_TOWNS(t) FOR_ALL_TOWNS_FROM(t, 0)