ACE3/addons/interaction/config.cpp

31 lines
809 B
C++
Raw Normal View History

#include "script_component.hpp"
2015-01-11 19:32:51 +00:00
class CfgPatches {
class ADDON {
2016-06-19 07:12:25 +00:00
name = COMPONENT_NAME;
units[] = {};
weapons[] = {};
requiredVersion = REQUIRED_VERSION;
requiredAddons[] = {"ace_interact_menu"};
author = ECSTRING(common,ACETeam);
authors[] = {"commy2", "KoffeinFlummi", "esteldunedain", "bux578", "dixon13"};
url = ECSTRING(main,URL);
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 {
2016-05-25 18:23:53 +00:00
getDown = QGVAR(getDown);
pardon = QGVAR(pardon);
tapShoulder = QGVAR(tapShoulder);
sendAway = QGVAR(sendAway);
lampTurnOff = QGVAR(setLampOff);
lampTurnOn = QGVAR(setLampOn);
2016-05-24 14:06:17 +00:00
};