mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
24 lines
686 B
C++
24 lines
686 B
C++
#include "script_component.hpp"
|
|
|
|
class CfgPatches {
|
|
class ACE_Parachute {
|
|
units[] = {"ACE_NonSteerableParachute"};
|
|
weapons[] = {"ACE_Altimeter"};
|
|
requiredVersion = REQUIRED_VERSION;
|
|
requiredAddons[] = {"ace_common"};
|
|
VERSION_CONFIG;
|
|
author[] = {"Garth 'LH' de Wet"};
|
|
authorUrl = "http://garth.snakebiteink.co.za/";
|
|
};
|
|
};
|
|
|
|
#include "CfgEventHandlers.hpp"
|
|
#include "CfgVehicles.hpp"
|
|
#include "CfgWeapons.hpp"
|
|
#include "RscTitles.hpp"
|
|
|
|
class ACE_newEvents {
|
|
playerVehicleChanged = "ace_playerVehicleChanged";
|
|
playerInventoryChanged = "ace_playerInventoryChanged";
|
|
infoDisplayChanged = "ace_infoDisplayChanged";
|
|
}; |