summaryrefslogtreecommitdiff
path: root/src/industry_type.h
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2008-01-07 14:02:26 +0000
committerrubidium <rubidium@openttd.org>2008-01-07 14:02:26 +0000
commit38115acf5adbcf66643d1f96e30b9abc6dec15a3 (patch)
treeda6be8b1f4ec1cdb8a848d1ab9915d7dddf2ff8b /src/industry_type.h
parenta8a3a7e3f277c205900f5dde7441e612cd0114a8 (diff)
downloadopenttd-38115acf5adbcf66643d1f96e30b9abc6dec15a3.tar.xz
(svn r11776) -Codechange: more header splittings to reduce the dependencies.
Diffstat (limited to 'src/industry_type.h')
-rw-r--r--src/industry_type.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/industry_type.h b/src/industry_type.h
new file mode 100644
index 000000000..dab974017
--- /dev/null
+++ b/src/industry_type.h
@@ -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 */