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_status"};
|
2016-06-30 15:33:29 +00:00
|
|
|
author = ECSTRING(common,ACETeam);
|
|
|
|
authors[] = {""};
|
|
|
|
url = ECSTRING(main,URL);
|
|
|
|
VERSION_CONFIG;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
#include "CfgEventHandlers.hpp"
|
2018-07-18 18:21:27 +00:00
|
|
|
#include "CfgInGameUI.hpp"
|
2017-01-29 19:24:16 +00:00
|
|
|
#include "CfgSounds.hpp"
|
2018-07-18 18:21:27 +00:00
|
|
|
#include "CfgVehicles.hpp"
|
|
|
|
#include "RscTitles.hpp"
|
2020-02-22 20:42:59 +00:00
|
|
|
#include "RscInGameUI.hpp"
|
2023-09-04 01:56:54 +00:00
|
|
|
|
|
|
|
#endif
|