mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
16 lines
431 B
C++
16 lines
431 B
C++
|
class CfgWeapons {
|
||
|
class ACE_ItemCore;
|
||
|
class InventoryItem_Base_F;
|
||
|
|
||
|
class ACE_MapTools: ACE_ItemCore {
|
||
|
displayName = "$STR_ACE_MapTools_Name";
|
||
|
descriptionShort = "$STR_ACE_MapTools_Description";
|
||
|
model = "\A3\weapons_F\ammo\mag_univ.p3d";
|
||
|
picture = PATHTOF(UI\maptool_item.paa);
|
||
|
scope = 2;
|
||
|
class ItemInfo: InventoryItem_Base_F {
|
||
|
mass = 1;
|
||
|
};
|
||
|
};
|
||
|
};
|