2015-04-05 19:08:55 +00:00
|
|
|
#include "script_component.hpp"
|
|
|
|
|
|
|
|
class CfgPatches {
|
|
|
|
class ADDON {
|
2016-06-19 07:12:25 +00:00
|
|
|
name = COMPONENT_NAME;
|
2015-04-05 19:08:55 +00:00
|
|
|
units[] = {};
|
|
|
|
weapons[] = {};
|
|
|
|
requiredVersion = REQUIRED_VERSION;
|
2015-05-30 05:31:07 +00:00
|
|
|
requiredAddons[] = {"ace_ballistics", "ace_weather"};
|
2016-05-31 19:14:43 +00:00
|
|
|
author = ECSTRING(common,ACETeam);
|
|
|
|
authors[] = {"Ruthberg"};
|
2016-06-01 21:45:51 +00:00
|
|
|
url = ECSTRING(main,URL);
|
2015-04-05 23:05:04 +00:00
|
|
|
VERSION_CONFIG;
|
2015-04-05 19:08:55 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
#include "CfgEventHandlers.hpp"
|
|
|
|
#include "CfgVehicles.hpp"
|
2015-04-05 23:05:04 +00:00
|
|
|
#include "RscTitles.hpp"
|
2015-04-20 16:48:58 +00:00
|
|
|
#include "ACE_Settings.hpp"
|
|
|
|
|
|
|
|
class ACE_Extensions {
|
|
|
|
extensions[] += {"ace_advanced_ballistics"};
|
|
|
|
};
|