mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
286f64480c
* weight * Update CfgWeapons.hpp * Update addons/medical_treatment/CfgWeapons.hpp Co-authored-by: johnb432 <58661205+johnb432@users.noreply.github.com> --------- Co-authored-by: johnb432 <58661205+johnb432@users.noreply.github.com>
18 lines
501 B
C++
18 lines
501 B
C++
class CfgWeapons {
|
|
class ACE_ItemCore;
|
|
class CBA_MiscItem_ItemInfo;
|
|
|
|
class ACE_CableTie: ACE_ItemCore {
|
|
author = ECSTRING(common,ACETeam);
|
|
GVAR(restraint) = 1;
|
|
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 = 0.3;
|
|
};
|
|
};
|
|
};
|