diff options
Diffstat (limited to 'src/economy_base.h')
-rw-r--r-- | src/economy_base.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/economy_base.h b/src/economy_base.h index 742d01878..1e32f3b08 100644 --- a/src/economy_base.h +++ b/src/economy_base.h @@ -24,9 +24,10 @@ extern CargoPaymentPool _cargo_payment_pool; * Helper class to perform the cargo payment. */ struct CargoPayment : CargoPaymentPool::PoolItem<&_cargo_payment_pool> { - Vehicle *front; ///< The front vehicle to do the payment of - Money route_profit; ///< The amount of money to add/remove from the bank account - Money visual_profit; ///< The visual profit to show + Vehicle *front; ///< The front vehicle to do the payment of + Money route_profit; ///< The amount of money to add/remove from the bank account + Money visual_profit; ///< The visual (non-transfer) profit to show + Money transfer_profit; ///< The transfer profit to show /* Unsaved variables */ Company *owner; ///< The owner of the vehicle |