summaryrefslogtreecommitdiff
path: root/src/pathfind.h
diff options
context:
space:
mode:
authorbelugas <belugas@openttd.org>2007-03-21 17:42:43 +0000
committerbelugas <belugas@openttd.org>2007-03-21 17:42:43 +0000
commite9295b82ff7c1b1f17306f82b30a8ec294bfe5d8 (patch)
tree293a33e500f230f3c87f2c6f9c059ae701a7c8d3 /src/pathfind.h
parent4d86aa2479868dcc01b80891bc6b44c01ef28a8c (diff)
downloadopenttd-e9295b82ff7c1b1f17306f82b30a8ec294bfe5d8.tar.xz
(svn r9391) -Documentation : correct Doxygen of comments and @file inclusion. Time for P and Q files
Diffstat (limited to 'src/pathfind.h')
-rw-r--r--src/pathfind.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/pathfind.h b/src/pathfind.h
index bbd9f83f5..61f72e475 100644
--- a/src/pathfind.h
+++ b/src/pathfind.h
@@ -1,5 +1,7 @@
/* $Id$ */
+/** @file pathfind.h */
+
#ifndef PATHFIND_H
#define PATHFIND_H
@@ -60,9 +62,9 @@ struct TrackPathFinder {
bool hasbit_13;
uint16 hash_head[0x400];
- TileIndex hash_tile[0x400]; /* stores the link index when multi link. */
+ TileIndex hash_tile[0x400]; ///< stores the link index when multi link.
- TrackPathFinderLink links[0x400]; /* hopefully, this is enough. */
+ TrackPathFinderLink links[0x400]; ///< hopefully, this is enough.
};
void FollowTrack(TileIndex tile, uint16 flags, DiagDirection direction, TPFEnumProc* enum_proc, TPFAfterProc* after_proc, void* data);