comparison src/newgrf_industries.cpp @ 14258:a899d4e5ee1a draft

(svn r18809) -Codechange/Cleanup: remove unneeded headers from some files, if a header require a header make it include that header
author rubidium <rubidium@openttd.org>
date Fri, 15 Jan 2010 16:41:15 +0000
parents 8f89e4b14a05
children bbccf1f10e14
comparison
equal deleted inserted replaced
14257:40b920f51dd7 14258:a899d4e5ee1a
9 9
10 /** @file newgrf_industries.cpp Handling of NewGRF industries. */ 10 /** @file newgrf_industries.cpp Handling of NewGRF industries. */
11 11
12 #include "stdafx.h" 12 #include "stdafx.h"
13 #include "debug.h" 13 #include "debug.h"
14 #include "strings_type.h"
15 #include "industry.h" 14 #include "industry.h"
16 #include "newgrf.h" 15 #include "newgrf.h"
17 #include "newgrf_industries.h" 16 #include "newgrf_industries.h"
18 #include "newgrf_commons.h" 17 #include "newgrf_commons.h"
19 #include "newgrf_text.h" 18 #include "newgrf_text.h"
22 #include "town.h" 21 #include "town.h"
23 #include "company_base.h" 22 #include "company_base.h"
24 #include "command_func.h" 23 #include "command_func.h"
25 #include "gui.h" 24 #include "gui.h"
26 #include "strings_func.h" 25 #include "strings_func.h"
26 #include "core/random_func.hpp"
27 27
28 #include "table/strings.h" 28 #include "table/strings.h"
29 29
30 static uint32 _industry_creation_random_bits; 30 static uint32 _industry_creation_random_bits;
31 31