mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
22 lines
532 B
C++
22 lines
532 B
C++
class CfgVehicles {
|
|
// Boxes
|
|
class Box_NATO_Support_F;
|
|
class ACE_Box_BFT_b: Box_NATO_Support_F {
|
|
class TransportItems {
|
|
MACRO_ADDITEM(ACE_DK10_b,5);
|
|
};
|
|
};
|
|
class Box_East_Support_F;
|
|
class ACE_Box_BFT_o: Box_East_Support_F {
|
|
class TransportItems {
|
|
MACRO_ADDITEM(ACE_DK10_o,5);
|
|
};
|
|
};
|
|
class Box_IND_Support_F;
|
|
class ACE_Box_BFT_i: Box_IND_Support_F {
|
|
class TransportItems {
|
|
MACRO_ADDITEM(ACE_DK10_i,5);
|
|
};
|
|
};
|
|
};
|