mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
62ba5ffe24
* Improve explosives naming * Move all ACE explosives into compat * Update CfgMagazines.hpp
30 lines
1.0 KiB
C++
30 lines
1.0 KiB
C++
class CfgVehicles {
|
|
class ACE_Explosives_Place;
|
|
class ACE_Explosives_Place_DemoCharge: ACE_Explosives_Place {
|
|
displayName = CSTRING(DemoCharge_Name);
|
|
};
|
|
class ACE_Explosives_Place_APERSBoundingMine: ACE_Explosives_Place {
|
|
displayName = CSTRING(APERSBoundingMine_Name);
|
|
};
|
|
class ACE_Explosives_Place_APERSMine: ACE_Explosives_Place {
|
|
displayName = CSTRING(APERSMine_Name);
|
|
};
|
|
class ACE_Explosives_Place_APERSTripwireMine: ACE_Explosives_Place {
|
|
displayName = CSTRING(APERSTripwireMine_Name);
|
|
};
|
|
class ACE_Explosives_Place_ATMine: ACE_Explosives_Place {
|
|
displayName = CSTRING(ATMine_Name);
|
|
};
|
|
class ACE_Explosives_Place_Claymore: ACE_Explosives_Place {
|
|
displayName = CSTRING(Claymore_Name);
|
|
};
|
|
class ACE_Explosives_Place_SatchelCharge: ACE_Explosives_Place {
|
|
displayName = CSTRING(SatchelCharge_Name);
|
|
};
|
|
|
|
// Orange DLC
|
|
class ACE_Explosives_Place_SLAM: ACE_Explosives_Place {
|
|
displayName = CSTRING(SLAM_Name);
|
|
};
|
|
};
|