2016-07-30 12:00:42 +00:00
|
|
|
#include "script_component.hpp"
|
|
|
|
|
2023-11-03 17:30:20 +00:00
|
|
|
#pragma hemtt flag pe23_ignore_has_include
|
2023-09-04 01:56:54 +00:00
|
|
|
#if __has_include("\z\ace\addons\nomedical\script_component.hpp")
|
|
|
|
#define PATCH_SKIP "No Medical"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef PATCH_SKIP
|
|
|
|
ACE_PATCH_NOT_LOADED(ADDON,PATCH_SKIP)
|
|
|
|
#else
|
2016-07-30 12:00:42 +00:00
|
|
|
class CfgPatches {
|
|
|
|
class ADDON {
|
|
|
|
name = COMPONENT_NAME;
|
|
|
|
units[] = {};
|
|
|
|
weapons[] = {};
|
|
|
|
requiredVersion = REQUIRED_VERSION;
|
|
|
|
requiredAddons[] = {"ace_common"};
|
|
|
|
author = ECSTRING(common,ACETeam);
|
|
|
|
authors[] = {"Glowbal","KoffeinFlummi","commy2"};
|
|
|
|
url = ECSTRING(main,URL);
|
|
|
|
VERSION_CONFIG;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
#include "CfgActions.hpp"
|
2021-07-23 19:32:36 +00:00
|
|
|
#include "CfgEventHandlers.hpp"
|
2016-10-05 22:54:57 +00:00
|
|
|
#include "CfgExtendedAnimation.hpp"
|
2021-07-23 19:32:36 +00:00
|
|
|
#include "CfgFunctions.hpp"
|
|
|
|
#include "CfgMoves.hpp"
|
2016-07-30 12:00:42 +00:00
|
|
|
#include "CfgVehicles.hpp"
|
|
|
|
#include "CfgWeapons.hpp"
|
2023-09-04 01:56:54 +00:00
|
|
|
|
|
|
|
#endif
|