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";
|
||
|
displayName = CSTRING(Category);
|
||
|
function = QFUNC(moduleInit);
|
||
|
scope = 2;
|
||
|
isGlobal = 1;
|
||
|
isTriggerActivated = 0;
|
||
|
isDisposable = 0;
|
||
|
icon = QPATHTOF(UI\Icon_Module_QuickMount_ca.paa);
|
||
|
class Arguments {
|
||
|
class enabled {
|
||
|
displayName = ECSTRING(common,Enabled);
|
||
|
description = CSTRING(KeybindDescription);
|
||
|
typeName = "BOOL";
|
||
|
defaultValue = 1;
|
||
|
};
|
||
|
class distance {
|
||
|
displayName = CSTRING(Distance);
|
||
|
description = CSTRING(DistanceDescription);
|
||
|
typeName = "NUMBER";
|
||
|
defaultValue = DEFAULT_DISTANCE;
|
||
|
};
|
||
|
class speed {
|
||
|
displayName = CSTRING(Speed);
|
||
|
description = CSTRING(SpeedDescription);
|
||
|
typeName = "NUMBER";
|
||
|
defaultValue = DEFAULT_SPEED;
|
||
|
};
|
||
|
};
|
||
|
class ModuleDescription {
|
||
|
description = CSTRING(KeybindDescription);
|
||
|
};
|
||
|
};
|
||
|
};
|