ACE3/addons/fcs/config.cpp

40 lines
881 B
C++
Raw Normal View History

#include "script_component.hpp"
class CfgPatches {
2015-01-14 20:07:41 +00:00
class ADDON {
2016-06-19 07:12:25 +00:00
name = COMPONENT_NAME;
2015-01-14 20:07:41 +00:00
units[] = {};
weapons[] = {};
2015-01-18 07:32:07 +00:00
requiredVersion = REQUIRED_VERSION;
requiredAddons[] = {"ace_interaction"};
author = ECSTRING(common,ACETeam);
authors[] = {"KoffeinFlummi","BadGuy (simon84)","commy2"};
url = ECSTRING(main,URL);
2015-01-18 07:32:07 +00:00
VERSION_CONFIG;
// this prevents any patched class from requiring this addon
addonRootClass = "A3_Characters_F";
2015-01-14 20:07:41 +00:00
};
};
#include "CfgEventHandlers.hpp"
#include "ACE_UI.hpp"
2015-02-03 22:03:43 +00:00
#include "CfgAmmo.hpp"
#include "CfgMagazines.hpp"
#include "CfgVehicles.hpp"
#include "CfgWeapons.hpp"
2015-02-03 22:03:43 +00:00
#include "CfgOptics.hpp"
2015-04-20 16:48:58 +00:00
class ACE_Extensions {
class ace_fcs {
windows = 1;
client = 1;
};
2015-04-20 16:48:58 +00:00
};
class ACE_Tests {
fcs = QPATHTOF(dev\test_debugConfigs.sqf);
};