mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
fd4d4abb73
change LoD Distance Fix IVBag names(my issue)
16 lines
440 B
C++
16 lines
440 B
C++
class CfgWeapons {
|
|
class InventoryItem_Base_F;
|
|
class ACE_ItemCore;
|
|
|
|
class ACE_UAVBattery: ACE_ItemCore {
|
|
scope = 2;
|
|
displayName = CSTRING(Battery_Name);
|
|
descriptionShort = CSTRING(Battery_Description);
|
|
model = QUOTE(PATHTOF(data\ace_battery.p3d));
|
|
picture = QUOTE(PATHTOF(ui\UAV_battery_ca.paa));
|
|
class ItemInfo: InventoryItem_Base_F {
|
|
mass = 20;
|
|
};
|
|
};
|
|
};
|