summaryrefslogtreecommitdiff
path: root/src/station.cpp
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2011-05-01 19:51:52 +0000
committerrubidium <rubidium@openttd.org>2011-05-01 19:51:52 +0000
commit5a620d1c6592057b500f0889eef8949dc1e95e4b (patch)
treedabae6247490fdea860bea292bb8eee49ce46fe4 /src/station.cpp
parent1a515e6344028854c855671c19f49d8f869eb18f (diff)
downloadopenttd-5a620d1c6592057b500f0889eef8949dc1e95e4b.tar.xz
(svn r22406) -Document: some more "random-ish" tidbits
Diffstat (limited to 'src/station.cpp')
-rw-r--r--src/station.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/station.cpp b/src/station.cpp
index 0cfcf027c..0f1db371d 100644
--- a/src/station.cpp
+++ b/src/station.cpp
@@ -28,6 +28,7 @@
#include "table/strings.h"
+/** The pool of stations. */
StationPool _station_pool("Station");
INSTANTIATE_POOL_METHODS(Station)
@@ -275,8 +276,8 @@ Rect Station::GetCatchmentRect() const
/** Rect and pointer to IndustryVector */
struct RectAndIndustryVector {
- Rect rect;
- IndustryVector *industries_near;
+ Rect rect; ///< The rectangle to search the industries in.
+ IndustryVector *industries_near; ///< The nearby industries.
};
/**