2015-08-13 17:33:55 +00:00
|
|
|
#include "script_component.hpp"
|
|
|
|
|
|
|
|
class CfgPatches {
|
|
|
|
class ADDON {
|
|
|
|
units[] = {};
|
|
|
|
weapons[] = {"ACE_refuel_fuelNozzle"};
|
|
|
|
requiredVersion = REQUIRED_VERSION;
|
|
|
|
requiredAddons[] = {"ace_interaction"};
|
|
|
|
author[] = {"GitHawk"};
|
|
|
|
authorUrl = "";
|
|
|
|
VERSION_CONFIG;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2015-08-18 21:18:32 +00:00
|
|
|
#include "ACE_Settings.hpp"
|
2015-08-13 17:33:55 +00:00
|
|
|
#include "CfgEventHandlers.hpp"
|
|
|
|
#include "CfgVehicles.hpp"
|
2016-05-24 13:13:11 +00:00
|
|
|
|
|
|
|
class ACE_newEvents {
|
|
|
|
medical_onUnconscious = "ace_medical_onUnconscious";
|
|
|
|
setFuel = "ace_setFuel";
|
|
|
|
setVectorDirAndUp = "ace_setVectorDirAndUp";
|
|
|
|
displayTextStructured = "ace_displayTextStructured";
|
|
|
|
displayTextStructured = "ace_displayTextStructured";
|
|
|
|
};
|