project_files/frontlib/hwconsts.h
branchflibqtfrontend
changeset 8263 a0d586321d6f
parent 8261 c8236fcbe160
child 8276 d4e113e745a9
--- a/project_files/frontlib/hwconsts.h	Tue Dec 04 09:24:10 2012 +0100
+++ b/project_files/frontlib/hwconsts.h	Thu Dec 06 11:14:21 2012 +0100
@@ -93,18 +93,18 @@
  * order of settings/mods).
  */
 typedef struct {
-    const char *name;				//! A name identifying this setting (used as key in the schemes file)
-    const char *engineCommand;		//! The command needed to send the setting to the engine. May be null if the setting is not sent to the engine (for the "health" setting)
-    const bool maxMeansInfinity;	//! If true, send a very high number to the engine if the setting is equal to its maximum
-    const bool times1000;			//! If true (for time-based settings), multiply the setting by 1000 before sending it to the engine.
-    const int min;					//! The smallest allowed value
-    const int max;					//! The highest allowed value
-    const int def;					//! The default value
+    const char *name;				//!< A name identifying this setting (used as key in the schemes file)
+    const char *engineCommand;		//!< The command needed to send the setting to the engine. May be null if the setting is not sent to the engine (for the "health" setting)
+    const bool maxMeansInfinity;	//!< If true, send a very high number to the engine if the setting is equal to its maximum
+    const bool times1000;			//!< If true (for time-based settings), multiply the setting by 1000 before sending it to the engine.
+    const int min;					//!< The smallest allowed value
+    const int max;					//!< The highest allowed value
+    const int def;					//!< The default value
 } flib_metascheme_setting;
 
 typedef struct {
-    const char *name;				//! A name identifying this mod (used as key in the schemes file)
-    const int bitmaskIndex;			//! Mods are sent to the engine in a single integer, this field describes which bit of that integer is used
+    const char *name;				//!< A name identifying this mod (used as key in the schemes file)
+    const int bitmaskIndex;			//!< Mods are sent to the engine in a single integer, this field describes which bit of that integer is used
     								//! for this particular mod.
 } flib_metascheme_mod;