2021-10-14 15:48:54 +00:00
|
|
|
#include "script_component.hpp"
|
|
|
|
|
|
|
|
class CfgPatches {
|
|
|
|
class ADDON {
|
|
|
|
name = COMPONENT_NAME;
|
|
|
|
units[] = {};
|
|
|
|
weapons[] = {};
|
|
|
|
requiredVersion = REQUIRED_VERSION;
|
2023-07-29 04:53:05 +00:00
|
|
|
requiredAddons[] = {"ace_csw", "ace_explosives", "ace_refuel", "gm_core"};
|
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 "CfgAmmo.hpp"
|
|
|
|
#include "CfgEventHandlers.hpp"
|
|
|
|
#include "CfgMagazines.hpp"
|
|
|
|
#include "CfgWeapons.hpp"
|
|
|
|
#include "CfgVehicles.hpp"
|