2015-01-12 10:02:44 +00:00
|
|
|
#include "script_component.hpp"
|
|
|
|
|
|
|
|
class CfgPatches {
|
2015-01-14 20:07:41 +00:00
|
|
|
class ADDON {
|
2016-06-19 07:12:25 +00:00
|
|
|
name = COMPONENT_NAME;
|
2015-01-14 20:07:41 +00:00
|
|
|
units[] = {};
|
|
|
|
weapons[] = {};
|
2015-01-18 07:32:07 +00:00
|
|
|
requiredVersion = REQUIRED_VERSION;
|
2015-04-09 11:23:29 +00:00
|
|
|
requiredAddons[] = {"ace_interaction"};
|
2016-05-31 19:14:43 +00:00
|
|
|
author = ECSTRING(common,ACETeam);
|
|
|
|
authors[] = {"KoffeinFlummi","BadGuy (simon84)","commy2"};
|
2016-06-01 21:45:51 +00:00
|
|
|
url = ECSTRING(main,URL);
|
2015-01-18 07:32:07 +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-14 20:07:41 +00:00
|
|
|
};
|
2015-01-12 10:02:44 +00:00
|
|
|
};
|
|
|
|
|
2015-01-12 10:33:50 +00:00
|
|
|
#include "CfgEventHandlers.hpp"
|
2016-06-02 12:32:39 +00:00
|
|
|
#include "ACE_UI.hpp"
|
2015-01-12 10:02:44 +00:00
|
|
|
|
2015-02-03 22:03:43 +00:00
|
|
|
#include "CfgAmmo.hpp"
|
|
|
|
#include "CfgMagazines.hpp"
|
|
|
|
#include "CfgVehicles.hpp"
|
|
|
|
#include "CfgWeapons.hpp"
|
2015-01-12 10:02:44 +00:00
|
|
|
|
2015-02-03 22:03:43 +00:00
|
|
|
#include "CfgOptics.hpp"
|
2015-04-20 16:48:58 +00:00
|
|
|
|
|
|
|
class ACE_Extensions {
|
2019-09-28 21:03:55 +00:00
|
|
|
class ace_fcs {
|
|
|
|
windows = 1;
|
|
|
|
client = 1;
|
|
|
|
};
|
2015-04-20 16:48:58 +00:00
|
|
|
};
|
2017-08-22 21:21:41 +00:00
|
|
|
|
|
|
|
class ACE_Tests {
|
|
|
|
fcs = QPATHTOF(dev\test_debugConfigs.sqf);
|
|
|
|
};
|