airport.h
changeset 222 b88456001397
parent 0 29654efe3188
child 699 02b8b9c9194f
--- a/airport.h	Sun Sep 12 20:28:52 2004 +0000
+++ b/airport.h	Sun Sep 12 21:49:38 2004 +0000
@@ -25,15 +25,15 @@
 
 // Finite sTate mAchine --> FTA
 typedef struct AirportFTAClass {
-	byte nofelements;						// number of positions the airport consists of
-	byte nofterminals;					// number of terminals this airport has
-	byte nofterminalgroups;			// terminals belong to so many groups (MAX is the nofterminals)
-	byte nofhelipads;						// number of helipads this airport has
-	byte nofhelipadgroups;			// helipads belong to so many groups (MAX is the nofhelipads)
-	byte entry_point;						// when an airplane arrives at this airport, enter it at position entry_point
-	byte acc_planes;						// accept airplanes or helicopters or both
-	uint16 *airport_depots;			// gives the position of the depots on the airports
-	struct AirportFTA *layout;	// state machine for airport
+	byte nofelements;							// number of positions the airport consists of
+	byte nofterminals;						// number of terminals this airport has
+	byte nofterminalgroups;				// terminals belong to so many groups (MAX is the nofterminals)
+	byte nofhelipads;							// number of helipads this airport has
+	byte nofhelipadgroups;				// helipads belong to so many groups (MAX is the nofhelipads)
+	byte entry_point;							// when an airplane arrives at this airport, enter it at position entry_point
+	byte acc_planes;							// accept airplanes or helicopters or both
+	const uint16 *airport_depots;	// gives the position of the depots on the airports
+	struct AirportFTA *layout;		// state machine for airport
 } AirportFTAClass;
 
 // internal structure used in openttd - Finite sTate mAchine --> FTA