ACE3/addons/optionsmenu/CfgVehicles.hpp
PabstMirror cd30b09b4f Convert ACE_settings to CBA_settings (#4895)
* Convert ACE_settings to CBA_settings

* Run Modules Globaly, BWC for SetSetting

* Add support for string settings

* ACE_ServerSettings warning

* Add handler for global setting being changed

* Add deprecated and replaced not to Settings Framework doc

* Remove options menu UI, Move Debug and HeadBug Fix to Options in Pause Menu

* Change modules scope to 1

* Disable debug
2017-11-11 20:21:55 +01:00

28 lines
947 B
C++

class CfgVehicles {
class ACE_Module;
class ACE_moduleAllowConfigExport: ACE_Module {
scope = 1;
displayName = CSTRING(AllowConfigExport_Module_DisplayName);
//icon = "";
category = "ACE";
function = QUOTE(DFUNC(moduleAllowConfigExport));
functionPriority = 1;
isGlobal = 1;
isSingular = 1;
isTriggerActivated = 0;
author = ECSTRING(common,ACETeam);
class Arguments {
class allowconfigurationExport {
displayName = CSTRING(AllowConfigExport_allowconfigurationExport_DisplayName);
description = CSTRING(AllowConfigExport_allowconfigurationExport_Description);
typeName = "BOOL";
defaultValue = 1;
};
};
class ModuleDescription {
description = CSTRING(AllowConfigExport_Module_Description);
sync[] = {};
};
};
};