summaryrefslogtreecommitdiff
path: root/src/ai/ai_config.hpp
diff options
context:
space:
mode:
authoryexo <yexo@openttd.org>2010-08-01 19:36:56 +0000
committeryexo <yexo@openttd.org>2010-08-01 19:36:56 +0000
commit613b273f36ffd1d300ea08c5d6b1c469d145a591 (patch)
tree0f6da7e417356d57853c6fa7e9d55f98908e893b /src/ai/ai_config.hpp
parent99cb47a3825f370e19adacd1ad1e6241eccb99f9 (diff)
downloadopenttd-613b273f36ffd1d300ea08c5d6b1c469d145a591.tar.xz
(svn r20285) -Codechange: use ///< for single-line doxygen comments in the AI code
Diffstat (limited to 'src/ai/ai_config.hpp')
-rw-r--r--src/ai/ai_config.hpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/ai/ai_config.hpp b/src/ai/ai_config.hpp
index c5b7c7482..ee6f8b416 100644
--- a/src/ai/ai_config.hpp
+++ b/src/ai/ai_config.hpp
@@ -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 */