Changeset - r12498:1d729aa61006
[Not reviewed]
master
0 1 0
rubidium - 15 years ago 2009-07-24 19:17:45
rubidium@openttd.org
(svn r16945) -Fix (r16940): comments got swapped
1 file changed with 2 insertions and 2 deletions:
0 comments (0 inline, 0 general)
src/base_station_base.h
Show inline comments
 
@@ -89,22 +89,22 @@ struct BaseStation : StationPool::PoolIt
 
	/**
 
	 * Obtain the length of a platform
 
	 * @pre tile must be a rail station tile
 
	 * @param tile A tile that contains the platform in question
 
	 * @return The length of the platform
 
	 */
 
	virtual uint GetPlatformLength(TileIndex tile, DiagDirection dir) const = 0;
 
	virtual uint GetPlatformLength(TileIndex tile) const = 0;
 

	
 
	/**
 
	 * Determines the REMAINING length of a platform, starting at (and including)
 
	 * the given tile.
 
	 * @param tile the tile from which to start searching. Must be a rail station tile
 
	 * @param dir The direction in which to search.
 
	 * @return The platform length
 
	 */
 
	virtual uint GetPlatformLength(TileIndex tile) const = 0;
 
	virtual uint GetPlatformLength(TileIndex tile, DiagDirection dir) const = 0;
 

	
 
	/**
 
	 * Get the base station belonging to a specific tile.
 
	 * @param tile The tile to get the base station from.
 
	 * @return the station associated with that tile.
 
	 */
0 comments (0 inline, 0 general)