equal
deleted
inserted
replaced
13 |
13 |
14 struct Economy { |
14 struct Economy { |
15 Money max_loan; ///< Maximum possible loan |
15 Money max_loan; ///< Maximum possible loan |
16 Money max_loan_unround; ///< Economy fluctuation status |
16 Money max_loan_unround; ///< Economy fluctuation status |
17 uint16 max_loan_unround_fract; ///< Fraction of the unrounded max loan |
17 uint16 max_loan_unround_fract; ///< Fraction of the unrounded max loan |
18 int fluct; |
18 int16 fluct; |
19 byte interest_rate; ///< Interest |
19 byte interest_rate; ///< Interest |
20 byte infl_amount; ///< inflation amount |
20 byte infl_amount; ///< inflation amount |
21 byte infl_amount_pr; ///< inflation rate for payment rates |
21 byte infl_amount_pr; ///< inflation rate for payment rates |
22 }; |
22 }; |
23 |
23 |