2015-01-21 11:43:58 +00:00
|
|
|
#include "script_component.hpp"
|
|
|
|
|
|
|
|
class CfgPatches {
|
2015-04-15 00:52:30 +00:00
|
|
|
class ADDON {
|
|
|
|
units[] = {"ACE_moduleAllowConfigExport"};
|
|
|
|
weapons[] = {};
|
|
|
|
requiredVersion = REQUIRED_VERSION;
|
|
|
|
requiredAddons[] = {"ace_common"};
|
|
|
|
author[] = {"Glowbal", "PabstMirror"};
|
|
|
|
authorUrl = "http://github.com/Glowbal";
|
|
|
|
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"
|
|
|
|
#include "gui\define.hpp"
|
|
|
|
#include "gui\settingsMenu.hpp"
|
2015-03-06 19:04:48 +00:00
|
|
|
#include "gui\pauseMenu.hpp"
|
2015-04-05 00:17:43 +00:00
|
|
|
|
2015-04-17 00:11:42 +00:00
|
|
|
#include "CfgVehicles.hpp"
|
|
|
|
|
|
|
|
class ACE_Settings {
|
|
|
|
class GVAR(optionMenuDisplaySize) {
|
|
|
|
value = 0;
|
|
|
|
typeName = "SCALAR";
|
|
|
|
isClientSettable = 1;
|
|
|
|
displayName = "$STR_ACE_optionsMenu_uiScaing";
|
|
|
|
values[] = {"$str_medium", "$str_large", "$str_very_large"};
|
|
|
|
};
|
|
|
|
};
|
2015-05-02 21:25:35 +00:00
|
|
|
|
|
|
|
class ACE_Extensions {
|
|
|
|
extensions[] += {"ace_clipboard"};
|
|
|
|
};
|