mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
9b36ccadcc
* Cleanup * Returned lines between classes * Add files via upload
16 lines
443 B
C++
16 lines
443 B
C++
class CfgMagazines {
|
|
// shoot helper object to tripple rof
|
|
class VehicleMagazine;
|
|
class 1000Rnd_Gatling_30mm_Plane_CAS_01_F: VehicleMagazine {
|
|
ammo = "ACE_Gatling_30mm_HE_Plane_CAS_01_Deploy";
|
|
count = 1170;
|
|
};
|
|
|
|
// an extended magazine for the comanche
|
|
class 300Rnd_20mm_shells;
|
|
class ACE_500Rnd_20mm_shells_Comanche: 300Rnd_20mm_shells {
|
|
ammo = "ACE_20mm_HE";
|
|
count = 500;
|
|
};
|
|
};
|