2015-01-12 09:20:50 +00:00
|
|
|
#include "script_component.hpp"
|
|
|
|
|
2015-01-12 09:07:03 +00:00
|
|
|
class CfgPatches {
|
2015-01-13 14:28:03 +00:00
|
|
|
class ADDON {
|
2016-06-19 07:12:25 +00:00
|
|
|
name = COMPONENT_NAME;
|
2015-01-13 14:28:03 +00:00
|
|
|
units[] = {};
|
2015-07-01 06:27:06 +00:00
|
|
|
weapons[] = {"ACE_Rallypoint_West", "ACE_Rallypoint_East", "ACE_Rallypoint_Independent", "ACE_Rallypoint_West_Base", "ACE_Rallypoint_East_Base", "ACE_Rallypoint_Independent_Base"};
|
2015-01-18 07:32:07 +00:00
|
|
|
requiredVersion = REQUIRED_VERSION;
|
2015-01-13 15:29:35 +00:00
|
|
|
requiredAddons[] = { "ace_common" };
|
2016-05-31 19:14:43 +00:00
|
|
|
author = ECSTRING(common,ACETeam);
|
|
|
|
authors[] = { "bux578", "commy2" };
|
2016-06-01 21:45:51 +00:00
|
|
|
url = ECSTRING(main,URL);
|
2015-01-18 07:32:07 +00:00
|
|
|
VERSION_CONFIG;
|
2015-01-13 14:28:03 +00:00
|
|
|
};
|
2015-01-12 09:07:03 +00:00
|
|
|
};
|
|
|
|
|
2015-01-12 09:20:50 +00:00
|
|
|
#include "CfgEventHandlers.hpp"
|
|
|
|
#include "CfgAddons.hpp"
|
|
|
|
#include "CfgVehicleClasses.hpp"
|
|
|
|
#include "CfgVehicles.hpp"
|
2015-05-14 18:59:25 +00:00
|
|
|
#include "ACE_Settings.hpp"
|