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

This commit is contained in:
yexo
2010-08-01 19:36:56 +00:00
parent 1e554947bb
commit 971691b691
6 changed files with 61 additions and 61 deletions

View File

@@ -144,12 +144,12 @@ public:
void SettingsToString(char *string, size_t size) const;
private:
const char *name; //!< Name of the AI
int version; //!< Version of the AI
class AIInfo *info; //!< AIInfo object for related to this AI version
SettingValueList settings; //!< List with all setting=>value pairs that are configure for this AI
AIConfigItemList *config_list; //!< List with all settings defined by this AI
bool is_random_ai; //!< True if the AI in this slot was randomly chosen.
const char *name; ///< Name of the AI
int version; ///< Version of the AI
class AIInfo *info; ///< AIInfo object for related to this AI version
SettingValueList settings; ///< List with all setting=>value pairs that are configure for this AI
AIConfigItemList *config_list; ///< List with all settings defined by this AI
bool is_random_ai; ///< True if the AI in this slot was randomly chosen.
};
#endif /* ENABLE_AI */