ACE3/addons/compat_sog/CfgMagazines/belts.hpp
Assanali Mukhanov 537487522f
Compat SOG - Add barrel swap for MGs and belt linking for drum magazines (#9439)
* Add barrel swap support to SOG MGs

* Set SOG MG drum mags as belts, allow belt linking

* Remove tracer mag configs

Since they inherit from the "normal" magazines, these config entries, indeed, seem pointless.

Co-authored-by: PabstMirror <pabstmirror@gmail.com>

* Remove barrel swap from RPD and M1918

---------

Co-authored-by: PabstMirror <pabstmirror@gmail.com>
2023-09-28 15:20:46 -04:00

18 lines
356 B
C++

class vn_lmgmag_base;
class vn_m60_100_mag: vn_lmgmag_base {
ACE_isBelt = 1;
};
class vn_pk_100_mag: vn_lmgmag_base {
ACE_isBelt = 1;
};
class vn_rpd_100_mag: vn_lmgmag_base {
ACE_isBelt = 1;
};
class vn_m16_mag_base;
class vn_m63a_100_mag: vn_m16_mag_base {
ACE_isBelt = 1;
};
class vn_mg42_50_mag: vn_lmgmag_base {
ACE_isBelt = 1;
};