mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
18 lines
418 B
C++
18 lines
418 B
C++
|
class CfgWeapons {
|
||
|
class ACE_ItemCore;
|
||
|
class InventoryItem_Base_F;
|
||
|
|
||
|
class ACE_Tripod: ACE_ItemCore {
|
||
|
author[] = {"Rocko", "Scubaman3D"};
|
||
|
scope = 2;
|
||
|
displayName = CSTRING(DisplayName);
|
||
|
descriptionShort = "";
|
||
|
model = PATHTOF(data\w_sniper_tripod.p3d);
|
||
|
picture = PATHTOF(UI\w_sniper_tripod_ca.paa);
|
||
|
|
||
|
class ItemInfo: InventoryItem_Base_F {
|
||
|
mass = 40;
|
||
|
};
|
||
|
};
|
||
|
};
|