ACE3/addons/viewdistance/CfgVehicles.hpp
jonpas 541f1010a7 Merge branch 'master' into macroSTR
Conflicts:
	addons/attach/functions/fnc_attach.sqf
	addons/captives/functions/fnc_moduleSurrender.sqf
	addons/common/CfgVehicles.hpp
	addons/explosives/CfgModule.hpp
	addons/hearing/CfgVehicles.hpp
	addons/interaction/CfgVehicles.hpp
	addons/map/CfgVehicles.hpp
	addons/microdagr/CfgVehicles.hpp
	addons/mk6mortar/CfgVehicles.hpp
	addons/nametags/CfgVehicles.hpp
	addons/nightvision/functions/fnc_changeNVGBrightness.sqf
	addons/respawn/CfgVehicles.hpp
	addons/switchunits/CfgVehicles.hpp
	addons/vehiclelock/CfgVehicles.hpp
	addons/winddeflection/stringtable.xml
2015-06-02 22:14:32 +02:00

30 lines
1.1 KiB
C++

class CfgVehicles {
class ACE_Module;
class GVAR(ModuleSettings) : ACE_Module {
author = ECSTRING(common,ACETeam);
category = "ACE";
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";
typeName = "NUMBER";
defaultValue = 10000;
};
};
class ModuleDescription {
description = "$STR_ACE_ViewDistance_Module_Description";
sync[] = {};
};
};
};