ACE3/addons/hearing/config.cpp

32 lines
739 B
C++
Raw Normal View History

2015-01-13 04:17:52 +00:00
#include "script_component.hpp"
2015-01-13 04:17:52 +00:00
class CfgPatches {
class ADDON {
units[] = {};
weapons[] = {"ACE_EarBuds"};
requiredVersion = REQUIRED_VERSION;
2015-01-14 01:41:53 +00:00
requiredAddons[] = {"ace_common", "ace_interaction"};
2015-01-13 04:17:52 +00:00
author[] = {"KoffeinFlummi", "CAA-Picard", "HopeJ", "commy2"};
authorUrl = "https://github.com/KoffeinFlummi/";
VERSION_CONFIG;
};
};
2015-01-13 04:17:52 +00:00
#include "CfgEventHandlers.hpp"
2015-01-13 04:17:52 +00:00
#include "CfgVehicles.hpp"
2015-01-13 04:17:52 +00:00
#include "CfgSounds.hpp"
2015-01-13 04:17:52 +00:00
#include "CfgWeapons.hpp"
2015-01-13 04:17:52 +00:00
#include "CfgAmmo.hpp"
2015-01-14 03:29:01 +00:00
2015-01-30 22:19:45 +00:00
class ACE_Settings {
class GVAR(DisableEarRinging) {
default = 1;
typeName = "BOOL";
isClientSetable = 1;
displayName = "$STR_ACE_Hearing_DisableEarRinging";
};
2015-01-14 03:29:01 +00:00
};