(svn r20284) -Codechange: use ///< for single-line doxygen comments in the AI code

This commit is contained in:
yexo
2010-08-01 19:36:36 +00:00
parent 5b86c79fce
commit 1e554947bb
24 changed files with 250 additions and 250 deletions

View File

@@ -28,9 +28,9 @@ public:
*/
enum WaypointType {
/* Values are important, as they represent the internal state of the game. */
WAYPOINT_RAIL = 0x01, //!< Rail waypoint
WAYPOINT_BUOY = 0x10, //!< Buoy
WAYPOINT_ANY = 0x11, //!< All waypoint types
WAYPOINT_RAIL = 0x01, ///< Rail waypoint
WAYPOINT_BUOY = 0x10, ///< Buoy
WAYPOINT_ANY = 0x11, ///< All waypoint types
};
/**