mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
42 lines
893 B
C++
42 lines
893 B
C++
#include "script_component.hpp"
|
|
|
|
class CfgPatches {
|
|
class ADDON {
|
|
name = COMPONENT_NAME;
|
|
units[] = {"ACE_moduleAllowConfigExport"};
|
|
weapons[] = {};
|
|
requiredVersion = REQUIRED_VERSION;
|
|
requiredAddons[] = {"ace_common"};
|
|
author = ECSTRING(common,ACETeam);
|
|
authors[] = {"Glowbal", "PabstMirror"};
|
|
url = ECSTRING(main,URL);
|
|
VERSION_CONFIG;
|
|
};
|
|
};
|
|
|
|
class CfgAddons {
|
|
class PreloadAddons {
|
|
class ADDON {
|
|
list[] = {QUOTE(ADDON)};
|
|
};
|
|
};
|
|
};
|
|
|
|
#include "CfgEventHandlers.hpp"
|
|
#include "gui\define.hpp"
|
|
#include "gui\settingsMenu.hpp"
|
|
#include "gui\pauseMenu.hpp"
|
|
|
|
#include "CfgVehicles.hpp"
|
|
#include "ACE_Settings.hpp"
|
|
|
|
class ACE_Extensions {
|
|
extensions[] += {"ace_clipboard"};
|
|
};
|
|
|
|
class CfgCommands {
|
|
allowedHTMLLoadURIs[] += {
|
|
"http://ace3mod.com/version.html"
|
|
};
|
|
};
|