2015-01-12 22:36:04 +00:00
|
|
|
class CfgVehicles {
|
2015-01-29 12:58:22 +00:00
|
|
|
|
|
|
|
// TODO Stringtable usage
|
2015-01-12 22:36:04 +00:00
|
|
|
class Logic;
|
|
|
|
class Module_F: Logic {
|
|
|
|
class ArgumentsBaseUnits {
|
|
|
|
};
|
|
|
|
};
|
2015-01-13 17:05:05 +00:00
|
|
|
class GVAR(Module): Module_F {
|
2015-01-12 22:36:04 +00:00
|
|
|
scope = 2;
|
2015-01-29 12:58:22 +00:00
|
|
|
displayName = "Wind Deflection [ACE]";
|
2015-01-28 16:36:47 +00:00
|
|
|
icon = QUOTE(PATHTOF(data\module_icon.paa));
|
|
|
|
category = "ACE";
|
2015-01-13 17:05:05 +00:00
|
|
|
function = FUNC(enableModule);
|
2015-01-12 22:36:04 +00:00
|
|
|
functionPriority = 1;
|
|
|
|
isGlobal = 1;
|
|
|
|
isTriggerActivated = 0;
|
|
|
|
class Arguments {
|
|
|
|
class forAI {
|
|
|
|
displayName = "Enable for AI";
|
|
|
|
description = "Should the module be enabled for AI";
|
|
|
|
typeName = "BOOL";
|
|
|
|
defaultValue = 0;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|