(svn r20286) -Codechange: Unify end of doxygen comments.

This commit is contained in:
frosch
2010-08-01 19:44:49 +00:00
parent 613b273f36
commit 4bd32799f1
93 changed files with 424 additions and 220 deletions

View File

@@ -17,7 +17,8 @@
* Return the slope of a given tile
* @param tile Tile to compute slope of
* @param h If not \c NULL, pointer to storage of z height
* @return Slope of the tile, except for the HALFTILE part */
* @return Slope of the tile, except for the HALFTILE part
*/
Slope GetTileSlope(TileIndex tile, uint *h)
{
assert(tile < MapSize());
@@ -62,7 +63,8 @@ Slope GetTileSlope(TileIndex tile, uint *h)
/**
* Get bottom height of the tile
* @param tile Tile to compute height of
* @return Minimum height of the tile */
* @return Minimum height of the tile
*/
uint GetTileZ(TileIndex tile)
{
if (TileX(tile) == MapMaxX() || TileY(tile) == MapMaxY()) return 0;
@@ -78,7 +80,8 @@ uint GetTileZ(TileIndex tile)
/**
* Get top height of the tile
* @param t Tile to compute height of
* @return Maximum height of the tile */
* @return Maximum height of the tile
*/
uint GetTileMaxZ(TileIndex t)
{
if (TileX(t) == MapMaxX() || TileY(t) == MapMaxY()) return 0;