mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
f45dff8a09
Co-authored-by: Jouni Järvinen <rautamiekka@users.noreply.github.com> Co-authored-by: Grim <69561145+LinkIsGrim@users.noreply.github.com>
32 lines
782 B
C++
32 lines
782 B
C++
#include "script_component.hpp"
|
|
|
|
#pragma hemtt flag pe23_ignore_has_include
|
|
#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
|
|
class CfgPatches {
|
|
class ADDON {
|
|
name = COMPONENT_NAME;
|
|
units[] = {};
|
|
weapons[] = {};
|
|
requiredVersion = REQUIRED_VERSION;
|
|
requiredAddons[] = {"ace_common", "ace_medical_engine"};
|
|
author = ECSTRING(common,ACETeam);
|
|
authors[] = {"commy2", "tcvm"};
|
|
url = ECSTRING(main,URL);
|
|
VERSION_CONFIG;
|
|
};
|
|
};
|
|
|
|
#include "CfgEventHandlers.hpp"
|
|
#include "CfgSounds.hpp"
|
|
#include "CfgVehicles.hpp"
|
|
#include "ACE_Medical_Treatment_Actions.hpp"
|
|
#include "RscTitles.hpp"
|
|
|
|
#endif
|