(svn r13531) [NoAI] -Add [API CHANGE]: when building a bridge/tunnel for road/tram, the BuildBridge/BuildTunnel function will now also make two half-road/half-tram pieces on both ends of the bridge/tunnel, so it is easier for you to connect them to your network. This give a more consistant behavior for road.
-Note: if the road pieces failed to build, but building the bridge/tunnel succeeded, the function still returns true (for the obvious reasons)
/* $Id$ */
/** @file ai_subsidylist.hpp List all the subsidies. */
#ifndef AI_SUBSIDYLIST_HPP
#define AI_SUBSIDYLIST_HPP
#include "ai_abstractlist.hpp"
/**
* Creates a list of all current subsidies.
* @ingroup AIList
*/
class AISubsidyList : public AIAbstractList {
public:
static const char *GetClassName() { return "AISubsidyList"; }
AISubsidyList();
};
#endif /* AI_SUBSIDYLIST_HPP */