mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
92941c11de
* Aircraft - Restore missing laser designator on Commanche This now matches vanilla Close #7712 * Update addons/aircraft/Heli_Attack_01_base_F.hpp Co-authored-by: mharis001 <34453221+mharis001@users.noreply.github.com> * Update addons/aircraft/Heli_Attack_01_base_F.hpp Co-authored-by: mharis001 <34453221+mharis001@users.noreply.github.com> Co-authored-by: mharis001 <34453221+mharis001@users.noreply.github.com>
23 lines
586 B
C++
23 lines
586 B
C++
#include "script_component.hpp"
|
|
|
|
class CfgPatches {
|
|
class ADDON {
|
|
name = COMPONENT_NAME;
|
|
units[] = {};
|
|
weapons[] = {};
|
|
requiredVersion = REQUIRED_VERSION;
|
|
requiredAddons[] = {"ace_interaction", "ace_missileguidance"};
|
|
author = ECSTRING(common,ACETeam);
|
|
authors[] = {"PabstMirror"};
|
|
url = ECSTRING(main,URL);
|
|
VERSION_CONFIG;
|
|
};
|
|
};
|
|
|
|
#include "ACE_GuidanceConfig.hpp"
|
|
#include "CfgAmmo.hpp"
|
|
#include "CfgEventHandlers.hpp"
|
|
#include "CfgMagazines.hpp"
|
|
#include "CfgMagazineWells.hpp"
|
|
#include "CfgWeapons.hpp"
|