ACE3/addons/respawn/config.cpp

28 lines
944 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 {
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" };
2015-01-13 14:38:17 +00:00
author[] = { "bux578", "commy2" };
2015-01-13 14:28:03 +00:00
authorUrl = "https://github.com/bux578/";
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"
2016-05-24 13:13:11 +00:00
class ACE_newEvents {
SettingsInitialized = "ace_settingsInitialized";
playerChanged = "ace_playerChanged";
rallypointMoved = "ace_rallypointMoved";
killedByFriendly = "ace_killedByFriendly";
rallypointMoved = "ace_rallypointMoved";
rallypointMoved = "ace_rallypointMoved";
};