2015-01-12 22:36:04 +00:00
|
|
|
class CfgVehicles {
|
2015-02-03 20:47:25 +00:00
|
|
|
class Module_F;
|
|
|
|
class GVAR(Module): Module_F {
|
|
|
|
author = "$STR_ACE_Common_ACETeam";
|
|
|
|
category = "ACE";
|
|
|
|
displayName = "Wind Deflection";
|
2015-04-03 07:43:06 +00:00
|
|
|
function = FUNC(initalizeModule);
|
2015-02-03 20:47:25 +00:00
|
|
|
scope = 2;
|
|
|
|
isGlobal = 1;
|
2015-03-23 19:02:35 +00:00
|
|
|
icon = QUOTE(PATHTOF(UI\Icon_Module_Wind_ca.paa));
|
2015-02-03 20:47:25 +00:00
|
|
|
class Arguments {
|
|
|
|
class EnableForAI {
|
|
|
|
displayName = "Enable for AI";
|
|
|
|
description = "Should the module be enabled for AI";
|
|
|
|
typeName = "BOOL";
|
|
|
|
defaultValue = 0;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
2015-01-12 22:36:04 +00:00
|
|
|
};
|