* Determines the default cargo capacity of an engine for display purposes. * * For planes carrying both passenger and mail this is the passenger capacity. * For multiheaded engines this is the capacity of both heads. * For articulated engines use GetCapacityOfArticulatedParts * * @param mail_capacity returns secondary cargo (mail) capacity of aircraft * @return The default capacity
| 113 | * @see GetDefaultCargoType |
| 114 | */ |
| 115 | uint GetDisplayDefaultCapacity(uint16_t *mail_capacity = nullptr) const |
| 116 | { |
| 117 | return this->DetermineCapacity(nullptr, mail_capacity); |
| 118 | } |
| 119 | |
| 120 | Money GetRunningCost() const; |
| 121 | Money GetCost() const; |
no test coverage detected