summaryrefslogtreecommitdiff
path: root/src/airport.h
diff options
context:
space:
mode:
authoryexo <yexo@openttd.org>2009-06-12 14:53:57 +0000
committeryexo <yexo@openttd.org>2009-06-12 14:53:57 +0000
commit4b349579877e13eff8fc48ae9e003222f794cdba (patch)
tree841c4b0bfdff66629fbcb4ebcf89a0a501d25608 /src/airport.h
parent88a20b7ea2734eb3d79b21b7a8ac8926f18967a1 (diff)
downloadopenttd-4b349579877e13eff8fc48ae9e003222f794cdba.tar.xz
(svn r16566) -Codechange: enumify all airport tiles
Diffstat (limited to 'src/airport.h')
-rw-r--r--src/airport.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/airport.h b/src/airport.h
index 47f852a17..e459187f8 100644
--- a/src/airport.h
+++ b/src/airport.h
@@ -27,6 +27,7 @@ enum {
AT_HELIDEPOT = 6,
AT_INTERCON = 7,
AT_HELISTATION = 8,
+ NUM_AIRPORTS = 9,
AT_OILRIG = 15,
AT_DUMMY = 255
};
@@ -200,4 +201,6 @@ const AirportFTAClass *GetAirport(const byte airport_type);
*/
uint32 GetValidAirports();
+extern const byte * const _airport_sections[];
+
#endif /* AIRPORT_H */