File diff r23538:8df50944b27a → r23539:bce8329ee42d
src/newgrf.h
Show inline comments
 
@@ -113,28 +113,28 @@ struct GRFFile : ZeroedMemoryAllocator {
 
	struct HouseSpec **housespec;
 
	struct IndustrySpec **industryspec;
 
	struct IndustryTileSpec **indtspec;
 
	struct ObjectSpec **objectspec;
 
	struct AirportSpec **airportspec;
 
	struct AirportTileSpec **airtspec;
 

	
 
	uint32 param[0x80];
 
	uint param_end;  ///< one more than the highest set parameter
 

	
 
	GRFLabel *label; ///< Pointer to the first label. This is a linked list, not an array.
 

	
 
	std::vector<CargoLabel> cargo_list;          ///< Cargo translation table (local ID -> label)
 
	std::vector<CargoLabel> cargo_list;             ///< Cargo translation table (local ID -> label)
 
	uint8 cargo_map[NUM_CARGO];                     ///< Inverse cargo translation table (CargoID -> local ID)
 

	
 
	std::vector<RailTypeLabel> railtype_list;    ///< Railtype translation table
 
	std::vector<RailTypeLabel> railtype_list;       ///< Railtype translation table
 
	RailTypeByte railtype_map[RAILTYPE_END];
 

	
 
	CanalProperties canal_local_properties[CF_END]; ///< Canal properties as set by this NewGRF
 

	
 
	struct LanguageMap *language_map; ///< Mappings related to the languages.
 

	
 
	int traininfo_vehicle_pitch;  ///< Vertical offset for draing train images in depot GUI and vehicle details
 
	uint traininfo_vehicle_width; ///< Width (in pixels) of a 8/8 train vehicle in depot GUI and vehicle details
 

	
 
	uint32 grf_features;                     ///< Bitset of GrfSpecFeature the grf uses
 
	PriceMultipliers price_base_multipliers; ///< Price base multipliers as set by the grf.