mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
19 lines
465 B
C++
19 lines
465 B
C++
|
|
class CfgMagazines {
|
|
class CA_magazine;
|
|
class ACE_bftMagazineBase: CA_magazine {
|
|
scope = 2;
|
|
value = 1;
|
|
count = 1;
|
|
type = 16;
|
|
displayName = "BFT Base Magazine";
|
|
picture = PATHTOF(data\icon_base.paa);
|
|
descriptionShort = "";
|
|
descriptionUse = "";
|
|
mass = 1;
|
|
|
|
// classname of the item entry, for easily identifying the device type
|
|
GVAR(type) = "ACE_bftItemBase";
|
|
};
|
|
};
|