ACE3/addons/trenches/CfgVehicles.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

17 lines
621 B
C++

class CfgVehicles {
class BagFence_base_F;
class ACE_envelope_small: BagFence_base_F {
author = ECSTRING(common,ACETeam);
displayName = CSTRING(EnvelopeSmallName);
descriptionShort = CSTRING(EnevlopeSmallDescription);
model = QUOTE(PATHTOF(data\ace_envelope_small.p3d));
scope = 2;
};
class ACE_envelope_big: BagFence_base_F {
author = ECSTRING(common,ACETeam);
displayName = CSTRING(EnvelopeBigName);
descriptionShort = CSTRING(EnevlopeBigDescription);
model = QUOTE(PATHTOF(data\ace_envelope_big.p3d));
scope = 2;
};
};