mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
16 lines
444 B
C++
16 lines
444 B
C++
|
class CfgWeapons {
|
||
|
class ACE_ItemCore;
|
||
|
class CBA_MiscItem_ItemInfo;
|
||
|
|
||
|
class ACE_artilleryTable: ACE_ItemCore {
|
||
|
author = ECSTRING(common,ACETeam);
|
||
|
scope = 2;
|
||
|
displayName = CSTRING(rangetable_displayName);
|
||
|
descriptionShort = CSTRING(rangetable_description);
|
||
|
picture = QPATHTOF(UI\icon_rangeTable.paa);
|
||
|
class ItemInfo: CBA_MiscItem_ItemInfo {
|
||
|
mass = 0.5;
|
||
|
};
|
||
|
};
|
||
|
};
|