mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
a40b0d48f2
* HEMTT v10 Compatibility * Update addons/field_rations/CfgUIGrids.hpp Co-authored-by: PabstMirror <pabstmirror@gmail.com> * fix PabstMirror review * optionals * End empty macro definitions with semi-colon (HEMTT v0.10) * Adapt to HEMTT v0.10.0-a14 * Revert End empty macro definitions with semi-colon * Disable old HEMTT build step in CI * Add missing include and fix macro usage and include casings * End empty macro definitions with semi-colon (HEMTT v0.10) * Update addons/disarming/functions/fnc_showItemsInListbox.sqf Co-authored-by: PabstMirror <pabstmirror@gmail.com> * cleanup test code * arty - keep style same as before * fix fire screams * Update script_component.hpp * Keep old hemtt/workflow/sqfc * Update arma.yml * Update arma.yml * Update CfgUIGrids.hpp --------- Co-authored-by: PabstMirror <pabstmirror@gmail.com> Co-authored-by: jonpas <jonpas33@gmail.com>
44 lines
1.1 KiB
C++
44 lines
1.1 KiB
C++
#include "script_component.hpp"
|
|
|
|
class CfgPatches {
|
|
class ADDON {
|
|
name = COMPONENT_NAME;
|
|
requiredVersion = REQUIRED_VERSION;
|
|
requiredAddons[] = {"ace_missileguidance"};
|
|
author = ECSTRING(common,ACETeam);
|
|
authors[] = {"xrufix"};
|
|
url = ECSTRING(main,URL);
|
|
VERSION_CONFIG;
|
|
ammo[] = {
|
|
QGVAR(L),
|
|
"ace_kh25ml"
|
|
};
|
|
magazines[] = {
|
|
QGVAR(L_magazine_x1),
|
|
QGVAR(L_pylonmissile_x1),
|
|
QGVAR(L_pylonmissile_x2),
|
|
QGVAR(L_pylonRack_1Rnd),
|
|
QGVAR(L_PylonRack_3Rnd),
|
|
QGVAR(L_PylonRack_x1),
|
|
QGVAR(L_PylonRack_x2),
|
|
"ace_kh25ml_magazine_x1",
|
|
"ace_kh25ml_pylonmissile_x1",
|
|
"ace_kh25ml_pylonmissile_int_x1"
|
|
};
|
|
weapons[] = {
|
|
QGVAR(L_Launcher_Plane),
|
|
QGVAR(L_Launcher),
|
|
"ace_kh25ml_launcher"
|
|
};
|
|
units[] = {};
|
|
};
|
|
};
|
|
|
|
|
|
class SensorTemplateLaser;
|
|
|
|
#include "CfgAmmo.hpp"
|
|
#include "CfgMagazines.hpp"
|
|
#include "CfgWeapons.hpp"
|
|
#include "ACE_GuidanceConfig.hpp"
|