2015-01-16 12:15:14 +00:00
|
|
|
#include "script_component.hpp"
|
|
|
|
|
|
|
|
class CfgPatches {
|
|
|
|
class ADDON {
|
2016-06-19 07:12:25 +00:00
|
|
|
name = COMPONENT_NAME;
|
2015-01-16 12:15:14 +00:00
|
|
|
units[] = {};
|
|
|
|
weapons[] = {};
|
2015-01-18 07:32:07 +00:00
|
|
|
requiredVersion = REQUIRED_VERSION;
|
2015-02-10 04:22:10 +00:00
|
|
|
requiredAddons[] = { "ace_common" };
|
2016-05-31 19:14:43 +00:00
|
|
|
author = ECSTRING(common,ACETeam);
|
2016-11-08 13:47:12 +00:00
|
|
|
authors[] = {"KoffeinFlummi", "esteldunedain", "Ruthberg"};
|
2016-06-01 21:45:51 +00:00
|
|
|
url = ECSTRING(main,URL);
|
2015-01-18 07:32:07 +00:00
|
|
|
VERSION_CONFIG;
|
2015-01-16 12:15:14 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
#include "CfgEventHandlers.hpp"
|
|
|
|
#include "CfgSounds.hpp"
|
2015-04-11 12:02:44 +00:00
|
|
|
#include "CfgVehicles.hpp"
|
2015-01-18 20:01:07 +00:00
|
|
|
#include "CfgWeapons.hpp"
|
2015-01-16 12:15:14 +00:00
|
|
|
#include "RscTitles.hpp"
|
2016-11-08 13:47:12 +00:00
|
|
|
#include "ACE_Settings.hpp"
|