(svn r3805) - [FS#62] Fix doxygen comments to refer to the correct parameter. (sulai)

This commit is contained in:
2006-03-09 20:37:51 +00:00
parent 78a7b15ce0
commit 9c7f09322e
9 changed files with 38 additions and 38 deletions

14
ai/ai.h
View File

@@ -20,20 +20,20 @@ typedef struct AICommand {
/* The struct for an AIScript Player */
typedef struct AIPlayer {
bool active; //! Is this AI active?
AICommand *queue; //! The commands that he has in his queue
AICommand *queue_tail; //! The tail of this queue
bool active; ///< Is this AI active?
AICommand *queue; ///< The commands that he has in his queue
AICommand *queue_tail; ///< The tail of this queue
} AIPlayer;
/* The struct to keep some data about the AI in general */
typedef struct AIStruct {
/* General */
bool enabled; //! Is AI enabled?
uint tick; //! The current tick (something like _frame_counter, only for AIs)
bool enabled; ///< Is AI enabled?
uint tick; ///< The current tick (something like _frame_counter, only for AIs)
/* For network-clients (a OpenTTD client who acts as an AI connected to a server) */
bool network_client; //! Are we a network_client?
uint8 network_playas; //! The current network player we are connected as
bool network_client; ///< Are we a network_client?
uint8 network_playas; ///< The current network player we are connected as
} AIStruct;
VARDEF AIStruct _ai;