diff options
author | frosch <frosch@openttd.org> | 2012-06-01 15:19:59 +0000 |
---|---|---|
committer | frosch <frosch@openttd.org> | 2012-06-01 15:19:59 +0000 |
commit | be0b94400d6e7e9136703d60b70b495d84f25108 (patch) | |
tree | 45ab8e4c13628c0ec58bd9e061747a005019a9a2 /src/script/script_config.hpp | |
parent | f7c9620271e0ee620fad8fe325d67e59539c08d8 (diff) | |
download | openttd-be0b94400d6e7e9136703d60b70b495d84f25108.tar.xz |
(svn r24317) -Feature: Add dropdowns to AI configurations, if all values have labels.
Diffstat (limited to 'src/script/script_config.hpp')
-rw-r--r-- | src/script/script_config.hpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/script/script_config.hpp b/src/script/script_config.hpp index 9ae6fba70..23822de88 100644 --- a/src/script/script_config.hpp +++ b/src/script/script_config.hpp @@ -44,6 +44,7 @@ struct ScriptConfigItem { int step_size; ///< The step size in the gui. ScriptConfigFlags flags; ///< Flags for the configuration setting. LabelMapping *labels; ///< Text labels for the integer values. + bool complete_labels; ///< True if all values have a label. }; typedef std::list<ScriptConfigItem> ScriptConfigItemList; ///< List of ScriptConfig items. |