2015-01-13 23:52:37 +00:00
|
|
|
#include "script_component.hpp"
|
|
|
|
|
|
|
|
class CfgPatches {
|
2015-01-14 01:57:15 +00:00
|
|
|
class ADDON {
|
2016-06-19 07:12:25 +00:00
|
|
|
name = COMPONENT_NAME;
|
2015-05-01 23:32:20 +00:00
|
|
|
units[] = {};
|
2015-01-13 23:52:37 +00:00
|
|
|
weapons[] = {};
|
|
|
|
requiredVersion = REQUIRED_VERSION;
|
|
|
|
requiredAddons[] = {"ace_common"};
|
2016-05-31 19:14:43 +00:00
|
|
|
author = ECSTRING(common,ACETeam);
|
2017-01-23 18:13:37 +00:00
|
|
|
authors[] = {"KoffeinFlummi", "Crusty", "commy2", "jaynus", "Kimi"};
|
2016-06-01 21:45:51 +00:00
|
|
|
url = ECSTRING(main,URL);
|
2015-01-13 23:52:37 +00:00
|
|
|
VERSION_CONFIG;
|
2016-06-20 19:07:10 +00:00
|
|
|
|
|
|
|
// this prevents any patched class from requiring this addon
|
|
|
|
addonRootClass = "A3_Characters_F";
|
2015-01-13 23:52:37 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
#include "CfgAmmo.hpp"
|
2017-09-17 22:24:14 +00:00
|
|
|
#include "CfgEventHandlers.hpp"
|
2015-01-13 23:52:37 +00:00
|
|
|
#include "CfgMagazines.hpp"
|
|
|
|
#include "CfgVehicles.hpp"
|
|
|
|
#include "CfgWeapons.hpp"
|
2017-01-23 18:13:37 +00:00
|
|
|
#include "RscInGameUI.hpp"
|