2016-06-30 15:33:29 +00:00
|
|
|
#include "script_component.hpp"
|
|
|
|
|
|
|
|
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"
|
2018-07-18 18:13:25 +00:00
|
|
|
|
2019-09-28 22:09:20 +00:00
|
|
|
/*
|
2018-07-18 18:13:25 +00:00
|
|
|
class ACE_Extensions {
|
2019-09-28 21:03:55 +00:00
|
|
|
class ace_medical {
|
|
|
|
// Not yet used
|
|
|
|
};
|
2018-07-18 18:13:25 +00:00
|
|
|
};
|
2019-09-28 22:09:20 +00:00
|
|
|
*/
|