2015-01-12 13:54:36 +00:00
|
|
|
#include "script_component.hpp"
|
|
|
|
|
|
|
|
class CfgPatches {
|
2016-01-10 18:08:28 +00:00
|
|
|
class ADDON {
|
2016-06-19 07:12:25 +00:00
|
|
|
name = COMPONENT_NAME;
|
2016-01-10 18:08:28 +00:00
|
|
|
units[] = {};
|
|
|
|
weapons[] = {};
|
|
|
|
requiredVersion = REQUIRED_VERSION;
|
|
|
|
requiredAddons[] = {"ace_common"};
|
2016-05-31 19:14:43 +00:00
|
|
|
author = ECSTRING(common,ACETeam);
|
|
|
|
authors[] = {"bux578"};
|
2016-06-01 21:45:51 +00:00
|
|
|
url = ECSTRING(main,URL);
|
2016-01-10 18:08:28 +00:00
|
|
|
VERSION_CONFIG;
|
|
|
|
};
|
2015-01-12 13:54:36 +00:00
|
|
|
};
|
|
|
|
|
2015-01-12 14:09:07 +00:00
|
|
|
#include "CfgEventHandlers.hpp"
|
2015-01-12 14:47:22 +00:00
|
|
|
#include "CfgVehicles.hpp"
|
2015-06-02 17:06:41 +00:00
|
|
|
#include "ACE_Settings.hpp"
|