2015-04-05 06:57:24 +00:00
|
|
|
#include "script_component.hpp"
|
|
|
|
|
|
|
|
class CfgPatches {
|
|
|
|
class ADDON {
|
2016-06-19 07:12:25 +00:00
|
|
|
name = COMPONENT_NAME;
|
2016-02-14 12:51:44 +00:00
|
|
|
units[] = {"ACE_Box_82mm_Mo_HE","ACE_Box_82mm_Mo_Smoke",
|
|
|
|
"ACE_Box_82mm_Mo_Illum","ACE_Box_82mm_Mo_Combo"};
|
2015-12-16 19:22:18 +00:00
|
|
|
weapons[] = {"ACE_RangeTable_82mm","ace_mortar_82mm"};
|
2015-04-05 06:57:24 +00:00
|
|
|
requiredVersion = REQUIRED_VERSION;
|
|
|
|
requiredAddons[] = {"ace_interaction"};
|
2016-05-31 19:14:43 +00:00
|
|
|
author = ECSTRING(common,ACETeam);
|
|
|
|
authors[] = {"PabstMirror","Grey","VKing"};
|
2016-06-01 21:45:51 +00:00
|
|
|
url = ECSTRING(main,URL);
|
2015-04-05 06:57:24 +00:00
|
|
|
VERSION_CONFIG;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2015-06-14 05:52:30 +00:00
|
|
|
#include "ACE_Settings.hpp"
|
2015-04-05 06:57:24 +00:00
|
|
|
#include "CfgEventHandlers.hpp"
|
|
|
|
#include "CfgVehicles.hpp"
|
|
|
|
#include "CfgWeapons.hpp"
|
2015-12-16 19:22:18 +00:00
|
|
|
#include "CfgMagazines.hpp"
|
2015-04-05 20:48:56 +00:00
|
|
|
|
2015-06-14 05:52:30 +00:00
|
|
|
|
|
|
|
//UI Stuff:
|
2015-04-05 20:48:56 +00:00
|
|
|
class RscText;
|
|
|
|
class RscListbox;
|
|
|
|
class RscListNBox;
|
|
|
|
class RscPicture;
|
|
|
|
class RscControlsGroup;
|
|
|
|
class ScrollBar;
|
|
|
|
class RscActiveText;
|
2015-06-14 05:52:30 +00:00
|
|
|
class RscStructuredText;
|
2015-04-05 20:48:56 +00:00
|
|
|
|
2015-04-05 06:57:24 +00:00
|
|
|
#include "RscInGameUI.hpp"
|
2015-04-05 20:48:56 +00:00
|
|
|
#include "RscRangeTable.hpp"
|
2016-05-24 13:13:11 +00:00
|
|
|
|
|
|
|
class ACE_newEvents {
|
|
|
|
initMortar = "ace_initMortar";
|
2016-05-24 14:06:17 +00:00
|
|
|
};
|