2015-01-18 18:38:27 +00:00
|
|
|
#include "script_component.hpp"
|
|
|
|
|
|
|
|
class CfgPatches {
|
|
|
|
class ADDON {
|
|
|
|
units[] = {};
|
|
|
|
weapons[] = {};
|
|
|
|
requiredVersion = REQUIRED_VERSION;
|
|
|
|
requiredAddons[] = {"ace_common"};
|
2015-03-24 04:18:00 +00:00
|
|
|
author[] = {"NouberNou", "esteldunedain"};
|
2015-01-18 18:38:27 +00:00
|
|
|
authorUrl = "";
|
|
|
|
VERSION_CONFIG;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
#include "CfgEventHandlers.hpp"
|
2015-02-28 20:48:46 +00:00
|
|
|
|
2015-04-20 20:00:13 +00:00
|
|
|
#include "CfgActions.hpp"
|
|
|
|
|
2015-02-28 20:48:46 +00:00
|
|
|
#include "CursorMenus.hpp"
|
2015-02-28 21:56:57 +00:00
|
|
|
|
2015-05-14 18:59:25 +00:00
|
|
|
#include "ACE_Settings.hpp"
|
2015-04-20 16:48:58 +00:00
|
|
|
|
|
|
|
class ACE_Extensions {
|
2015-05-17 09:05:43 +00:00
|
|
|
extensions[] += {"ace_break_line", "ace_parse_imagepath"};
|
2015-02-28 21:56:57 +00:00
|
|
|
};
|
2016-05-24 13:13:11 +00:00
|
|
|
|
|
|
|
class ACE_newEvents {
|
|
|
|
SettingChanged = "ace_settingChanged";
|
|
|
|
playerChanged = "ace_playerChanged";
|
|
|
|
interactMenuOpened = "ace_interactMenuOpened";
|
|
|
|
clearConditionCaches = "ace_clearConditionCaches";
|
|
|
|
interactMenuClosed = "ace_interactMenuClosed";
|
2016-05-24 14:06:17 +00:00
|
|
|
};
|