ACE3/addons/aircraft/config.cpp

26 lines
700 B
C++
Raw Normal View History

2015-01-13 23:52:37 +00:00
#include "script_component.hpp"
class CfgPatches {
2015-01-14 01:57:15 +00:00
class ADDON {
2016-06-19 07:12:25 +00:00
name = COMPONENT_NAME;
units[] = {};
2015-01-13 23:52:37 +00:00
weapons[] = {};
requiredVersion = REQUIRED_VERSION;
requiredAddons[] = {"ace_common"};
author = ECSTRING(common,ACETeam);
authors[] = {"KoffeinFlummi", "Crusty", "commy2", "jaynus", "Kimi"};
url = ECSTRING(main,URL);
2015-01-13 23:52:37 +00:00
VERSION_CONFIG;
// this prevents any patched class from requiring this addon
addonRootClass = "A3_Characters_F";
2015-01-13 23:52:37 +00:00
};
};
#include "CfgAmmo.hpp"
#include "CfgEventHandlers.hpp"
2015-01-13 23:52:37 +00:00
#include "CfgMagazines.hpp"
#include "CfgVehicles.hpp"
#include "CfgWeapons.hpp"
#include "RscInGameUI.hpp"