summaryrefslogtreecommitdiff
path: root/src/tile_cmd.h
diff options
context:
space:
mode:
authorpeter1138 <peter1138@openttd.org>2019-04-06 07:46:15 +0100
committerMichael Lutz <michi@icosahedron.de>2019-05-01 21:36:27 +0200
commitc02ef3e4564b7b54d49f0827d2d7625cbc38f335 (patch)
tree1c0ee62b6ce55124b247daaafa42300bfaa932e7 /src/tile_cmd.h
parent21edf67f89c60351d5a0d84625455aa296b6b950 (diff)
downloadopenttd-c02ef3e4564b7b54d49f0827d2d7625cbc38f335.tar.xz
Feature: Add NotRoadTypes (NRT)
Diffstat (limited to 'src/tile_cmd.h')
-rw-r--r--src/tile_cmd.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/tile_cmd.h b/src/tile_cmd.h
index 855aa297d..80f8074ac 100644
--- a/src/tile_cmd.h
+++ b/src/tile_cmd.h
@@ -64,7 +64,10 @@ struct TileDesc {
uint64 dparam[2]; ///< Parameters of the \a str string
StringID railtype; ///< Type of rail on the tile.
uint16 rail_speed; ///< Speed limit of rail (bridges and track)
- uint16 road_speed; ///< Speed limit of road (bridges)
+ StringID roadtype; ///< Type of road on the tile.
+ uint16 road_speed; ///< Speed limit of road (bridges and track)
+ StringID tramtype; ///< Type of tram on the tile.
+ uint16 tram_speed; ///< Speed limit of tram (bridges and track)
};
/**