mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
31 lines
1.0 KiB
C++
31 lines
1.0 KiB
C++
class CfgVehicles {
|
|
class ACE_Module;
|
|
class GVAR(ModuleSettings) : ACE_Module {
|
|
author = ECSTRING(common,ACETeam);
|
|
category = "ACE";
|
|
function = QUOTE(DFUNC(initModule));
|
|
displayName = CSTRING(Module_DisplayName);
|
|
scope = 2;
|
|
isGlobal = 1;
|
|
isSingular = 1;
|
|
//icon = ""; // needs an icon
|
|
class Arguments {
|
|
class moduleViewDistanceEnabled {
|
|
displayName = CSTRING(enabled_DisplayName);
|
|
description = CSTRING(enabled_Description);
|
|
typeName = "BOOL";
|
|
defaultValue = 1;
|
|
};
|
|
class moduleViewDistanceLimit {
|
|
displayName = CSTRING(limit_DisplayName);
|
|
description = CSTRING(limit_Description);
|
|
typeName = "NUMBER";
|
|
defaultValue = 10000;
|
|
};
|
|
};
|
|
class ModuleDescription {
|
|
description = CSTRING(Module_Description);
|
|
sync[] = {};
|
|
};
|
|
};
|
|
}; |