summaryrefslogtreecommitdiff
path: root/src/bridge.h
diff options
context:
space:
mode:
authorbelugas <belugas@openttd.org>2008-02-03 03:37:33 +0000
committerbelugas <belugas@openttd.org>2008-02-03 03:37:33 +0000
commit1e51090e740c51fef7926160371a778400ebc2e2 (patch)
tree4a7f1a13fb0d258e1e275586a802120d977d6551 /src/bridge.h
parent90973cdceff485045f5db4032c92a1c7486d28c4 (diff)
downloadopenttd-1e51090e740c51fef7926160371a778400ebc2e2.tar.xz
(svn r12048) -Cleanup: Move some strings in the original bridge array, adjust documentation a bit.
Diffstat (limited to 'src/bridge.h')
-rw-r--r--src/bridge.h10
1 files changed, 6 insertions, 4 deletions
diff --git a/src/bridge.h b/src/bridge.h
index 2df66ae2c..60c1e6185 100644
--- a/src/bridge.h
+++ b/src/bridge.h
@@ -16,14 +16,16 @@ enum {
/** Struct containing information about a single bridge type
*/
struct Bridge {
- Year avail_year; ///< the year in which the bridge becomes available
- byte min_length; ///< the minimum length of the bridge (not counting start and end tile)
- byte max_length; ///< the maximum length of the bridge (not counting start and end tile)
- uint16 price; ///< the relative price of the bridge
+ Year avail_year; ///< the year where it becomes available
+ byte min_length; ///< the minimum length (not counting start and end tile)
+ byte max_length; ///< the maximum length (not counting start and end tile)
+ uint16 price; ///< the price multiplier
uint16 speed; ///< maximum travel speed
SpriteID sprite; ///< the sprite which is used in the GUI
SpriteID pal; ///< the palette which is used in the GUI
StringID material; ///< the string that contains the bridge description
+ StringID name_rail; ///< description of the bridge, when built for road
+ StringID name_road; ///< description of the bridge, when built for road
PalSpriteID **sprite_table; ///< table of sprites for drawing the bridge
byte flags; ///< bit 0 set: disable drawing of far pillars.
};