2021-10-14 15:48:54 +00:00
|
|
|
#include "script_component.hpp"
|
2023-09-25 20:37:59 +00:00
|
|
|
#include "\z\ace\addons\csw\script_config_macros_csw.hpp"
|
|
|
|
#include "\z\ace\addons\hearing\script_macros_hearingProtection.hpp"
|
|
|
|
|
2021-10-14 15:48:54 +00:00
|
|
|
|
|
|
|
class CfgPatches {
|
|
|
|
class ADDON {
|
|
|
|
name = COMPONENT_NAME;
|
|
|
|
units[] = {};
|
|
|
|
weapons[] = {};
|
|
|
|
requiredVersion = REQUIRED_VERSION;
|
2023-09-06 00:33:13 +00:00
|
|
|
requiredAddons[] = {"ace_common", "gm_core"};
|
|
|
|
skipWhenMissingDependencies = 1;
|
2021-10-14 15:48:54 +00:00
|
|
|
author = ECSTRING(common,ACETeam);
|
2021-10-22 19:02:05 +00:00
|
|
|
authors[] = {"sancron", "nomisum"};
|
2021-10-14 15:48:54 +00:00
|
|
|
url = ECSTRING(main,URL);
|
|
|
|
VERSION_CONFIG;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
#include "CfgEventHandlers.hpp"
|
|
|
|
#include "CfgMagazines.hpp"
|
|
|
|
#include "CfgWeapons.hpp"
|
|
|
|
#include "CfgVehicles.hpp"
|