mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
765d36b4bc
* Add missing author strings * Fix dagr author entry
17 lines
470 B
C++
17 lines
470 B
C++
class CfgWeapons {
|
|
class ACE_ItemCore;
|
|
class CBA_MiscItem_ItemInfo;
|
|
|
|
class ACE_CableTie: ACE_ItemCore {
|
|
author = ECSTRING(common,ACETeam);
|
|
displayName = CSTRING(CableTie);
|
|
descriptionShort = CSTRING(CableTieDescription);
|
|
model = QPATHTOF(models\ace_cabletie.p3d);
|
|
picture = QPATHTOF(UI\ace_cabletie_ca.paa);
|
|
scope = 2;
|
|
class ItemInfo: CBA_MiscItem_ItemInfo {
|
|
mass = 1;
|
|
};
|
|
};
|
|
};
|