mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
8226edc6cb
Wind deflection module was using the incorrect function name,
21 lines
607 B
C++
21 lines
607 B
C++
class CfgVehicles {
|
|
class Module_F;
|
|
class GVAR(Module): Module_F {
|
|
author = "$STR_ACE_Common_ACETeam";
|
|
category = "ACE";
|
|
displayName = "Wind Deflection";
|
|
function = FUNC(initalizeModule);
|
|
scope = 2;
|
|
isGlobal = 1;
|
|
icon = QUOTE(PATHTOF(UI\Icon_Module_Wind_ca.paa));
|
|
class Arguments {
|
|
class EnableForAI {
|
|
displayName = "Enable for AI";
|
|
description = "Should the module be enabled for AI";
|
|
typeName = "BOOL";
|
|
defaultValue = 0;
|
|
};
|
|
};
|
|
};
|
|
};
|