(svn r11776) -Codechange: more header splittings to reduce the dependencies.

This commit is contained in:
rubidium
2008-01-07 14:02:26 +00:00
parent a8a3a7e3f2
commit 38115acf5a
25 changed files with 127 additions and 85 deletions

16
src/industry_type.h Normal file
View File

@@ -0,0 +1,16 @@
/* $Id$ */
/** @file industry_type.h Types related to the industry. */
#ifndef INDUSTRY_TYPE_H
#define INDUSTRY_TYPE_H
typedef uint16 IndustryID;
typedef uint16 IndustryGfx;
typedef uint8 IndustryType;
struct Industry;
struct IndustrySpec;
struct IndustryTileSpec;
#endif /* INDUSTRY_TYPE_H */