ACE3/addons/compat_gm/compat_gm_explosives/config.cpp
lambdatiger 18bd1acc33
Compat GM - Fix inheritance and add GM stringtable entries to display names (#10256)
* Fixed inheritance on PETN and PLNP

* Added GM's localization strings

* adds required addons

* one of my testing scripts added forward slashes that aren't/aren't reflected in the GM configs
2024-08-26 11:29:34 -05:00

27 lines
611 B
C++

#include "script_component.hpp"
class CfgPatches {
class SUBADDON {
name = COMPONENT_NAME;
units[] = {};
weapons[] = {};
requiredVersion = REQUIRED_VERSION;
requiredAddons[] = {
"gm_core",
"gm_weapons_put",
"ace_explosives"
};
skipWhenMissingDependencies = 1;
author = ECSTRING(common,ACETeam);
authors[] = {};
url = ECSTRING(main,URL);
VERSION_CONFIG;
addonRootClass = QUOTE(ADDON);
};
};
#include "CfgAmmo.hpp"
#include "CfgMagazines.hpp"
#include "CfgVehicles.hpp"