ACE3/addons/attach/CfgWeapons.hpp

20 lines
512 B
C++
Raw Normal View History

2015-02-15 14:31:09 +00:00
2015-01-13 23:03:12 +00:00
class CfgWeapons {
2015-02-01 20:56:19 +00:00
class ACE_ItemCore;
class InventoryItem_Base_F;
2015-01-13 23:03:12 +00:00
2015-02-01 20:56:19 +00:00
class ACE_IR_Strobe_Item: ACE_ItemCore {
2015-02-15 14:31:09 +00:00
ACE_attachable = 1;
author = "$STR_ACE_Common_ACETeam";
scope = 2;
2015-02-01 20:56:19 +00:00
displayName = "$STR_ACE_IrStrobe_Name";
descriptionShort = "$STR_ACE_IrStrobe_Description";
model = "\A3\weapons_F\ammo\mag_univ.p3d";
picture = PATHTOF(UI\irstrobe_item.paa);
2015-02-15 14:31:09 +00:00
2015-02-01 20:56:19 +00:00
class ItemInfo: InventoryItem_Base_F {
mass = 1;
};
2015-01-13 23:03:12 +00:00
};
2015-02-15 14:31:09 +00:00
};