src/economy_type.h
branchnoai
changeset 11126 72d4c9314c72
parent 10829 8a0ec0f0f928
equal deleted inserted replaced
11111:1b984dab8cec 11126:72d4c9314c72
    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