mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
32 lines
739 B
C++
32 lines
739 B
C++
#include "script_component.hpp"
|
|
|
|
class CfgPatches {
|
|
class ADDON {
|
|
units[] = {};
|
|
weapons[] = {"ACE_EarBuds"};
|
|
requiredVersion = REQUIRED_VERSION;
|
|
requiredAddons[] = {"ace_common", "ace_interaction"};
|
|
author[] = {"KoffeinFlummi", "CAA-Picard", "HopeJ", "commy2"};
|
|
authorUrl = "https://github.com/KoffeinFlummi/";
|
|
VERSION_CONFIG;
|
|
};
|
|
};
|
|
|
|
#include "CfgEventHandlers.hpp"
|
|
|
|
#include "CfgVehicles.hpp"
|
|
|
|
#include "CfgSounds.hpp"
|
|
|
|
#include "CfgWeapons.hpp"
|
|
|
|
#include "CfgAmmo.hpp"
|
|
|
|
class ACE_Settings {
|
|
class GVAR(DisableEarRinging) {
|
|
default = 1;
|
|
typeName = "BOOL";
|
|
isClientSetable = 1;
|
|
displayName = "$STR_ACE_Hearing_DisableEarRinging";
|
|
};
|
|
}; |