ACE3/addons/optionsmenu/CfgVehicles.hpp

26 lines
915 B
C++
Raw Normal View History

2015-04-05 00:17:43 +00:00
class CfgVehicles {
class ACE_Module;
class ACE_moduleAllowConfigExport: ACE_Module {
scope = 2;
displayName = "$STR_AllowConfigExport_Module_DisplayName";
2015-04-05 00:17:43 +00:00
//icon = "";
category = "ACE";
function = QUOTE(DFUNC(moduleAllowConfigExport));
functionPriority = 1;
isGlobal = 1;
isTriggerActivated = 0;
author = "$STR_ACE_Common_ACETeam";
class Arguments {
class allowconfigurationExport {
displayName = "$STR_AllowConfigExport_allowconfigurationExport_DisplayName";
description = "$STR_AllowConfigExport_allowconfigurationExport_Description";
2015-04-05 00:17:43 +00:00
typeName = "BOOL";
2015-04-05 21:08:42 +00:00
defaultValue = 1;
2015-04-05 00:17:43 +00:00
};
};
class ModuleDescription {
description = "$STR_AllowConfigExport_Module_Description";
2015-04-05 00:17:43 +00:00
sync[] = {};
};
};
};