ACE3/addons/common/config.cpp

79 lines
1.8 KiB
C++
Raw Normal View History

#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;
requiredAddons[] = {"ace_main","ace_modules"};
author = CSTRING(ACETeam);
authors[] = {"KoffeinFlummi"};
url = ECSTRING(main,URL);
VERSION_CONFIG;
2015-01-12 21:34:01 +00:00
};
};
#include "CfgEden.hpp"
#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"
#include "CfgSounds.hpp"
2015-04-29 11:01:08 +00:00
#include "CfgUnitInsignia.hpp"
#include "CfgVehicles.hpp"
#include "CfgVoice.hpp"
#include "CfgWeapons.hpp"
#include "CfgWrapperUI.hpp"
2015-03-24 19:28:44 +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};
};
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;
};
class ctrlMapEmpty;
#include "ACE_Settings.hpp"
#include "define.hpp"
#include "ProgressScreen.hpp"
#include "DisableMouseDialog.hpp"
#include "HintConfig.hpp"
#include "RscInfoType.hpp"
#include "CompassControl.hpp"
2018-04-15 18:14:31 +00:00
#include "CfgUIGrids.hpp"
2015-04-17 23:05:30 +00:00
class ACE_Extensions {};
class ACE_Tests {
vehicleTransportInventory = QPATHTOF(dev\test_vehicleInventory.sqf);
mapConfigs = QPATHTOF(dev\test_mapConfigs.sqf);
cfgPatches = QPATHTOF(dev\test_cfgPatches.sqf);
};