diff options
Diffstat (limited to 'src/airport.h')
-rw-r--r-- | src/airport.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/airport.h b/src/airport.h index ce210301d..3abe056b6 100644 --- a/src/airport.h +++ b/src/airport.h @@ -139,7 +139,8 @@ typedef struct AirportFTAClass { byte nof_depots, uint size_x, uint size_y, - byte delta_z + byte delta_z, + byte catchment ); ~AirportFTAClass(); @@ -162,6 +163,7 @@ typedef struct AirportFTAClass { byte size_x; byte size_y; byte delta_z; // Z adjustment for helicopter pads + byte catchment; } AirportFTAClass; DECLARE_ENUM_AS_BIT_SET(AirportFTAClass::Flags) |