mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
def05b9cf1
* Optimize and cleanup interactEH function * Add missing fences and improve formatting * Improve cutDownFence function * Remove unused sound files and cleanup * Multi-line condition and fix examples * Increase PFH delay and use distanceSqr
17 lines
484 B
C++
17 lines
484 B
C++
class CfgWeapons {
|
|
class ACE_ItemCore;
|
|
class CBA_MiscItem_ItemInfo;
|
|
|
|
class ACE_wirecutter: ACE_ItemCore {
|
|
author = ECSTRING(common,ACETeam);
|
|
displayName = CSTRING(wirecutterName);
|
|
descriptionShort = CSTRING(wirecutterDescription);
|
|
model = QPATHTOF(data\ace_wirecutter.p3d);
|
|
picture = QPATHTOF(ui\item_wirecutter_ca.paa);
|
|
scope = 2;
|
|
class ItemInfo: CBA_MiscItem_ItemInfo {
|
|
mass = 25;
|
|
};
|
|
};
|
|
};
|