ACE3/addons/attach/CfgWeapons.hpp

20 lines
528 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 {
ACE_attachable = "ACE_IR_Strobe_Effect";
2015-05-27 20:04:41 +00:00
author = ECSTRING(common,ACETeam);
2015-02-15 14:31:09 +00:00
scope = 2;
displayName = CSTRING(IrStrobe_Name);
descriptionShort = CSTRING(IrStrobe_Description);
2015-02-01 20:56:19 +00:00
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
};