mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
16 lines
428 B
C++
16 lines
428 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 = QPATHTOF(data\ace_battery.p3d);
|
|
picture = QPATHTOF(ui\UAV_battery_ca.paa);
|
|
class ItemInfo: InventoryItem_Base_F {
|
|
mass = 20;
|
|
};
|
|
};
|
|
};
|