summaryrefslogtreecommitdiff
path: root/src/house_type.h
diff options
context:
space:
mode:
authorsmatz <smatz@openttd.org>2009-06-26 13:44:14 +0000
committersmatz <smatz@openttd.org>2009-06-26 13:44:14 +0000
commite6a165881cba611a4475db21068d64caa67796ea (patch)
tree2954a4e0bee44f0c00864e32211ceb6d4d87d122 /src/house_type.h
parent2987f021447d47a2678a8fdce81547e3d66a7217 (diff)
downloadopenttd-e6a165881cba611a4475db21068d64caa67796ea.tar.xz
(svn r16664) -Codechange: move house-related stuff from town.h and town_type.h to separate files
Diffstat (limited to 'src/house_type.h')
-rw-r--r--src/house_type.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/house_type.h b/src/house_type.h
new file mode 100644
index 000000000..da9ebe7c7
--- /dev/null
+++ b/src/house_type.h
@@ -0,0 +1,13 @@
+/* $Id$ */
+
+/** @file house_type.h declaration of basic house types and enums */
+
+#ifndef HOUSE_TYPE_H
+#define HOUSE_TYPE_H
+
+typedef uint16 HouseID;
+typedef uint16 HouseClassID;
+
+struct HouseSpec;
+
+#endif /* HOUSE_TYPE_H */