mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
38 lines
1.2 KiB
C++
38 lines
1.2 KiB
C++
class CfgVehicles {
|
|
class ACE_Module;
|
|
class GVAR(module): ACE_Module {
|
|
author = ECSTRING(common,ACETeam);
|
|
category = "ACE_missionModules";
|
|
displayName = CSTRING(Module);
|
|
function = QFUNC(moduleInit);
|
|
scope = 2;
|
|
isGlobal = 1; // Global
|
|
isTriggerActivated = 0;
|
|
isDisposable = 0;
|
|
icon = QUOTE(PATHTOF(UI\Icon_Module_Headless_ca.paa));
|
|
class Arguments {
|
|
class Enabled {
|
|
displayName = ECSTRING(common,Enabled);
|
|
description = CSTRING(EnabledDesc);
|
|
typeName = "BOOL";
|
|
defaultValue = 0;
|
|
};
|
|
class Delay {
|
|
displayName = CSTRING(Delay);
|
|
description = CSTRING(DelayDesc);
|
|
typeName = "NUMBER";
|
|
defaultValue = DELAY_DEFAULT;
|
|
};
|
|
class Log {
|
|
displayName = CSTRING(Log);
|
|
description = CSTRING(LogDesc);
|
|
typeName = "BOOL";
|
|
defaultValue = 0;
|
|
};
|
|
};
|
|
class ModuleDescription {
|
|
description = CSTRING(ModuleDesc);
|
|
};
|
|
};
|
|
};
|