summaryrefslogtreecommitdiff
path: root/src/station_base.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/station_base.h')
-rw-r--r--src/station_base.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/station_base.h b/src/station_base.h
index 4bdc9270c..0a0019af2 100644
--- a/src/station_base.h
+++ b/src/station_base.h
@@ -107,6 +107,7 @@ struct StationRect : public Rect {
StationRect& operator = (Rect src);
};
+/** Station data structure */
struct Station : PoolItem<Station, StationID, &_Station_pool> {
public:
RoadStop *GetPrimaryRoadStop(RoadStopType type) const
@@ -150,13 +151,13 @@ public:
uint8 num_specs;
StationSpecList *speclist;
- Date build_date;
+ Date build_date; ///< Date of construction
uint64 airport_flags; ///< stores which blocks on the airport are taken. was 16 bit earlier on, then 32
byte last_vehicle_type;
std::list<Vehicle *> loading_vehicles;
- GoodsEntry goods[NUM_CARGO];
+ GoodsEntry goods[NUM_CARGO]; ///< Goods at this station
uint16 random_bits;
byte waiting_triggers;