summaryrefslogtreecommitdiff
path: root/src/pbs.h
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2008-08-02 22:47:48 +0000
committerrubidium <rubidium@openttd.org>2008-08-02 22:47:48 +0000
commit2bb88255388bedae0d94c9c06751ee8f140a9194 (patch)
treeab32926a52ecf98f970be7136e5b8f5078296938 /src/pbs.h
parentdf99103a3167874a34b1f1f65fe60aae8ff3116a (diff)
downloadopenttd-2bb88255388bedae0d94c9c06751ee8f140a9194.tar.xz
(svn r13928) -Add [YAPP]: Function for getting the path reservation state of any tile. (michi_cc)
Diffstat (limited to 'src/pbs.h')
-rw-r--r--src/pbs.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/pbs.h b/src/pbs.h
new file mode 100644
index 000000000..51a9ba201
--- /dev/null
+++ b/src/pbs.h
@@ -0,0 +1,13 @@
+/* $Id$ */
+
+/** @file pbs.h PBS support routines */
+
+#ifndef PBS_H
+#define PBS_H
+
+#include "tile_type.h"
+#include "track_type.h"
+
+TrackBits GetReservedTrackbits(TileIndex t);
+
+#endif /* PBS_H */