mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
16 lines
423 B
C++
16 lines
423 B
C++
class CfgWeapons {
|
|
class ACE_ItemCore;
|
|
class InventoryItem_Base_F;
|
|
|
|
class ACE_microDAGR: ACE_ItemCore {
|
|
author = ECSTRING(common,ACETeam);
|
|
scope = 2;
|
|
displayName = CSTRING(itemName);
|
|
descriptionShort = CSTRING(itemDescription);
|
|
picture = QUOTE(PATHTOF(images\microDAGR_item.paa));
|
|
class ItemInfo: InventoryItem_Base_F {
|
|
mass = 2;
|
|
};
|
|
};
|
|
};
|