File diff r22866:31c85ef6ecbd → r22867:9bff1c966805
src/base_station_base.h
Show inline comments
 
@@ -62,25 +62,25 @@ struct BaseStation : StationPool::PoolIt
 
	Town *town;                     ///< The town this station is associated with
 
	OwnerByte owner;                ///< The owner of this station
 
	StationFacilityByte facilities; ///< The facilities that this station has
 

	
 
	uint8 num_specs;                ///< Number of specs in the speclist
 
	StationSpecList *speclist;      ///< List of station specs of this station
 

	
 
	Date build_date;                ///< Date of construction
 

	
 
	uint16 random_bits;             ///< Random bits assigned to this station
 
	byte waiting_triggers;          ///< Waiting triggers (NewGRF) for this station
 
	uint8 cached_anim_triggers;     ///< NOSAVE: Combined animation trigger bitmask, used to determine if trigger processing should happen.
 
	uint32 cached_cargo_triggers;   ///< NOSAVE: Combined cargo trigger bitmask
 
	CargoTypes cached_cargo_triggers; ///< NOSAVE: Combined cargo trigger bitmask
 

	
 
	TileArea train_station;         ///< Tile area the train 'station' part covers
 
	StationRect rect;               ///< NOSAVE: Station spread out rectangle maintained by StationRect::xxx() functions
 

	
 
	/**
 
	 * Initialize the base station.
 
	 * @param tile The location of the station sign
 
	 */
 
	BaseStation(TileIndex tile) :
 
		xy(tile),
 
		train_station(INVALID_TILE, 0, 0)
 
	{