2015-01-18 18:38:27 +00:00
|
|
|
#include "script_component.hpp"
|
|
|
|
|
|
|
|
class CfgPatches {
|
|
|
|
class ADDON {
|
2016-06-19 07:12:25 +00:00
|
|
|
name = COMPONENT_NAME;
|
2015-01-18 18:38:27 +00:00
|
|
|
units[] = {};
|
|
|
|
weapons[] = {};
|
|
|
|
requiredVersion = REQUIRED_VERSION;
|
|
|
|
requiredAddons[] = {"ace_common"};
|
2016-05-31 19:14:43 +00:00
|
|
|
author = ECSTRING(common,ACETeam);
|
|
|
|
authors[] = {"NouberNou", "esteldunedain"};
|
2016-06-01 21:45:51 +00:00
|
|
|
url = ECSTRING(main,URL);
|
2015-01-18 18:38:27 +00:00
|
|
|
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 {
|
2019-09-28 21:03:55 +00:00
|
|
|
class ace_break_line {
|
|
|
|
windows = 1;
|
|
|
|
client = 1;
|
|
|
|
};
|
|
|
|
class ace_parse_imagepath {
|
|
|
|
windows = 1;
|
|
|
|
client = 1;
|
|
|
|
};
|
2015-02-28 21:56:57 +00:00
|
|
|
};
|