2017-02-25 01:21:42 +00:00
|
|
|
#include "script_component.hpp"
|
2023-09-03 16:36:19 +00:00
|
|
|
|
2017-02-25 01:21:42 +00:00
|
|
|
class CfgPatches {
|
|
|
|
class ADDON {
|
|
|
|
name = COMPONENT_NAME;
|
|
|
|
units[] = {};
|
2023-09-03 16:36:19 +00:00
|
|
|
weapons[] = {};
|
2017-02-25 01:21:42 +00:00
|
|
|
requiredVersion = REQUIRED_VERSION;
|
2024-07-20 19:10:16 +00:00
|
|
|
requiredAddons[] = {"ace_common", "rhsgref_main_loadorder"};
|
2023-09-03 16:36:19 +00:00
|
|
|
skipWhenMissingDependencies = 1;
|
2017-02-25 01:21:42 +00:00
|
|
|
author = ECSTRING(common,ACETeam);
|
2018-09-15 16:53:28 +00:00
|
|
|
authors[] = {"PabstMirror", "Ruthberg", "Anton"};
|
2017-02-25 01:21:42 +00:00
|
|
|
url = ECSTRING(main,URL);
|
|
|
|
VERSION_CONFIG;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
#include "CfgAmmo.hpp"
|
2022-03-06 19:33:42 +00:00
|
|
|
#include "CfgEventHandlers.hpp"
|
2018-08-27 22:13:38 +00:00
|
|
|
#include "CfgMagazines.hpp"
|
2017-11-19 18:05:36 +00:00
|
|
|
#include "CfgWeapons.hpp"
|
2018-09-15 16:53:28 +00:00
|
|
|
#include "CfgVehicles.hpp"
|