src/viewport.h
changeset 8097 68eefbb4ff46
parent 8076 10e9b5e354d9
child 8155 db4561087736
--- a/src/viewport.h	Tue Sep 18 20:41:59 2007 +0000
+++ b/src/viewport.h	Wed Sep 19 16:36:42 2007 +0000
@@ -44,6 +44,17 @@
 	while (DoZoomInOutWindow(how, w)) {};
 }
 
+/**
+ * Some values for constructing bounding boxes (BB). The Z positions under bridges are:
+ * z=0..5  Everything that can be built under low bridges.
+ * z=6     reserved, currently unused.
+ * z=7     Z separator between bridge/tunnel and the things under/above it.
+ */
+enum {
+	BB_HEIGHT_UNDER_BRIDGE = 6, ///< Everything that can be built under low bridges, must not exceed this Z height.
+	BB_Z_SEPARATOR  = 7,        ///< Separates the bridge/tunnel from the things under/above it.
+};
+
 void OffsetGroundSprite(int x, int y);
 
 void DrawGroundSprite(SpriteID image, SpriteID pal);