File diff r10207:a1fc2f2a33db → r10208:ef8fcc3dc4ca
src/ai/trolly/trolly.cpp
Show inline comments
 
@@ -29,26 +29,26 @@
 
#include "../../depot_base.h"
 
#include "../../town.h"
 
#include "../../industry.h"
 
#include "../../station_base.h"
 
#include "../../engine_func.h"
 
#include "../../engine_base.h"
 
#include "../../gui.h"
 
#include "../../depot_base.h"
 
#include "../../vehicle_base.h"
 
#include "../../vehicle_func.h"
 
#include "../../date_func.h"
 
#include "../ai.h"
 
#include "../../player_base.h"
 
#include "../../player_func.h"
 
#include "../../company_base.h"
 
#include "../../company_func.h"
 

	
 
#include "table/strings.h"
 

	
 
CompanyAiNew _companies_ainew[MAX_COMPANIES];
 

	
 
// This function is called after StartUp. It is the init of an AI
 
static void AiNew_State_FirstTime(Company *c)
 
{
 
	// This assert is used to protect those function from misuse
 
	//   You have quickly a small mistake in the state-array
 
	//   With that, everything would go wrong. Finding that, is almost impossible
 
	//   With this assert, that problem can never happen.