2015-01-12 10:02:44 +00:00
|
|
|
#include "script_component.hpp"
|
|
|
|
|
|
|
|
class CfgPatches {
|
2015-01-14 20:07:41 +00:00
|
|
|
class ADDON {
|
|
|
|
units[] = {};
|
|
|
|
weapons[] = {};
|
2015-01-18 07:32:07 +00:00
|
|
|
requiredVersion = REQUIRED_VERSION;
|
2015-04-09 11:23:29 +00:00
|
|
|
requiredAddons[] = {"ace_interaction"};
|
2015-02-14 07:09:52 +00:00
|
|
|
author[] = {"KoffeinFlummi","BadGuy (simon84)","commy2"};
|
2015-01-14 20:07:41 +00:00
|
|
|
authorUrl = "https://github.com/KoffeinFlummi/";
|
2015-01-18 07:32:07 +00:00
|
|
|
VERSION_CONFIG;
|
2015-01-14 20:07:41 +00:00
|
|
|
};
|
2015-01-12 10:02:44 +00:00
|
|
|
};
|
|
|
|
|
2015-01-12 10:33:50 +00:00
|
|
|
#include "CfgEventHandlers.hpp"
|
2015-01-12 10:02:44 +00:00
|
|
|
|
2015-02-03 22:03:43 +00:00
|
|
|
#include "CfgAmmo.hpp"
|
|
|
|
#include "CfgMagazines.hpp"
|
|
|
|
#include "CfgVehicles.hpp"
|
|
|
|
#include "CfgWeapons.hpp"
|
2015-01-12 10:02:44 +00:00
|
|
|
|
2015-02-03 22:03:43 +00:00
|
|
|
#include "CfgOptics.hpp"
|
2015-04-20 16:48:58 +00:00
|
|
|
|
|
|
|
class ACE_Extensions {
|
|
|
|
extensions[] += {"ace_fcs"};
|
|
|
|
};
|