2016-06-30 15:33:29 +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-06-30 15:33:29 +00:00
|
|
|
class CfgPatches {
|
|
|
|
class ADDON {
|
|
|
|
name = COMPONENT_NAME;
|
|
|
|
units[] = {};
|
|
|
|
weapons[] = {};
|
|
|
|
requiredVersion = REQUIRED_VERSION;
|
2018-07-18 18:19:28 +00:00
|
|
|
requiredAddons[] = {"ace_medical_engine"};
|
2016-06-30 15:33:29 +00:00
|
|
|
author = ECSTRING(common,ACETeam);
|
|
|
|
authors[] = {""};
|
|
|
|
url = ECSTRING(main,URL);
|
|
|
|
VERSION_CONFIG;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2018-08-06 16:08:43 +00:00
|
|
|
#include "ACE_Settings.hpp"
|
2016-09-26 18:25:14 +00:00
|
|
|
#include "ACE_Medical_Injuries.hpp"
|
2016-06-30 15:33:29 +00:00
|
|
|
#include "CfgEventHandlers.hpp"
|
2020-04-08 02:52:20 +00:00
|
|
|
#include "CfgAmmo.hpp"
|
2020-04-20 00:17:13 +00:00
|
|
|
#include "CfgEden.hpp"
|
2023-09-04 01:56:54 +00:00
|
|
|
#endif
|