2015-08-15 16:43:13 +00:00
|
|
|
#include "script_component.hpp"
|
|
|
|
|
|
|
|
class CfgPatches {
|
|
|
|
class ADDON {
|
2016-06-19 07:12:25 +00:00
|
|
|
name = COMPONENT_NAME;
|
2015-08-15 16:43:13 +00:00
|
|
|
units[] = {};
|
|
|
|
weapons[] = {};
|
|
|
|
requiredVersion = REQUIRED_VERSION;
|
|
|
|
requiredAddons[] = {"ace_interaction"};
|
2016-05-31 19:14:43 +00:00
|
|
|
author = ECSTRING(common,ACETeam);
|
|
|
|
authors[] = {"GitHawk", "Jonpas"};
|
2016-06-01 21:45:51 +00:00
|
|
|
url = ECSTRING(main,URL);
|
2015-08-15 16:43:13 +00:00
|
|
|
VERSION_CONFIG;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2015-08-18 00:32:10 +00:00
|
|
|
#include "ACE_Settings.hpp"
|
2018-10-13 17:07:32 +00:00
|
|
|
#include "ACE_ZeusActions.hpp"
|
2015-08-15 16:43:13 +00:00
|
|
|
#include "CfgEventHandlers.hpp"
|
2018-07-09 17:20:55 +00:00
|
|
|
#include "Cfg3DEN.hpp"
|
2015-08-15 16:43:13 +00:00
|
|
|
#include "CfgAmmo.hpp"
|
2015-08-18 00:32:10 +00:00
|
|
|
#include "CfgMagazines.hpp"
|
|
|
|
#include "CfgVehicles.hpp"
|
2017-08-22 21:21:41 +00:00
|
|
|
|
|
|
|
class ACE_Tests {
|
|
|
|
vehicleTransportAmmo = QPATHTOF(dev\test_debugConfigs.sqf);
|
|
|
|
};
|