src/station_map.cpp
branchNewGRF_ports
changeset 6719 4cc327ad39d5
parent 6156 5adeec1679a4
--- a/src/station_map.cpp	Tue Mar 27 23:27:27 2007 +0000
+++ b/src/station_map.cpp	Sat Jun 02 19:59:29 2007 +0000
@@ -1,10 +1,17 @@
 /* $Id$ */
 
+/** @file station_map.cpp */
+
 #include "stdafx.h"
 #include "openttd.h"
 #include "station_map.h"
 
-
+/**
+ * Get the station type (rail, airport, truck etc) for the given tile.
+ * @param t the tile to get the station type of.
+ * @pre IsTileType(t, MP_STATION)
+ * @return the station type of the given tile.
+ */
 StationType GetStationType(TileIndex t)
 {
 	assert(IsTileType(t, MP_STATION));