src/bridge.h
branchgamebalance
changeset 9895 7bd07f43b0e3
parent 6486 4f8af35b11eb
child 6743 cabfaa4a0295
child 7814 fe643468ad64
--- a/src/bridge.h	Mon Mar 19 09:33:17 2007 +0000
+++ b/src/bridge.h	Mon Mar 19 12:38:16 2007 +0000
@@ -11,7 +11,7 @@
 
 /** Struct containing information about a single bridge type
  */
-typedef struct Bridge {
+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)
@@ -22,7 +22,7 @@
 	StringID material;   ///< the string that contains the bridge description
 	PalSpriteID **sprite_table; ///< table of sprites for drawing the bridge
 	byte flags;          ///< bit 0 set: disable drawing of far pillars.
-} Bridge;
+};
 
 extern const Bridge orig_bridge[MAX_BRIDGES];
 extern Bridge _bridge[MAX_BRIDGES];