summaryrefslogtreecommitdiff
path: root/src/ai/api/ai_bridge.hpp
diff options
context:
space:
mode:
authoryexo <yexo@openttd.org>2009-03-28 12:04:38 +0000
committeryexo <yexo@openttd.org>2009-03-28 12:04:38 +0000
commit400208ee0afd84f1e9ddf1ab851e34a87b3e98c0 (patch)
treed96ab887f0146fd83a81a513c794f40959849e14 /src/ai/api/ai_bridge.hpp
parente02d31cd3abaf078131a82e7d0a0c46a5a759d24 (diff)
downloadopenttd-400208ee0afd84f1e9ddf1ab851e34a87b3e98c0.tar.xz
(svn r15875) -Add: AIBridge::GetBridgeID() so AIs can get the type of bridge that are already build.
Diffstat (limited to 'src/ai/api/ai_bridge.hpp')
-rw-r--r--src/ai/api/ai_bridge.hpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/ai/api/ai_bridge.hpp b/src/ai/api/ai_bridge.hpp
index f53ee2339..58cc9d60b 100644
--- a/src/ai/api/ai_bridge.hpp
+++ b/src/ai/api/ai_bridge.hpp
@@ -52,6 +52,14 @@ public:
static bool IsBridgeTile(TileIndex tile);
/**
+ * Get the BridgeID of a bridge at a given tile.
+ * @param tile The tile to get the BridgeID from.
+ * @pre IsBridgeTile(tile).
+ * @return The BridgeID from the bridge at tile 'tile'.
+ */
+ static BridgeID GetBridgeID(TileIndex tile);
+
+ /**
* Get the name of a bridge.
* @param bridge_id The bridge to get the name of.
* @pre IsValidBridge(bridge_id).