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