ACE3/addons/hearing/config.cpp

33 lines
874 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_EarPlugs"};
2015-01-13 04:17:52 +00:00
requiredVersion = REQUIRED_VERSION;
2015-07-01 19:21:09 +00:00
requiredAddons[] = {"ace_interaction", "A3_Characters_F", "A3_Characters_F_Kart"};
2015-06-13 15:16:18 +00:00
author[] = {"KoffeinFlummi", "esteldunedain", "HopeJ", "commy2", "Rocko", "Rommel", "Ruthberg"};
2015-01-13 04:17:52 +00:00
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-05-14 18:59:25 +00:00
#include "ACE_Settings.hpp"
2016-05-24 13:13:11 +00:00
class ACE_newEvents {
SettingsInitialized = "ace_settingsInitialized";
playerInventoryChanged = "ace_playerInventoryChanged";
playerTurretChanged = "ace_playerTurretChanged";
playerVehicleChanged = "ace_playerVehicleChanged";
2016-05-24 14:06:17 +00:00
};