summaryrefslogtreecommitdiff
path: root/depot.h
diff options
context:
space:
mode:
Diffstat (limited to 'depot.h')
-rw-r--r--depot.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/depot.h b/depot.h
index 6d61a8883..614a3faba 100644
--- a/depot.h
+++ b/depot.h
@@ -56,6 +56,8 @@ static inline void DeleteDepot(Depot *depot)
depot->xy = 0;
}
+void ShowDepotWindow(TileIndex tile, byte type);
+
#define FOR_ALL_DEPOTS_FROM(d, start) for (d = GetDepot(start); d != NULL; d = (d->index + 1 < GetDepotPoolSize()) ? GetDepot(d->index + 1) : NULL) if (IsValidDepot(d))
#define FOR_ALL_DEPOTS(d) FOR_ALL_DEPOTS_FROM(d, 0)