2015-01-11 16:42:31 +00:00
|
|
|
#include "script_component.hpp"
|
|
|
|
|
|
|
|
class CfgPatches {
|
2015-01-12 21:34:01 +00:00
|
|
|
class ADDON {
|
2016-06-19 07:12:25 +00:00
|
|
|
name = COMPONENT_NAME;
|
2018-06-18 20:01:32 +00:00
|
|
|
units[] = {"ACE_Box_Misc", "ACE_bananaItem", "ACE_Flag_Black", "ACE_Flag_White"};
|
2015-03-26 22:14:22 +00:00
|
|
|
weapons[] = {"ACE_ItemCore","ACE_FakePrimaryWeapon", "ACE_Banana"};
|
2015-01-12 21:34:01 +00:00
|
|
|
requiredVersion = REQUIRED_VERSION;
|
2015-05-30 04:37:41 +00:00
|
|
|
requiredAddons[] = {"ace_main","ace_modules"};
|
2016-05-31 19:14:43 +00:00
|
|
|
author = CSTRING(ACETeam);
|
|
|
|
authors[] = {"KoffeinFlummi"};
|
2016-06-01 21:45:51 +00:00
|
|
|
url = ECSTRING(main,URL);
|
2019-09-06 19:57:54 +00:00
|
|
|
VERSION_CONFIG;
|
2015-01-12 21:34:01 +00:00
|
|
|
};
|
2015-01-11 16:42:31 +00:00
|
|
|
};
|
|
|
|
|
2021-06-27 20:39:17 +00:00
|
|
|
#include "CfgEden.hpp"
|
2015-01-11 16:42:31 +00:00
|
|
|
#include "CfgEventHandlers.hpp"
|
2016-01-05 03:48:26 +00:00
|
|
|
#include "CfgLocationTypes.hpp"
|
2015-01-12 21:34:01 +00:00
|
|
|
#include "CfgMagazines.hpp"
|
2015-03-24 19:28:44 +00:00
|
|
|
#include "CfgMoves.hpp"
|
2021-06-27 20:39:17 +00:00
|
|
|
#include "CfgSounds.hpp"
|
2015-04-29 11:01:08 +00:00
|
|
|
#include "CfgUnitInsignia.hpp"
|
2021-06-27 20:39:17 +00:00
|
|
|
#include "CfgVehicles.hpp"
|
|
|
|
#include "CfgVoice.hpp"
|
|
|
|
#include "CfgWeapons.hpp"
|
|
|
|
#include "CfgWrapperUI.hpp"
|
2015-03-24 19:28:44 +00:00
|
|
|
|
2015-01-12 04:02:33 +00:00
|
|
|
class ACE_Rsc_Display_Base {
|
2015-01-12 21:34:01 +00:00
|
|
|
idd = -1;
|
|
|
|
type = 0;
|
|
|
|
style = 48;
|
|
|
|
name = "";
|
|
|
|
duration = 999999;
|
|
|
|
fadeIn = 0;
|
|
|
|
fadeOut = 0;
|
|
|
|
font = "TahomaB";
|
|
|
|
size = 1;
|
|
|
|
colorBackground[] = {1, 1, 1, 0};
|
|
|
|
colorText[] = {1, 1, 1, 1};
|
2015-01-11 16:42:31 +00:00
|
|
|
};
|
|
|
|
|
2015-01-12 04:02:33 +00:00
|
|
|
class ACE_Rsc_Control_Base {
|
2015-01-12 21:34:01 +00:00
|
|
|
idc = 1;
|
|
|
|
type = 0;
|
|
|
|
style = 48;
|
|
|
|
lineSpacing = 0;
|
|
|
|
moving = 1;
|
|
|
|
text = "";
|
|
|
|
size = 1;
|
|
|
|
sizeEx = 0;
|
|
|
|
font = "TahomaB";
|
|
|
|
colorBackground[] = {1, 1, 1, 0};
|
|
|
|
colorText[] = {1, 1, 1, 1};
|
|
|
|
x = 0;
|
|
|
|
y = 0;
|
|
|
|
w = 0;
|
|
|
|
h = 0;
|
2015-01-11 16:42:31 +00:00
|
|
|
};
|
|
|
|
|
2015-05-15 23:06:29 +00:00
|
|
|
#include "ACE_Settings.hpp"
|
2015-02-14 19:06:55 +00:00
|
|
|
#include "define.hpp"
|
2021-04-20 10:39:05 +00:00
|
|
|
#include "ProgressScreen.hpp"
|
2021-06-27 20:39:17 +00:00
|
|
|
#include "DisableMouseDialog.hpp"
|
2021-04-20 10:39:05 +00:00
|
|
|
#include "HintConfig.hpp"
|
|
|
|
#include "RscInfoType.hpp"
|
2017-12-07 21:51:57 +00:00
|
|
|
#include "CompassControl.hpp"
|
2018-04-15 18:14:31 +00:00
|
|
|
#include "CfgUIGrids.hpp"
|
2015-04-17 23:05:30 +00:00
|
|
|
|
2019-09-28 21:03:55 +00:00
|
|
|
class ACE_Extensions {};
|
2017-08-22 21:21:41 +00:00
|
|
|
|
|
|
|
class ACE_Tests {
|
|
|
|
vehicleTransportInventory = QPATHTOF(dev\test_vehicleInventory.sqf);
|
|
|
|
mapConfigs = QPATHTOF(dev\test_mapConfigs.sqf);
|
|
|
|
};
|