summaryrefslogtreecommitdiff
path: root/src/signs_type.h
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2008-03-31 07:25:49 +0000
committerrubidium <rubidium@openttd.org>2008-03-31 07:25:49 +0000
commita0895d57fa4cc30e49bef6a689b1a73cf4c3d02a (patch)
tree15543e5435aa9c7caac61ef628a1dfdc780cddb9 /src/signs_type.h
parentb1e1c134200a18ec8178a933f7bf0442492f60f6 (diff)
downloadopenttd-a0895d57fa4cc30e49bef6a689b1a73cf4c3d02a.tar.xz
(svn r12501) -Codechange: split signs.h.
Diffstat (limited to 'src/signs_type.h')
-rw-r--r--src/signs_type.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/signs_type.h b/src/signs_type.h
new file mode 100644
index 000000000..7f1dc5f4f
--- /dev/null
+++ b/src/signs_type.h
@@ -0,0 +1,15 @@
+/* $Id$ */
+
+/** @file signs_type.h Types related to signs */
+
+#ifndef SIGNS_TYPE_H
+#define SIGNS_TYPE_H
+
+typedef uint16 SignID;
+struct Sign;
+
+enum {
+ INVALID_SIGN = 0xFFFF,
+};
+
+#endif /* SIGNS_TYPE_H */