2015-01-21 11:43:58 +00:00
|
|
|
#include "script_component.hpp"
|
|
|
|
|
|
|
|
class CfgPatches {
|
2015-04-15 00:52:30 +00:00
|
|
|
class ADDON {
|
2016-06-19 07:12:25 +00:00
|
|
|
name = COMPONENT_NAME;
|
2017-11-17 22:41:03 +00:00
|
|
|
units[] = {};
|
2015-04-15 00:52:30 +00:00
|
|
|
weapons[] = {};
|
|
|
|
requiredVersion = REQUIRED_VERSION;
|
|
|
|
requiredAddons[] = {"ace_common"};
|
2016-05-31 19:14:43 +00:00
|
|
|
author = ECSTRING(common,ACETeam);
|
|
|
|
authors[] = {"Glowbal", "PabstMirror"};
|
2016-06-01 21:45:51 +00:00
|
|
|
url = ECSTRING(main,URL);
|
2015-04-15 00:52:30 +00:00
|
|
|
VERSION_CONFIG;
|
|
|
|
};
|
2015-01-12 22:19:55 +00:00
|
|
|
};
|
2015-01-21 11:43:58 +00:00
|
|
|
|
2015-01-12 22:19:55 +00:00
|
|
|
class CfgAddons {
|
2015-04-15 00:52:30 +00:00
|
|
|
class PreloadAddons {
|
|
|
|
class ADDON {
|
|
|
|
list[] = {QUOTE(ADDON)};
|
|
|
|
};
|
2015-01-21 22:27:53 +00:00
|
|
|
};
|
2015-01-12 22:19:55 +00:00
|
|
|
};
|
2015-01-21 23:29:42 +00:00
|
|
|
|
2015-01-21 11:43:58 +00:00
|
|
|
#include "CfgEventHandlers.hpp"
|
2015-04-17 00:11:42 +00:00
|
|
|
#include "CfgVehicles.hpp"
|
2015-05-14 18:59:25 +00:00
|
|
|
#include "ACE_Settings.hpp"
|
2015-05-02 21:25:35 +00:00
|
|
|
|
2017-11-11 19:21:55 +00:00
|
|
|
#include "gui\mainMenu.hpp"
|
|
|
|
#include "gui\pauseMenu.hpp"
|
|
|
|
|
2015-05-02 21:25:35 +00:00
|
|
|
class ACE_Extensions {
|
|
|
|
extensions[] += {"ace_clipboard"};
|
|
|
|
};
|
2015-08-31 22:42:13 +00:00
|
|
|
|
|
|
|
class CfgCommands {
|
2015-08-31 23:03:34 +00:00
|
|
|
allowedHTMLLoadURIs[] += {
|
2017-04-11 10:03:47 +00:00
|
|
|
"https://ace3mod.com/version.html"
|
2015-08-31 22:42:13 +00:00
|
|
|
};
|
|
|
|
};
|