summaryrefslogtreecommitdiff
path: root/src/waypoint_type.h
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2008-03-28 16:41:12 +0000
committerrubidium <rubidium@openttd.org>2008-03-28 16:41:12 +0000
commitf4d48f0e5b5cf43dd0524a707ee01658c8e65793 (patch)
tree445a46403ffa63ae3869992e725b970274c888bf /src/waypoint_type.h
parentcdd5f90e647f7544a5f7a617b2c49b32ec3b2328 (diff)
downloadopenttd-f4d48f0e5b5cf43dd0524a707ee01658c8e65793.tar.xz
(svn r12474) -Codechange: split type related stuff from waypoints from waypoint.h (and openttd.h) to waypoint_type.h.
Diffstat (limited to 'src/waypoint_type.h')
-rw-r--r--src/waypoint_type.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/waypoint_type.h b/src/waypoint_type.h
new file mode 100644
index 000000000..c74e8cf92
--- /dev/null
+++ b/src/waypoint_type.h
@@ -0,0 +1,11 @@
+/* $Id$ */
+
+/** @file waypoint_type.h Types related to waypoints. */
+
+#ifndef WAYPOINT_TYPE_H
+#define WAYPOINT_TYPE_H
+
+typedef uint16 WaypointID;
+struct Waypoint;
+
+#endif /* WAYPOINT_TYPE_H */