mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
28 lines
743 B
C++
28 lines
743 B
C++
#include "script_component.hpp"
|
|
|
|
class CfgPatches {
|
|
class ADDON {
|
|
units[] = {"ACE_HuntIR", "ACE_HuntIRBox"};
|
|
weapons[] = {"ACE_HuntIR_monitor"};
|
|
requiredVersion = REQUIRED_VERSION;
|
|
requiredAddons[] = {"ace_common"};
|
|
author = ECSTRING(common,ACETeam);
|
|
authors[] = {"Norrin", "Rocko", "Ruthberg"};
|
|
url = ECSTRING(main,URL);
|
|
VERSION_CONFIG;
|
|
};
|
|
};
|
|
|
|
#include "CfgEventhandlers.hpp"
|
|
#include "CfgCloudlets.hpp"
|
|
#include "CfgAmmo.hpp"
|
|
#include "CfgMagazines.hpp"
|
|
#include "CfgVehicles.hpp"
|
|
#include "CfgWeapons.hpp"
|
|
#include "Dialog.hpp"
|
|
#include "RscTitles.hpp"
|
|
|
|
class ACE_newEvents {
|
|
firedPlayerNonLocal = "ace_firedPlayerNonLocal";
|
|
firedPlayer = "ace_firedPlayer";
|
|
}; |