ACE3/addons/interaction/config.cpp

31 lines
862 B
C++
Raw Normal View History

#include "script_component.hpp"
2015-01-11 19:32:51 +00:00
class CfgPatches {
class ADDON {
units[] = {};
weapons[] = {};
requiredVersion = REQUIRED_VERSION;
requiredAddons[] = {"ace_interact_menu"};
2015-12-24 02:27:55 +00:00
author[] = {"commy2", "KoffeinFlummi", "esteldunedain", "bux578", "dixon13"};
authorUrl = "https://github.com/commy2/";
VERSION_CONFIG;
};
2015-01-11 19:32:51 +00:00
};
#include "CfgEventHandlers.hpp"
#include "CfgVehicles.hpp"
2015-09-28 12:35:05 +00:00
#include "RscTitles.hpp"
#include "ACE_Settings.hpp"
#include "ACE_ZeusActions.hpp"
2016-05-24 13:13:11 +00:00
class ACE_newEvents {
getDown = "ace_getDown";
pardon = "ace_pardon";
tapShoulder = "ace_tapShoulder";
sendAway = "ace_sendAway";
setVelocity = "ace_setVelocity";
displayTextStructured = "ace_displayTextStructured";
2016-05-24 14:06:17 +00:00
CBA_teamColorChanged = "ace_CBA_teamColorChanged";
2016-05-24 13:13:11 +00:00
selectLeader = "ace_selectLeader";
2016-05-24 14:06:17 +00:00
};