ACE3/addons/optionsmenu/CfgVehicles.hpp

27 lines
923 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;
2015-05-27 19:43:30 +00:00
displayName = CSTRING(AllowConfigExport_Module_DisplayName);
2015-04-05 00:17:43 +00:00
//icon = "";
category = "ACE";
function = QUOTE(DFUNC(moduleAllowConfigExport));
functionPriority = 1;
isGlobal = 1;
isTriggerActivated = 0;
2015-05-27 20:04:41 +00:00
author = ECSTRING(common,ACETeam);
2015-04-05 00:17:43 +00:00
class Arguments {
class allowconfigurationExport {
2015-05-27 19:43:30 +00:00
displayName = CSTRING(AllowConfigExport_allowconfigurationExport_DisplayName);
description = CSTRING(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 {
2015-05-27 19:43:30 +00:00
description = CSTRING(AllowConfigExport_Module_Description);
2015-04-05 00:17:43 +00:00
sync[] = {};
};
};
2015-05-27 19:43:30 +00:00
};