File diff r2260:e8d302877e4c → r2261:e6fb9fd7ed61
economy.h
Show inline comments
 
@@ -49,20 +49,8 @@ typedef struct ScoreInfo {
 
    int score;			// How much score it will give
 
} ScoreInfo;
 

	
 
static const ScoreInfo score_info[] = {
 
    {SCORE_VEHICLES,		120, 			100},
 
    {SCORE_STATIONS,		80, 			100},
 
    {SCORE_MIN_PROFIT,	10000,		100},
 
    {SCORE_MIN_INCOME,	50000,		50},
 
    {SCORE_MAX_INCOME,	100000,		100},
 
    {SCORE_DELIVERED,		40000, 		400},
 
    {SCORE_CARGO,				8,				50},
 
    {SCORE_MONEY,				10000000,	50},
 
    {SCORE_LOAN,				250000,		50},
 
    {SCORE_TOTAL,				0,				0}
 
};
 

	
 
int _score_part[MAX_PLAYERS][NUM_SCORE];
 
extern const ScoreInfo _score_info[];
 
extern int _score_part[MAX_PLAYERS][NUM_SCORE];
 

	
 
int UpdateCompanyRatingAndValue(Player *p, bool update);
 
void UpdatePlayerHouse(Player *p, uint score);