ACE3/addons/winddeflection/CfgVehicles.h

28 lines
577 B
C
Raw Normal View History

class CfgVehicles {
// TODO Stringtable usage
class Logic;
class Module_F: Logic {
class ArgumentsBaseUnits {
};
};
class GVAR(Module): Module_F {
scope = 2;
displayName = "Wind Deflection [ACE]";
2015-01-28 16:36:47 +00:00
icon = QUOTE(PATHTOF(data\module_icon.paa));
category = "ACE";
function = FUNC(enableModule);
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;
};
};
};
};