ACE3/addons/respawn/config.cpp

22 lines
702 B
C++
Raw Normal View History

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" };
author = ECSTRING(common,ACETeam);
authors[] = { "bux578", "commy2" };
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"