town.h
changeset 1784 6eb3ab1bc33c
parent 1377 2a418162176e
child 1977 4392ae3d8e31
--- a/town.h	Mon May 09 19:56:08 2005 +0000
+++ b/town.h	Mon May 09 22:33:00 2005 +0000
@@ -157,6 +157,11 @@
 	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)