summaryrefslogtreecommitdiff
path: root/src/ai/api/ai_company.hpp
diff options
context:
space:
mode:
authoryexo <yexo@openttd.org>2010-08-01 19:36:36 +0000
committeryexo <yexo@openttd.org>2010-08-01 19:36:36 +0000
commit99cb47a3825f370e19adacd1ad1e6241eccb99f9 (patch)
tree395d0bce297155d8071e5a761e9290f107ed248b /src/ai/api/ai_company.hpp
parented4f806f1dcff2e10d2fdfb687e6bcebe9a81af3 (diff)
downloadopenttd-99cb47a3825f370e19adacd1ad1e6241eccb99f9.tar.xz
(svn r20284) -Codechange: use ///< for single-line doxygen comments in the AI code
Diffstat (limited to 'src/ai/api/ai_company.hpp')
-rw-r--r--src/ai/api/ai_company.hpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/ai/api/ai_company.hpp b/src/ai/api/ai_company.hpp
index 8ce792333..a4b52d9a7 100644
--- a/src/ai/api/ai_company.hpp
+++ b/src/ai/api/ai_company.hpp
@@ -23,17 +23,17 @@ public:
/** Different constants related to CompanyID. */
enum CompanyID {
- COMPANY_FIRST = 0, //!< The first available company.
- COMPANY_LAST = ::MAX_COMPANIES, //!< The last available company.
- COMPANY_SELF = 254, //!< Constant that gets resolved to the correct company index for your company.
- COMPANY_INVALID = -1, //!< An invalid company.
+ COMPANY_FIRST = 0, ///< The first available company.
+ COMPANY_LAST = ::MAX_COMPANIES, ///< The last available company.
+ COMPANY_SELF = 254, ///< Constant that gets resolved to the correct company index for your company.
+ COMPANY_INVALID = -1, ///< An invalid company.
};
/** Possible genders for company presidents. */
enum Gender {
- GENDER_MALE, //!< A male person.
- GENDER_FEMALE, //!< A female person.
- GENDER_INVALID = -1, //!< An invalid gender.
+ GENDER_MALE, ///< A male person.
+ GENDER_FEMALE, ///< A female person.
+ GENDER_INVALID = -1, ///< An invalid gender.
};
/**