mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
15 lines
440 B
C++
15 lines
440 B
C++
class CfgWeapons {
|
|
class ACE_ItemCore;
|
|
class InventoryItem_Base_F;
|
|
|
|
class ACE_EarBuds: ACE_ItemCore {
|
|
displayName = "$STR_ACE_Hearing_Earbuds_Name";
|
|
descriptionShort = "$STR_ACE_Hearing_Earbuds_Description";
|
|
model = PATHTOF(ACE_earplugs.p3d);
|
|
picture = PATHTOF(UI\ACE_earplugs_x_ca.paa);
|
|
scope = 2;
|
|
class ItemInfo: InventoryItem_Base_F {
|
|
mass = 1;
|
|
};
|
|
};
|
|
}; |