2015-06-27 02:11:57 +00:00
|
|
|
#include "script_component.hpp"
|
|
|
|
|
|
|
|
class CfgPatches {
|
|
|
|
class ADDON {
|
2016-06-19 07:12:25 +00:00
|
|
|
name = COMPONENT_NAME;
|
2021-10-15 18:48:33 +00:00
|
|
|
units[] = {QGVAR(module)};
|
2015-06-27 02:11:57 +00:00
|
|
|
weapons[] = {};
|
|
|
|
requiredVersion = REQUIRED_VERSION;
|
|
|
|
requiredAddons[] = {"ace_common"};
|
2016-06-01 21:45:51 +00:00
|
|
|
author = ECSTRING(common,ACETeam);
|
|
|
|
authors[] = {"Jonpas", "DaC"};
|
|
|
|
url = ECSTRING(main,URL);
|
2015-06-27 02:11:57 +00:00
|
|
|
VERSION_CONFIG;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
#include "CfgEventHandlers.hpp"
|
|
|
|
#include "CfgVehicles.hpp"
|
2023-08-25 15:33:42 +00:00
|
|
|
#include "GUI.hpp"
|