ACE3/addons/viewdistance/CfgVehicles.hpp

30 lines
1.1 KiB
C++
Raw Normal View History

class CfgVehicles {
2015-05-09 11:05:36 +00:00
class ACE_Module;
class GVAR(ModuleSettings) : ACE_Module {
2015-05-27 20:04:41 +00:00
author = ECSTRING(common,ACETeam);
category = "ACE";
2015-05-09 11:05:36 +00:00
function = QUOTE(DFUNC(initModule));
displayName = "$STR_ACE_ViewDistance_Module_DisplayName";
scope = 2;
isGlobal = 1;
//icon = ""; // needs an icon
class Arguments {
class moduleViewDistanceEnabled {
displayName = "$STR_ACE_ViewDistance_enabled_DisplayName";
description = "$STR_ACE_ViewDistance_enabled_Description";
typeName = "BOOL";
defaultValue = 1;
};
class moduleViewDistanceLimit {
displayName = "$STR_ACE_ViewDistance_limit_DisplayName";
description = "$STR_ACE_ViewDistance_limit_Description";
2015-05-09 12:51:23 +00:00
typeName = "NUMBER";
defaultValue = 10000;
};
};
class ModuleDescription {
description = "$STR_ACE_ViewDistance_Module_Description";
sync[] = {};
};
};
};