ACE3/addons/trenches/CfgWeapons.hpp
Grey-Soldierman 7e5859f6f8 Ports A2 Envelope Small & Envelope Big.
Adds entrenching tool for use in building trenches (Requires Script to be made)
2015-06-17 18:17:57 +01:00

16 lines
505 B
C++

class CfgWeapons {
class InventoryItem_Base_F;
class ACE_ItemCore;
class ACE_entrenchingtool: ACE_ItemCore {
author = ECSTRING(common,ACETeam);
displayName = CSTRING(EntrenchingToolName);
descriptionShort = CSTRING(EntrenchingToolDescription);
model = QUOTE(PATHTOF(data\ace_entrchtool.p3d));
picture = QUOTE(PATHTOF(ui\w_entrchtool_ca.paa));
scope = 2;
class ItemInfo: InventoryItem_Base_F {
mass = 10;
};
};
};