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>
21 lines
482 B
C++
21 lines
482 B
C++
|
|
class CfgWeapons {
|
|
class ACE_ItemCore;
|
|
class CBA_MiscItem_ItemInfo;
|
|
|
|
class ACE_RangeCard: ACE_ItemCore {
|
|
author = "Ruthberg";
|
|
scope = 2;
|
|
displayName = CSTRING(Name);
|
|
descriptionShort = CSTRING(Description);
|
|
picture = QPATHTOF(UI\RangeCard_Icon.paa);
|
|
icon = "iconObject_circle";
|
|
mapSize = 0.034;
|
|
ACE_isTool = 1;
|
|
|
|
class ItemInfo: CBA_MiscItem_ItemInfo {
|
|
mass = 0.1;
|
|
};
|
|
};
|
|
};
|